Skip to content

Commit

Permalink
Add natural products
Browse files Browse the repository at this point in the history
  • Loading branch information
rbarreror committed Mar 6, 2021
1 parent b362388 commit a5c3435
Show file tree
Hide file tree
Showing 44 changed files with 7,153,916 additions and 1,821,693 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ webApp/src/TurboPutative/pyModules/pygoslin_library.zip
############################
/tools/Tagger/dbs/scripts/DataBaseGenerator.ipynb
/tools/Tagger/dbs/scripts/getAllSynonyms.ipynb
/tools/REname/.ipynb_checkpoints/
/tools/REname/regex_test.ipynb

# Compilation files #
#####################
Expand Down
Binary file not shown.
Binary file modified desktopApp/app/assets/files/tests/test2/infofeature_POS.xlsx
Binary file not shown.
10 changes: 5 additions & 5 deletions desktopApp/app/sections/execute/tagger.html
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,12 @@ <h3 style="color:white; font-size: 1.5em; font-weight: 300; font-family: Arial;"
<input class="cbTag" type="checkbox" id="drug" name="drug" value="true">
<span class="checkmark"></span>
</label>
<!--

<label class="cbContainer">Natural Product
<input class="cbTag" type="checkbox" id="naturalProduct" name="naturalProduct" value="true">
<span class="checkmark"></span>
</label>
-->

<label class="cbContainer">Microbial Compound
<input class="cbTag" type="checkbox" id="microbialCompound" name="microbialCompound" value="true">
<span class="checkmark"></span>
Expand Down Expand Up @@ -405,8 +405,8 @@ <h3 style="color:white; font-size: 1.5em; font-weight: 300; font-family: Arial;"
iniContent += "###";
iniContent += "Halogenated = " + document.getElementById('halogenated').checked;
iniContent += "###";
// iniContent += "NaturalProduct = " + document.getElementById('naturalProduct').checked;
// iniContent += "###";
iniContent += "NaturalProduct = " + document.getElementById('naturalProduct').checked;
iniContent += "###";
iniContent += "Peptide = " + document.getElementById('peptide').checked;
iniContent += "###";
iniContent += "Plant = " + document.getElementById('plant').checked;
Expand Down Expand Up @@ -441,7 +441,7 @@ <h3 style="color:white; font-size: 1.5em; font-weight: 300; font-family: Arial;"
document.getElementById('halogenated').checked = iniString.match(/\nHalogenated = (true|false)\n/)[1] == "true"? true : false;
document.getElementById('peptide').checked = iniString.match(/\nPeptide = (true|false)\n/)[1] == "true"? true : false;
document.getElementById('plant').checked = iniString.match(/\nPlant = (true|false)\n/)[1] == "true"? true : false;
// document.getElementById('naturalProduct').checked = iniString.match(/\nNaturalProduct = (true|false)\n/)[1] == "true"? true : false;
document.getElementById('naturalProduct').checked = iniString.match(/\nNaturalProduct = (true|false)\n/)[1] == "true"? true : false;
document.getElementById('outputName').value = iniString.match(/\nOutputName = ([-\w\s\.()]*)\n/)[1];
document.getElementById('outputColumns').value = iniString.match(/\nOutputColumns = ([\w\s,()]*)\n/)[1];
document.getElementById('halogenatedRegex').value = iniString.match(/\nHalogenatedRegex = ([^\n]*)\n/)[1];
Expand Down
Loading

0 comments on commit a5c3435

Please sign in to comment.