Mercurial > repos > recetox > retip_apply
annotate retip_apply.xml @ 6:c550dae786fd draft
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 683f472a44f296d65cf572a5e720839fc4c0141e-dirty"
| author | recetox |
|---|---|
| date | Fri, 05 Mar 2021 15:19:48 +0000 |
| parents | cb939f736490 |
| children | a93b84244cb7 |
| rev | line source |
|---|---|
|
6
c550dae786fd
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 683f472a44f296d65cf572a5e720839fc4c0141e-dirty"
recetox
parents:
3
diff
changeset
|
1 <tool id="retip_apply" name="Retip prediction" version="@TOOL_VERSION@+galaxy3"> |
|
0
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
2 <description>is retention time predictor for Metabolomics</description> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
3 <macros> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
4 <import>macros.xml</import> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
5 </macros> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
6 <expand macro="requirements"/> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
7 <command detect_errors="exit_code"><![CDATA[ |
|
3
cb939f736490
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 880667785eed143b5d777010c79a12a53a00af4f"
recetox
parents:
2
diff
changeset
|
8 #if $input_smiles.is_of_type('tabular') |
|
6
c550dae786fd
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 683f472a44f296d65cf572a5e720839fc4c0141e-dirty"
recetox
parents:
3
diff
changeset
|
9 /run.sh spell_tsv.R --desc '$descr_train' --model '$model_h5' --inp '$input_smiles' --out 'output_file' --bad 'bad_file' |
|
3
cb939f736490
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 880667785eed143b5d777010c79a12a53a00af4f"
recetox
parents:
2
diff
changeset
|
10 #else |
|
6
c550dae786fd
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 683f472a44f296d65cf572a5e720839fc4c0141e-dirty"
recetox
parents:
3
diff
changeset
|
11 /run.sh spell_h5.R --desc '$descr_train' --model '$model_h5' --inp '$input_smiles' --out 'output_file' --bad 'bad_file' |
|
3
cb939f736490
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 880667785eed143b5d777010c79a12a53a00af4f"
recetox
parents:
2
diff
changeset
|
12 #end if |
|
0
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
13 ]]> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
14 </command> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
15 <inputs> |
|
3
cb939f736490
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 880667785eed143b5d777010c79a12a53a00af4f"
recetox
parents:
2
diff
changeset
|
16 <param name="descr_train" label="Select Descriptors.h5 Dataset" type="data" format="h5" optional="false"/> |
|
cb939f736490
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 880667785eed143b5d777010c79a12a53a00af4f"
recetox
parents:
2
diff
changeset
|
17 <param name="model_h5" label="Select Model.h5 Dataset" type="data" format="h5" optional="false"/> |
|
cb939f736490
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 880667785eed143b5d777010c79a12a53a00af4f"
recetox
parents:
2
diff
changeset
|
18 <param format="tabular,h5" name="input_smiles" type="data" label="Select Input Smiles tsv or h5 Dataset" |
|
0
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
19 optional="false"/> |
|
6
c550dae786fd
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 683f472a44f296d65cf572a5e720839fc4c0141e-dirty"
recetox
parents:
3
diff
changeset
|
20 <param name="smiles_col" type="text" label="Name of input column with SMILES" optional="true" value="qsar_smiles"/> |
|
c550dae786fd
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 683f472a44f296d65cf572a5e720839fc4c0141e-dirty"
recetox
parents:
3
diff
changeset
|
21 <param name="name_col" type="text" label="Name of input column with some unique identifier" optional="true" value="recetox_cid"/> |
|
0
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
22 </inputs> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
23 <outputs> |
|
6
c550dae786fd
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 683f472a44f296d65cf572a5e720839fc4c0141e-dirty"
recetox
parents:
3
diff
changeset
|
24 <data format_source="input_smiles" name="output_good" label="Predicted RT" from_work_dir="output_file"/> |
|
c550dae786fd
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 683f472a44f296d65cf572a5e720839fc4c0141e-dirty"
recetox
parents:
3
diff
changeset
|
25 <data format_source="input_smiles" name="output_bad" label="Predicted RT" from_work_dir="bad_file"/> |
|
0
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
26 </outputs> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
27 <tests> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
28 <test expect_num_outputs="1"> |
|
2
679229b50d4d
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 9f9b92c89606c662e540573375241a5b99cefe80"
recetox
parents:
1
diff
changeset
|
29 <param name="descr_train" value="descriptors.h5"/> |
|
3
cb939f736490
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 880667785eed143b5d777010c79a12a53a00af4f"
recetox
parents:
2
diff
changeset
|
30 <param name="model_h5" value="model.h5"/> |
|
0
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
31 <param name="input_smiles" value="input.tsv"/> |
|
6
c550dae786fd
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 683f472a44f296d65cf572a5e720839fc4c0141e-dirty"
recetox
parents:
3
diff
changeset
|
32 <output name="output_good" file="output.tsv" ftype="tabular" compare="sim_size" delta="50"/> |
|
0
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
33 </test> |
|
3
cb939f736490
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 880667785eed143b5d777010c79a12a53a00af4f"
recetox
parents:
2
diff
changeset
|
34 <test expect_num_outputs="1"> |
|
cb939f736490
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 880667785eed143b5d777010c79a12a53a00af4f"
recetox
parents:
2
diff
changeset
|
35 <param name="descr_train" value="descriptors.h5"/> |
|
cb939f736490
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 880667785eed143b5d777010c79a12a53a00af4f"
recetox
parents:
2
diff
changeset
|
36 <param name="model_h5" value="model.h5"/> |
|
cb939f736490
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 880667785eed143b5d777010c79a12a53a00af4f"
recetox
parents:
2
diff
changeset
|
37 <param name="input_smiles" value="input.h5"/> |
|
6
c550dae786fd
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 683f472a44f296d65cf572a5e720839fc4c0141e-dirty"
recetox
parents:
3
diff
changeset
|
38 <output name="output_good" file="output.h5" ftype="h5" compare="sim_size" delta="50"/> |
|
3
cb939f736490
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 880667785eed143b5d777010c79a12a53a00af4f"
recetox
parents:
2
diff
changeset
|
39 </test> |
|
0
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
40 </tests> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
41 <help><![CDATA[ |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
42 .. class:: infomark |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
43 |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
44 This tool is used for **Retention Time Prediction** on a whole database. |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
45 |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
46 @HELP@ |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
47 ]]> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
48 </help> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
49 <expand macro="citations"/> |
|
190407e59fa4
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/retip commit 931ccc430a2b20eebd174d29b45bf3fa18e85f58"
recetox
parents:
diff
changeset
|
50 </tool> |
