annotate docking.xml @ 7:7b2f205b3f68 draft

"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
author bgruening
date Wed, 02 Oct 2019 12:49:30 -0400
parents 0ae768a0e5c0
children 7a871df65202
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
1 <tool id="docking" name="VINA Docking" version="0.3.0">
5
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
2 <description>tool to perform protein-ligand docking with Autodock Vina</description>
2
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
3 <requirements>
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
4 <requirement type="package" version="1.1.2">autodock-vina</requirement>
6
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
5 <requirement type="package" version="2.4.1">openbabel</requirement>
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
6 <requirement type="package" version="20190722">parallel</requirement>
2
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
7 </requirements>
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
9 #if $ligands.is_of_type("sdf")
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
10 obabel -isdf '$ligands' -O ligand.pdbqt -m -p $ph_value &&
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
11 #else
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
12 ln -s '$ligands' ligand1.pdbqt &&
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
13 #end if
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
14 mkdir output &&
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
15 ls ligand*.pdbqt | parallel --will-cite -j \${GALAXY_SLOTS:-1} $'OUTNAME={.}_docked && vina
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
16 --receptor \'$receptor\'
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
17 --ligand {}
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
18 --out ./\${OUTNAME}.pdbqt
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
19 --log ./\${OUTNAME}.log
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
20 --cpu 1
5
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
21 #if $config_params.config_params == 'vals':
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
22 --center_x $config_params.center_x
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
23 --center_y $config_params.center_y
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
24 --center_z $config_params.center_z
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
25 --size_x $config_params.size_x
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
26 --size_y $config_params.size_y
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
27 --size_z $config_params.size_z
6
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
28 #if $config_params.exh != "":
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
29 --exhaustiveness $config_params.exh
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
30 #end if
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
31 #if $config_params.seed.seed == 'true':
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
32 --seed $config_params.seed.seed_value
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
33 #end if
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
34 #else if $config_params.config_params == 'file':
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
35 --config $config_params.box
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
36 #if $config_params.exh != "":
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
37 --exhaustiveness $config_params.exh
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
38 #end if
6
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
39 #end if
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
40 && python \'$__tool_directory__/convert_pdbqt_to_sdf.py\' ./\${OUTNAME}.pdbqt output/\${OUTNAME}.sdf'
5
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
41
2
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
42 ]]></command>
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
43 <inputs>
5
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
44 <param type="data" name="receptor" format="pdbqt" label="Receptor" help="Select a receptor (PDBQT format). This can be prepared using the receptor preparation tool." />
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
45 <param type="data" name="ligands" format="sdf,pdbqt" label="Ligands" help="Select ligands (SDF format with multiple ligands or PDBQT format with single ligand)." />
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
46 <param name="ph_value" type="float" value="7.4" min="0" max="14" label="Specify pH value for ligand protonation"
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
47 help="Only used in case the input is a SD file."/>
5
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
48 <conditional name="config_params">
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
49 <param name="config_params" type="select" label="Specify parameters">
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
50 <option value="file">Upload a config file to specify parameters</option>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
51 <option value="vals">Specify values directly</option>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
52 </param>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
53 <when value="vals">
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
54 <param type="float" name="center_x" label="x coordinate" help="x coordinate of the binding site." value="0"/>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
55 <param type="float" name="center_y" label="y coordinate" help="y coordinate of the binding site." value="0"/>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
56 <param type="float" name="center_z" label="z coordinate" help="z coordinate of the binding site." value="0"/>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
57 <param type="float" name="size_x" label="x size" help="Length of the binding site (Å) in the x direction." value="0"/>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
58 <param type="float" name="size_y" label="y size" help="Length of the binding site (Å) in the y direction." value="0"/>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
59 <param type="float" name="size_z" label="z size" help="Length of the binding site (Å) in the z direction." value="0"/>
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
60 <param type="integer" name="exh" label="Exhaustiveness" optional="true"
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
61 help="Exhaustiveness of global search (optional - if not specified a default of 8 is used)"/>
5
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
62 <conditional name="seed">
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
63 <param name="seed" type="boolean" label="Specify random seed for simulation reproducibility?"/>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
64 <when value="true">
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
65 <param type="integer" name="seed_value" label="Random seed" help="Choose a seed value" value="1"/>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
66 </when>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
67 <when value="false"/>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
68 </conditional>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
69 </when>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
70 <when value="file">
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
71 <param type="data" name="box" format="txt" label="Box configuration" help="Text file with the box configurations" />
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
72 <param type="integer" name="exh" label="Exhaustiveness" optional="true"
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
73 help="Exhaustiveness of global search (optional - if not specified a default of 8 is used, if specified will override any value specified in the config file)"/>
5
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
74 </when>
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
75 </conditional>
2
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
76 </inputs>
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
77 <outputs>
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
78 <collection name="sdf_outputs" type="list" label="Docked ligands for ${on_string}" >
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
79 <discover_datasets pattern="__name_and_ext__" directory="output" visible="false" />
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
80 </collection>
2
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
81 </outputs>
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
82 <tests>
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
83
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
84 <test>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
85 <param name="receptor" value="protein.pdbqt"/>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
86 <param name="ligands" value="input_ligands.sdf"/>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
87 <param name="box" value="box.txt"/>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
88 <output_collection name="sdf_outputs" type="list" count="5">
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
89 <element name="ligand1_docked" file="ligand1_docked.sdf" lines_diff="20"/>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
90 <element name="ligand2_docked" file="ligand2_docked.sdf" lines_diff="20"/>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
91 <!-- we check only the first 2 -->
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
92 </output_collection>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
93 </test>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
94
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
95 <test>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
96 <param name="receptor" value="protein.pdbqt"/>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
97 <param name="ligands" value="input_ligand.pdbqt"/>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
98 <param name="box" value="box.txt"/>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
99 <output_collection name="sdf_outputs" type="list" count="1">
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
100 <element name="ligand1_docked" file="ligand1_docked.sdf" lines_diff="20"/>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
101 </output_collection>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
102 </test>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
103
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
104 <!-- TODO - this should be able to use the same output as the previous test but there is inconsistency in
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
105 how the parameters are handled that needs to be resolved so we use a different output file to compare to. -->
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
106 <test>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
107 <param name="receptor" value="protein.pdbqt"/>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
108 <param name="ligands" value="input_ligand.pdbqt"/>
5
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
109 <param name="config_params" value="vals"/>
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
110 <param name="center_x" value="36.454" />
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
111 <param name="center_y" value="-43.608000000000004" />
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
112 <param name="center_z" value="75.176" />
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
113 <param name="size_x" value="18.768" />
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
114 <param name="size_y" value="10.205999999999996" />
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
115 <param name="size_z" value="15.521999999999991" />
5
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
116 <param name="seed" value="true" />
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
117 <param name="seed_value" value="1" />
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
118 <param name="exh" value="10" />
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
119 <output_collection name="sdf_outputs" type="list" count="1">
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
120 <element name="ligand1_docked" file="ligand_params.sdf" lines_diff="20"/>
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
121 </output_collection>
5
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
122 </test>
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
123
2
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
124 </tests>
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
125 <help><![CDATA[
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
126
5
c410ffcabf9d planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ed9b6859de648aa5f7cde483732f5df20aaff90e
bgruening
parents: 4
diff changeset
127 This tool performs protein-ligand docking using the Autodock Vina program.
2
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
128
6
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
129 -----
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
130
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
131 .. class:: infomark
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
132
4
3c8e86318a81 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit e1bdd1a326072b9c6a318863aabcba2d9918f787
bgruening
parents: 3
diff changeset
133 **Inputs**
2
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
134
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
135 The first two inputs required are files describing the receptor (in the pdbqt format) and ligands (in SDF of PDBQT format) respectively.
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
136 These files are produced by the receptor and ligand preparation tools.
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
137 If using PDBQT format for the ligands only a single ligand can be specified. If using SDF you can include multiple ligands
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
138 and those ligands are converted to individual PDBQT format files using openbabel as the first step of tool execution.
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
139 You can specify the pH for protonation by openbabel
2
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
140
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
141 VINA will dock each of the ligands in the SDF file sequentially. If there are a large number of ligands then first split
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
142 them into a collection of smaller files e.g. using the splitter tool. This allows each split chunk of molecules to be docked
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
143 as a separate task. The optimal size of the chunk will depend on the number of ligands and the capacity of the execution
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
144 environment.
2
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
145
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
146 In addition, parameters for docking must be defined. The Cartesian coordinates of the center of the binding site should
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
147 be provided, along with the size of the binding site along each dimension. Effectively, this defines a cuboidal volume in
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
148 which docking is performed. Alternatively, a config file can be uploaded containing this information - such a file can be
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
149 generated from the box parameter calculation file.
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
150
6
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
151
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
152 -----
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
153
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
154 .. class:: infomark
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
155
4
3c8e86318a81 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit e1bdd1a326072b9c6a318863aabcba2d9918f787
bgruening
parents: 3
diff changeset
156 **Outputs**
2
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
157
7
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
158 SDF files are produced as output.
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
159 There is one file for each ligand in the input. Each entry in the file is a docked pose for that ligand.
7b2f205b3f68 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit ef86cfa5f7ab5043de420511211579d03df58645"
bgruening
parents: 6
diff changeset
160 The binding affinity scores are contained within the SDF file.::
6
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
161
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
162 OpenBabel06171915303D
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
163
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
164 23 23 0 0 0 0 0 0 0 0999 V2000
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
165 66.9030 73.3450 36.0040 O 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
166 66.8190 73.2170 37.2120 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
167 66.0490 72.3370 37.8940 O 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
168 66.2290 70.9500 37.5970 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
169 67.2070 70.4140 38.6010 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
170 68.5140 70.1440 38.3980 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
171 69.2150 70.3400 37.0800 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
172 69.3810 69.5970 39.5210 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
173 68.7730 69.8280 40.9100 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
174 69.3750 71.0120 41.6220 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
175 68.7550 72.1570 41.9760 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
176 67.3280 72.4970 41.6430 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
177 69.4770 73.2270 42.7560 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
178 67.5570 74.0540 38.1920 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
179 66.9010 75.0480 38.9340 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
180 67.6300 75.8170 39.8300 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
181 68.9950 75.5990 39.9980 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
182 69.6510 74.6060 39.2850 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
183 68.9300 73.8240 38.3800 C 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
184 67.0450 76.8040 40.5760 O 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
185 67.5560 77.4980 40.9760 H 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
186 69.7010 76.3670 40.8780 O 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
187 69.2520 76.7930 41.5990 H 0 0 0 0 0 0 0 0 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
188 1 2 2 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
189 2 3 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
190 2 14 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
191 4 3 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
192 4 5 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
193 6 5 2 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
194 6 8 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
195 7 6 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
196 8 9 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
197 9 10 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
198 10 11 2 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
199 11 13 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
200 12 11 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
201 14 19 2 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
202 14 15 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
203 15 16 2 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
204 16 17 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
205 16 20 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
206 17 22 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
207 18 17 2 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
208 19 18 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
209 20 21 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
210 22 23 1 0 0 0 0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
211 M END
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
212 > <MODEL>
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
213 1
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
214
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
215 > <REMARK>
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
216 VINA RESULT: 0.0 0.000 0.000
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
217 9 active torsions:
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
218 status: ('A' for Active; 'I' for Inactive)
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
219 1 A between atoms: C_2 and O_3
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
220 2 A between atoms: C_2 and C_14
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
221 3 A between atoms: O_3 and C_4
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
222 4 A between atoms: C_4 and C_5
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
223 5 A between atoms: C_6 and C_8
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
224 6 A between atoms: C_8 and C_9
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
225 7 A between atoms: C_9 and C_10
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
226 8 A between atoms: C_16 and O_17
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
227 9 A between atoms: C_19 and O_20
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
228
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
229 > <TORSDO>
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
230 F 9
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
231
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
232 > <SCORE>
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
233 0.0
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
234
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
235 > <RMSD_LB>
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
236 0.000
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
237
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
238 > <RMSD_UB>
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
239 0.000
0ae768a0e5c0 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit a2f6034a691af458e3df662e36d7f05617982bdc
bgruening
parents: 5
diff changeset
240
2
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
241 ]]></help>
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
242 <citations>
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
243 <citation type="doi">10.1002/jcc.21334</citation>
18dec59e29ae planemo upload for repository https://github.com/leobiscassi/galaxytools/tree/autodock_vina_tools/chemicaltoolbox/autodock_vina commit a349cb4673231f12344e418513a08691925565d9
bgruening
parents:
diff changeset
244 </citations>
3
65ffed035ca8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/autodock_vina commit 5f1e53104d11817b9f1f93c4df17b77c80bd7472
bgruening
parents: 2
diff changeset
245 </tool>