Mercurial > repos > recetox > filter_compounds
diff filter_compounds.xml @ 1:686850eb1e64 draft
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/filter_compounds commit 9bc547872c98a9c13c561d15e8990fe82bdc0e72"
| author | recetox |
|---|---|
| date | Fri, 28 Jan 2022 16:21:21 +0000 |
| parents | 987357c6941c |
| children | 8eb6e392c92b |
line wrap: on
line diff
--- a/filter_compounds.xml Thu Jan 07 11:30:13 2021 +0000 +++ b/filter_compounds.xml Fri Jan 28 16:21:21 2022 +0000 @@ -5,48 +5,46 @@ <import>macros.xml</import> <token name="@GALAXY_VERSION@">0</token> </macros> + <expand macro="creator"/> <expand macro="requirements"/> <command detect_errors="aggressive"> -<![CDATA[ - python '$__tool_directory__/filter_compounds.py' - -i '${infile}' - -o '${outfile}' - $metorg - $anorg -]]> + <![CDATA[ + python '$__tool_directory__/filter_compounds.py' + -i '${infile}' + -o '${outfile}' + $metorg + $anorg + ]]> </command> <inputs> - <param name="infile" type="data" format="smi" label="Select input file" help="Currently only SMILES identifiers are allowed as an input."/> - <param name="metorg" type="boolean" checked="false" truevalue="-m" falsevalue="" label="Filter out organometallic compounds?" /> - <param name="anorg" type="boolean" checked="false" truevalue="-a" falsevalue="" label="Filter out anorganic compounds?" /> + <param name="infile" type="data" format="smi" label="Select input file" + help="Currently only SMILES identifiers are allowed as an input."/> + <param name="metorg" type="boolean" checked="false" truevalue="-m" falsevalue="" + label="Filter out organometallic compounds?"/> + <param name="anorg" type="boolean" checked="false" truevalue="-a" falsevalue="" + label="Filter out anorganic compounds?"/> </inputs> <outputs> - <data format="smi" name="outfile"/> + <data format="smi" name="outfile"/> </outputs> <tests> <test> <param name="infile" ftype="smi" value="input_all.smi"/> <param name="metorg" value="true"/> - <param name="anorg" value="true"/> - <output name="outfile" ftype="smi" file="output_all.smi" /> + <param name="anorg" value="true"/> + <output name="outfile" ftype="smi" file="output_all.smi"/> </test> <test> <param name="infile" ftype="smi" value="input_all_table.smi"/> <param name="metorg" value="true"/> <param name="anorg" value="true"/> - <output name="outfile" ftype="smi" file="output_all_table.smi" /> + <output name="outfile" ftype="smi" file="output_all_table.smi"/> </test> </tests> <help> -<![CDATA[ - -.. class:: infomark - -**What this tool does** - -Filters organometallics (compounds containing atoms other than C|N|O|P|F|S|I|B|Si|Se|Cl|Br|Li|Na|H|K) or anorganics (compounds without C). Input can be either list of SMILES identifiers or indexed table of SMILES (two tab-separated columns, first column is index, second columns is SMILES). - -]]> + <![CDATA[ + @HELP@ + ]]> </help> </tool>
