Mercurial > repos > marcel > caddsuite_linux_x86_64
comparison CADDSuite/galaxyconfigs/tools/MolCombine.xml @ 7:5b29b679ee6d
Uploaded Version 0.95
author | marcel |
---|---|
date | Tue, 12 Jul 2011 10:29:49 -0400 |
parents | |
children | 9ab6da6cd36c |
comparison
equal
deleted
inserted
replaced
6:061cbb4a9b05 | 7:5b29b679ee6d |
---|---|
1 | |
2 <!--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.--> | |
3 <tool id="molcombine" name="MolCombine" version="0.95"> | |
4 <description>combine molecular files</description> | |
5 <command interpreter="bash"><![CDATA[../../MolCombine | |
6 #if str( $i1 ) != '' and str( $i1 ) != 'None' : | |
7 -i1 "$i1" | |
8 #end if | |
9 #if str( $i2 ) != '' and str( $i2 ) != 'None' : | |
10 -i2 "$i2" | |
11 #end if | |
12 #if str( $mode ) != '' and str( $mode ) != 'None' : | |
13 -mode "$mode" | |
14 #end if | |
15 #if str( $o ) != '' and str( $o ) != 'None' : | |
16 -o "$o" | |
17 #end if | |
18 #if str( $ignH ) != '' and str( $ignH ) != 'None' : | |
19 -ignH | |
20 #end if | |
21 #if str( $replace_prop ) != '' and str( $replace_prop ) != 'None' : | |
22 -replace_prop | |
23 #end if | |
24 | tail -n 5 | |
25 ]]></command> | |
26 <inputs> | |
27 <param name="i1" optional="false" label="input molecule file A" type="data" format="mol2/sdf/drf"/> | |
28 <param name="i2" optional="false" label="input molecule file B" type="data" format="mol2/sdf/drf"/> | |
29 <param name="mode" optional="false" label="'intersection', 'union' or 'b_not_a'" type="select"> | |
30 <option value="intersection">intersection</option> | |
31 <option value="union">union</option> | |
32 <option value="b_not_a">b_not_a</option> | |
33 </param> | |
34 <param name="ignH" optional="true" label="ignore hydrogens, i.e. match molecules to any protonation state." type="boolean" truevalue="true" falsevalue="" checked="true"/> | |
35 <param name="replace_prop" optional="true" label="replace properties from file 1 w/ those from file 2" type="boolean" truevalue="true" falsevalue=""/> | |
36 </inputs> | |
37 <outputs> | |
38 <data name="o" format="mol2/sdf/drf" format_source="i1"/> | |
39 </outputs> | |
40 <help>This tool generates the intersection or union of two given chemical files. Property-tags of molecules that appear in both input files are automatically merged. | |
41 | |
42 If you want to match molecules regardless of their protonation state, use option '-ignH'. | |
43 | |
44 Output of this tool is a file containing the union resp. intersection of all molecules of input A and B.</help> | |
45 </tool> |