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

Uploaded
author luis
date Tue, 12 Jul 2016 12:33:33 -0400
parents
children
line wrap: on
line source

<?xml version='1.0' encoding='UTF-8'?>
<!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTD2Galaxy.-->
<!--Proposed Tool Section: [QuEasy (QSAR)]-->
<tool id="MolPredictor" name="MolPredictor" version="1.1.0">
  <description>predict molecule activities with QSAR model</description>
  <macros>
    <token name="@EXECUTABLE@">MolPredictor</token>
    <import>macros.xml</import>
  </macros>
  <expand macro="stdio"/>
  <expand macro="requirements"/>
  <command>MolPredictor

#if $param_i:
  -i $param_i
#end if
#if $param_mod:
  -mod $param_mod
#end if
#if $param_o:
  -o $param_o
#end if
#if $param_csv:
  -csv $param_csv
#end if
#if $param_csv_nr:
  -csv_nr $param_csv_nr
#end if
#if $param_csv_sep:
  -csv_sep $param_csv_sep
#end if
#if $param_sdp:
  -sdp $param_sdp
#end if
#if $param_csv_cl:
  -csv_cl $param_csv_cl
#end if
#if $param_csv_dl:
  -csv_dl $param_csv_dl
#end if
#if $param_rm:
  -rm $param_rm
#end if
</command>
  <inputs>
    <param name="param_i" type="data" format="sdf" optional="False" value="&lt;class 'CTDopts.CTDopts._Null'&gt;" label="input sd-file" help="(-i) "/>
    <param name="param_mod" type="data" format="mod" optional="False" value="&lt;class 'CTDopts.CTDopts._Null'&gt;" label="file containing QSAR model" help="(-mod) "/>
    <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) "/>
    <param name="param_csv_nr" type="integer" value="0" label="no. of response variables in csv-file" help="(-csv_nr) "/>
    <param name="param_csv_sep" type="integer" value="0" label="separator symbol in csv-file" help="(-csv_sep) "/>
    <param name="param_sdp" type="integer" min="0" max="1" optional="True" value="0" label="use sd-properties as additional descriptors" help="(-sdp) "/>
    <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) "/>
    <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) "/>
    <param name="param_rm" type="integer" min="0" max="1" optional="True" value="0" label="remove input sd-file when finished" help="(-rm) "/>
  </inputs>
  <expand macro="advanced_options"/>
  <outputs>
    <data name="param_o" format="sdf"/>
  </outputs>
  <help>This tool predictes the response values of compounds in the given molecule file using the specified QSAR model.

Input of this tool is a molecule file (sdf,mol2,drf) and a model-file as generated by ModelCreator or FeatureSelector.
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.

Output of this tool (as specified by '-o') is a molecule file containing the predicted values as a property tag named 'predicted_activity'.

</help>
</tool>