Mercurial > repos > recetox > retip_apply
diff retip_apply.xml @ 0:190407e59fa4 draft
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
| author | recetox |
|---|---|
| date | Wed, 30 Sep 2020 09:56:37 +0000 |
| parents | |
| children | ca29467e03ea |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/retip_apply.xml Wed Sep 30 09:56:37 2020 +0000 @@ -0,0 +1,37 @@ +<tool id="retip_apply" name="Retip prediction" version="@TOOL_VERSION@+galaxy0"> + <description>is retention time predictor for Metabolomics</description> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="requirements"/> + <command detect_errors="exit_code"><![CDATA[ + /run.sh spell.R '$descr_train' '$model_hdf5' '$input_smiles' 'output.tsv' + ]]> + </command> + <inputs> + <param name="descr_train" label="Select Descriptors.Feather Dataset" type="data" format="h5" + optional="false"/> + <param name="model_hdf5" label="Select Model.hdf5 Dataset" type="data" format="h5" optional="false"/> + <param name="input_smiles" label="Select Input Dataset" type="data" format="tabular" optional="false"/> + </inputs> + <outputs> + <data format="tabular" name="output1" label="Predicted RT" from_work_dir="output.tsv"/> + </outputs> + <tests> + <test expect_num_outputs="1"> + <param name="descr_train" value="descriptors.feather"/> + <param name="model_hdf5" value="model.hdf5"/> + <param name="input_smiles" value="input.tsv"/> + <output name="output1" file="output.tsv" ftype="tabular"/> + </test> + </tests> + <help><![CDATA[ +.. class:: infomark + +This tool is used for **Retention Time Prediction** on a whole database. + +@HELP@ + ]]> + </help> + <expand macro="citations"/> +</tool>
