comparison galaxy_stubs/MolPredictor.xml @ 2:605370bc1def draft default tip

Uploaded
author luis
date Tue, 12 Jul 2016 12:33:33 -0400
parents
children
comparison
equal deleted inserted replaced
1:31013b5cd066 2:605370bc1def
1 <?xml version='1.0' encoding='UTF-8'?>
2 <!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTD2Galaxy.-->
3 <!--Proposed Tool Section: [QuEasy (QSAR)]-->
4 <tool id="MolPredictor" name="MolPredictor" version="1.1.0">
5 <description>predict molecule activities with QSAR model</description>
6 <macros>
7 <token name="@EXECUTABLE@">MolPredictor</token>
8 <import>macros.xml</import>
9 </macros>
10 <expand macro="stdio"/>
11 <expand macro="requirements"/>
12 <command>MolPredictor
13
14 #if $param_i:
15 -i $param_i
16 #end if
17 #if $param_mod:
18 -mod $param_mod
19 #end if
20 #if $param_o:
21 -o $param_o
22 #end if
23 #if $param_csv:
24 -csv $param_csv
25 #end if
26 #if $param_csv_nr:
27 -csv_nr $param_csv_nr
28 #end if
29 #if $param_csv_sep:
30 -csv_sep $param_csv_sep
31 #end if
32 #if $param_sdp:
33 -sdp $param_sdp
34 #end if
35 #if $param_csv_cl:
36 -csv_cl $param_csv_cl
37 #end if
38 #if $param_csv_dl:
39 -csv_dl $param_csv_dl
40 #end if
41 #if $param_rm:
42 -rm $param_rm
43 #end if
44 </command>
45 <inputs>
46 <param name="param_i" type="data" format="sdf" optional="False" value="&lt;class 'CTDopts.CTDopts._Null'&gt;" label="input sd-file" help="(-i) "/>
47 <param name="param_mod" type="data" format="mod" optional="False" value="&lt;class 'CTDopts.CTDopts._Null'&gt;" label="file containing QSAR model" help="(-mod) "/>
48 <param name="param_csv" type="data" format="csv" optional="True" value="&lt;class 'CTDopts.CTDopts._Null'&gt;" label="input csv-file w/ additional descriptors" help="(-csv) "/>
49 <param name="param_csv_nr" type="integer" value="0" label="no. of response variables in csv-file" help="(-csv_nr) "/>
50 <param name="param_csv_sep" type="integer" value="0" label="separator symbol in csv-file" help="(-csv_sep) "/>
51 <param name="param_sdp" type="integer" min="0" max="1" optional="True" value="0" label="use sd-properties as additional descriptors" help="(-sdp) "/>
52 <param name="param_csv_cl" type="integer" min="0" max="1" optional="True" value="0" label="csv-file has compound (row) labels" help="(-csv_cl) "/>
53 <param name="param_csv_dl" type="integer" min="0" max="1" optional="True" value="0" label="csv-file has descriptor (column) labels" help="(-csv_dl) "/>
54 <param name="param_rm" type="integer" min="0" max="1" optional="True" value="0" label="remove input sd-file when finished" help="(-rm) "/>
55 </inputs>
56 <expand macro="advanced_options"/>
57 <outputs>
58 <data name="param_o" format="sdf"/>
59 </outputs>
60 <help>This tool predictes the response values of compounds in the given molecule file using the specified QSAR model.
61
62 Input of this tool is a molecule file (sdf,mol2,drf) and a model-file as generated by ModelCreator or FeatureSelector.
63 Features for all molecules in the input file are generated automatically. However, if you used an additional, externally generated feature-set to generate your QSAR model, make sure to generate features in the same manner (i.e. using the same external tool with the same settings) for the molecule file to be used here and specify the csv-file with the above options.
64
65 Output of this tool (as specified by '-o') is a molecule file containing the predicted values as a property tag named 'predicted_activity'.
66
67 </help>
68 </tool>