annotate galaxy_stubs/SeparateMolecules.xml @ 2:605370bc1def draft default tip

Uploaded
author luis
date Tue, 12 Jul 2016 12:33:33 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
605370bc1def Uploaded
luis
parents:
diff changeset
1 <?xml version='1.0' encoding='UTF-8'?>
605370bc1def Uploaded
luis
parents:
diff changeset
2 <!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTD2Galaxy.-->
605370bc1def Uploaded
luis
parents:
diff changeset
3 <!--Proposed Tool Section: [Preparation]-->
605370bc1def Uploaded
luis
parents:
diff changeset
4 <tool id="SeperateMolecules" name="SeperateMolecules" version="1.1.0">
605370bc1def Uploaded
luis
parents:
diff changeset
5 <description>Split each multi molecule entry to separate single molecule entries</description>
605370bc1def Uploaded
luis
parents:
diff changeset
6 <macros>
605370bc1def Uploaded
luis
parents:
diff changeset
7 <token name="@EXECUTABLE@">SeperateMolecules</token>
605370bc1def Uploaded
luis
parents:
diff changeset
8 <import>macros.xml</import>
605370bc1def Uploaded
luis
parents:
diff changeset
9 </macros>
605370bc1def Uploaded
luis
parents:
diff changeset
10 <expand macro="stdio"/>
605370bc1def Uploaded
luis
parents:
diff changeset
11 <expand macro="requirements"/>
605370bc1def Uploaded
luis
parents:
diff changeset
12 <command>SeperateMolecules
605370bc1def Uploaded
luis
parents:
diff changeset
13
605370bc1def Uploaded
luis
parents:
diff changeset
14 #if $param_i:
605370bc1def Uploaded
luis
parents:
diff changeset
15 -i $param_i
605370bc1def Uploaded
luis
parents:
diff changeset
16 #end if
605370bc1def Uploaded
luis
parents:
diff changeset
17 #if $param_o:
605370bc1def Uploaded
luis
parents:
diff changeset
18 -o $param_o
605370bc1def Uploaded
luis
parents:
diff changeset
19 #end if
605370bc1def Uploaded
luis
parents:
diff changeset
20 #if $param_min_atoms:
605370bc1def Uploaded
luis
parents:
diff changeset
21 -min_atoms $param_min_atoms
605370bc1def Uploaded
luis
parents:
diff changeset
22 #end if
605370bc1def Uploaded
luis
parents:
diff changeset
23 #if $param_all:
605370bc1def Uploaded
luis
parents:
diff changeset
24 -all $param_all
605370bc1def Uploaded
luis
parents:
diff changeset
25 #end if
605370bc1def Uploaded
luis
parents:
diff changeset
26 </command>
605370bc1def Uploaded
luis
parents:
diff changeset
27 <inputs>
605370bc1def Uploaded
luis
parents:
diff changeset
28 <param name="param_i" type="data" format="sdf,sd,mol2,mol" optional="False" value="&lt;class 'CTDopts.CTDopts._Null'&gt;" label="input file (mol mol2 sd sdf)" help="(-i) "/>
605370bc1def Uploaded
luis
parents:
diff changeset
29 <param name="param_min_atoms" type="integer" value="0" label="only keep molecules having at least a minimal number of atoms" help="(-min_atoms) "/>
605370bc1def Uploaded
luis
parents:
diff changeset
30 <param name="param_all" type="integer" min="0" max="1" optional="True" value="0" label="keep all contained molecules, but each in separated entries" help="(-all) "/>
605370bc1def Uploaded
luis
parents:
diff changeset
31 </inputs>
605370bc1def Uploaded
luis
parents:
diff changeset
32 <expand macro="advanced_options"/>
605370bc1def Uploaded
luis
parents:
diff changeset
33 <outputs>
605370bc1def Uploaded
luis
parents:
diff changeset
34 <data name="param_o" metadata_source="param_i" format="input"/>
605370bc1def Uploaded
luis
parents:
diff changeset
35 </outputs>
605370bc1def Uploaded
luis
parents:
diff changeset
36 <help>This tool splits each molecule entry contained in a structure file (mol, sdf, mol2) into possibly multiple molecule entries, so that the new entries contain only a single connected molecule. The results will always be written to a single structure file in the same format as the input format, or a sdf-file in the case of a mol input file. The tool works with the given bond information, which needs to be correct.
605370bc1def Uploaded
luis
parents:
diff changeset
37
605370bc1def Uploaded
luis
parents:
diff changeset
38 Standard behaviour: only the largest molecule from each entry is retained ('largest' according to the number of atoms).
605370bc1def Uploaded
luis
parents:
diff changeset
39
605370bc1def Uploaded
luis
parents:
diff changeset
40 Optional parameters:
605370bc1def Uploaded
luis
parents:
diff changeset
41 Retain all molecules contained in a molecule entry ('-all'). Alternatively the minimal number of atoms required for a molecule to be kept can be specified ('-min_atoms').
605370bc1def Uploaded
luis
parents:
diff changeset
42
605370bc1def Uploaded
luis
parents:
diff changeset
43 </help>
605370bc1def Uploaded
luis
parents:
diff changeset
44 </tool>