annotate CADDSuite/galaxyconfigs/tools/DockResultMerger.xml @ 5:b7a89b15646f

Uploaded
author marcel
date Tue, 12 Jul 2011 10:23:33 -0400
parents ff6df146c0d5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
1
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
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.-->
5
b7a89b15646f Uploaded
marcel
parents: 3
diff changeset
3 <tool id="dockresultmerger" name="DockResultMerger" version="0.95">
3
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
4 <description>merge docking output files</description>
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
5 <command interpreter="bash"><![CDATA[../../DockResultMerger
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
6 #for $s in $series_i
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
7 #if str( "${s.i.file_name}" ) != '' and str( "${s.i.file_name}" ) != 'None' :
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
8 -i "${s.i.file_name}"
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
9 #end if
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
10 #end for
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
11 #if str( $o ) != '' and str( $o ) != 'None' :
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
12 -o "$o"
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
13 #end if
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
14 #if str( $score ) != '' and str( $score ) != 'None' :
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
15 -score "$score"
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
16 #end if
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
17 #if str( $min ) != '' and str( $min ) != 'None' :
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
18 -min "$min"
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
19 #end if
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
20 #if str( $max ) != '' and str( $max ) != 'None' :
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
21 -max "$max"
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
22 #end if
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
23 #if str( $k ) != '' and str( $k ) != 'None' :
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
24 -k "$k"
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
25 #end if
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
26 #if str( $rm ) != '' and str( $rm ) != 'None' :
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
27 -rm
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
28 #end if
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
29 | tail -n 5
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
30 ]]></command>
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
31 <inputs>
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
32 <repeat name="series_i" title="input files" min="1">
5
b7a89b15646f Uploaded
marcel
parents: 3
diff changeset
33 <param name="i" optional="false" label="input files" type="data" format="mol2/sdf/drf"/>
3
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
34 </repeat>
5
b7a89b15646f Uploaded
marcel
parents: 3
diff changeset
35 <param name="score" optional="true" label="Optional: score property name" area="true" type="text" size="1x15" value="score"/>
b7a89b15646f Uploaded
marcel
parents: 3
diff changeset
36 <param name="min" optional="true" label="Optional: minimal score value" type="text" area="true" size="1x5" value=""/>
b7a89b15646f Uploaded
marcel
parents: 3
diff changeset
37 <param name="max" optional="true" label="Optional: maximal score value" type="text" area="true" size="1x5" value=""/>
b7a89b15646f Uploaded
marcel
parents: 3
diff changeset
38 <param name="k" optional="true" label="Optional: number of output molecules" type="text" area="true" size="1x5" value=""/>
b7a89b15646f Uploaded
marcel
parents: 3
diff changeset
39 <param name="rm" optional="true" label="remove input files after merging" type="boolean" truevalue="true" falsevalue=""/>
3
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
40 </inputs>
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
41 <outputs>
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
42 <data name="o" format="mol2/sdf/drf" format_source="i"/>
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
43 </outputs>
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
44 <help>This tool merges and sorts molecule files as generated by docking or rescoring.
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
45
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
46 You need to specify the property-tag name of the scores according to which the molecules should be sorted. Optionally you can filter those compounds that were assigned a score above and/or below specified thresholds. If desired, you can furthermore choose to have only the compounds with the k best scores written to the output file.
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
47
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
48 Output of DockResultMerger is one molecule containing the molecules found in input-files (that matched all filter criteria, if any), sorted ascendingly according to their scores.</help>
ff6df146c0d5 Uploaded
marcel
parents:
diff changeset
49 </tool>