Mercurial > repos > marcel > caddsuite_linux_x86_64
diff CADDSuite/galaxyconfigs/tools/EvenSplit.xml @ 0:bac3c274238f
Migrated tool version 0.93 from old tool shed archive to new tool shed repository
author | marcel |
---|---|
date | Tue, 07 Jun 2011 16:43:30 -0400 |
parents | |
children | 867bf9f815a0 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/CADDSuite/galaxyconfigs/tools/EvenSplit.xml Tue Jun 07 16:43:30 2011 -0400 @@ -0,0 +1,41 @@ + +<!--This is a configuration file for the integration of a CADDSuite tool into Galaxy (http://usegalaxy.org). This file was automatically generated using GalaxyConfigGenerator, so do not bother to make too many manual modifications.--> +<tool id="evensplit" name="EvenSplit" version="0.93"> + <description>generate splits w/ equal property range</description> + <command interpreter="bash"><![CDATA[../../EvenSplit +#if str( $i ) != '' and str( $i ) != 'None' : + -i "$i" +#end if +#if str( $o1 ) != '' and str( $o1 ) != 'None' : + -o1 "$o1" +#end if +#if str( $o2 ) != '' and str( $o2 ) != 'None' : + -o2 "$o2" +#end if +#if str( $n ) != '' and str( $n ) != 'None' : + -n "$n" +#end if +#if str( $offset ) != '' and str( $offset ) != 'None' : + -offset "$offset" +#end if +#if str( $k ) != '' and str( $k ) != 'None' : + -k "$k" +#end if +#if str( $prop ) != '' and str( $prop ) != 'None' : + -prop "$prop" +#end if + | tail -n 5 +]]></command> + <inputs> + <param name="i" label="input file" optional="false" type="data" format="mol2/sdf/drf"/> + <param name="n" label="number of compounds to use from input file" optional="true" type="text" area="true" size="1x5" value=""/> + <param name="offset" label="extract each (i+offset)%k == 0 for o2" optional="true" type="text" area="true" size="1x5" value="0"/> + <param name="k" label="extract each k'th compound for 2nd output file" optional="true" type="text" area="true" size="1x5" value="2"/> + <param name="prop" label="property name" optional="false" area="true" type="text" size="1x15"/> + </inputs> + <outputs> + <data name="o1" format="mol2/sdf/drf" format_source="i"/> + <data name="o2" format="mol2/sdf/drf" format_source="i"/> + </outputs> + <help>This tool splits a molecule file into two subsets in such a way that each of them convers an equal range of a property. The property with respect to which this is to be done should be specified with '-prop'.</help> +</tool> \ No newline at end of file