From 0548e33b5ffa479db8fa5ea52ae27a4401a8c5ba Mon Sep 17 00:00:00 2001 From: erik Date: Wed, 9 Aug 2017 14:16:39 -0400 Subject: add new website files --- CRESSdna.html | 156 ++++++++++++++++++++++++++++++++ CRESSresults.html | 51 +++++++++++ cgi-bin/SVM_linear_aa_clf.pkl | Bin 0 -> 187597 bytes cgi-bin/UniqRepsGemys_6089_StSCALER.pkl | Bin 0 -> 980 bytes cgi-bin/classifier.py | 52 +++++++++++ index.html | 3 +- 6 files changed, 261 insertions(+), 1 deletion(-) create mode 100644 CRESSdna.html create mode 100644 CRESSresults.html create mode 100644 cgi-bin/SVM_linear_aa_clf.pkl create mode 100644 cgi-bin/UniqRepsGemys_6089_StSCALER.pkl create mode 100755 cgi-bin/classifier.py diff --git a/CRESSdna.html b/CRESSdna.html new file mode 100644 index 0000000..f037c56 --- /dev/null +++ b/CRESSdna.html @@ -0,0 +1,156 @@ + + + + + + + + +

Welcome to CRESSdna.org

+ +
+ + + + +
+ +
+

Home

+

Part of the National Science Foundation's Assembling the Tree of Life.

+ Sponsored with a Grant from the National Science Foundation +
+ +
+

Taxonomy

+

Please enter only one word as the name(no space) and only one Rep sequence

+

+
+ +
+ + +
+

+

+
+ + +
+

Contact

+

Questions or comments? Send us an email:

+

email At domain Dot something

+
+ +
+

Results

+

Results from Taxonomy prediction

+
+ + + + + diff --git a/CRESSresults.html b/CRESSresults.html new file mode 100644 index 0000000..47c4227 --- /dev/null +++ b/CRESSresults.html @@ -0,0 +1,51 @@ + + + + + + + + +

Taxonomy Prediction Results

+

Results as Name, predicted Genus, length of sequence:


+

+

This classifier will return the best fit of the submitted sequence to the training data.
+Currently included in the training data:
+

  • Circoviridae
  • + +
  • Nanoviridae
  • + +
  • Genomoviridae
  • + +
  • Geminiviridae
  • + +
  • Smacovirus
  • + + Return to CRESSdna.org +

    + + + + diff --git a/cgi-bin/SVM_linear_aa_clf.pkl b/cgi-bin/SVM_linear_aa_clf.pkl new file mode 100644 index 0000000..1afce0a Binary files /dev/null and b/cgi-bin/SVM_linear_aa_clf.pkl differ diff --git a/cgi-bin/UniqRepsGemys_6089_StSCALER.pkl b/cgi-bin/UniqRepsGemys_6089_StSCALER.pkl new file mode 100644 index 0000000..3a098bd Binary files /dev/null and b/cgi-bin/UniqRepsGemys_6089_StSCALER.pkl differ diff --git a/cgi-bin/classifier.py b/cgi-bin/classifier.py new file mode 100755 index 0000000..fee11b9 --- /dev/null +++ b/cgi-bin/classifier.py @@ -0,0 +1,52 @@ +#!/home/erik/bin/python3.6m + +#import packages to be used +from sklearn.svm import SVC +from sklearn.feature_extraction.text import CountVectorizer +from sklearn.preprocessing import StandardScaler +from sklearn.externals import joblib +import cgi, cgitb + +cgitb.enable() +form=cgi.FieldStorage() +if form.getvalue('fasta'): + alignment = form.getvalue('fasta') + alignment=[alignment] + name=form.getvalue('seqname') + size=len(alignment[0]) +else: + alignment = ["MPSKKSGPQPHKRWVFTLNNPSEEEKNKIRELPISLFDYFVCGEEGLEEGRTAHLQGFANFAKKQTFNKVKWYFGARCHIEKAKGTDQQNKEYCSKEGHILIECGAPRNQGKRSDLSTAYFDYQQSGPPGMVLLNCCPSCRSSLSEDYYFAILEDCWRTINGGTRRPI"] + name='demo' + size=len(alignment[0]) + +html = open("./var/www/html/CRESSresults.html") +page=html.read() + + +AAs=['a','c','d','e','f','g','h','i','k','l','m','n','p','q','r','s','t','v','w','y'] +clf=joblib.load("./cgi-bin/SVM_linear_aa_clf.pkl") +StSc=joblib.load("./cgi-bin/UniqRepsGemys_6089_StSCALER.pkl") +cv=CountVectorizer(analyzer='char',ngram_range=(1,1),vocabulary=AAs) + + +#initialize text data vectorizer + +dataVect=cv.transform(alignment) + +#Scale the data to the training set +X=StSc.transform(dataVect.astype("float64")) + +#make predictions for the original dataset +results=",".join([name,clf.predict(X)[0]]) +results=",".join([results,str(size)]) +#for i in results: + #print(i[0],"\t",i[1]) + +output = page.format(prediction=results) +"""f=open('test.html','w') +f.write(output) +f.close()""" +print (output) + + +quit() \ No newline at end of file diff --git a/index.html b/index.html index 2957612..8658958 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,8 @@ CRESSDNA - +<*> +

    Circular Rep-Encoding Single Stranded DNA Viruses

    Part of the National Science Foundation's Assembling the Tree of Life.

    -- cgit v1.2.3