annotate packmol.xml @ 0:0b8a0ce446f5 draft

planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
author chemteam
date Mon, 08 Oct 2018 05:31:29 -0400
parents
children ddb1ae2cf028
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
1 <tool id="packmol" name="PACKMOL" version="18.169">
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
2 <description>Initial configurations for Molecular Dynamics Simulations by packing optimization</description>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
3 <macros>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
4 <import>macros_packmol.xml</import>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
5 </macros>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
6 <requirements>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
7 <requirement type="package" version="18.169">packmol</requirement>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
8 </requirements>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
9 <command detect_errors="exit_code">
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
10 <![CDATA[
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
11 python '$packmol_script' '$inputs' &&
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
12 packmol < '$parameteroutfile'
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
13 ]]>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
14 </command>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
15 <configfiles>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
16 <inputs name="inputs" />
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
17 <configfile name="packmol_script"><![CDATA[
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
18
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
19 import os
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
20 import sys
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
21 import json
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
22
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
23 from jinja2 import Environment, FileSystemLoader
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
24
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
25 input_json_path = sys.argv[1]
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
26 params = json.load(open(input_json_path, "r"))
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
27
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
28 # get the inputs
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
29 input_iter = []
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
30 #for $i, $s in enumerate( $packmol_format.packmol_inputs )
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
31 pmfile_index = $i
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
32 pmfile_path = "${s.input.file_name}"
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
33 input_iter.append(pmfile_path)
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
34 params["packmol_format"]["packmol_inputs"][pmfile_index]["file"] = pmfile_path
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
35 params["packmol_format"]["packmol_inputs"][pmfile_index]["datasetname"] = "${s.input.name}"
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
36 #end for
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
37
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
38 params["outfile"] = "$outfile"
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
39
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
40 currentpath = "$__tool_directory__" # should work generally
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
41 template_environment = Environment(loader=FileSystemLoader(currentpath),lstrip_blocks=True, trim_blocks=True)
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
42 template = template_environment.get_template('template.j2')
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
43 print(params)
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
44
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
45 with open("$parameteroutfile",'w+') as f:
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
46 f.write(template.render(params))
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
47
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
48 ]]>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
49 </configfile>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
50 </configfiles>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
51 <inputs>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
52 <conditional name="packmol_format">
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
53 <param name="selected_format" type="select" label="Select a file format:">
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
54 <option value="pdb" selected="true">pdb</option>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
55 <!--option value="xyz">xyz</option>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
56 <option value="tinker">tinker</option>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
57 <option value="moldy">moldy</option-->
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
58 </param>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
59 <when value="pdb">
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
60 <expand macro="multiple_input" name="packmol_inputs" format="pdb" label="pdb input with molecule type" help_text="Select a pdb file in .pdb format"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
61 </when>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
62 <!--when value="xyz">
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
63 <expand macro="multiple_input" name="packmol_inputs" format="xyz" label="xyz input with molecule type" help_text="Select a xyz file in .xyz format"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
64 </when>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
65 <when value="tinker">
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
66 <expand macro="multiple_input" name="packmol_inputs" format="tinker" label="tinker input with molecule type" help_text="Select a tinker file in .tinker format"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
67 </when>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
68 <when value="moldy">
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
69 <expand macro="multiple_input" name="packmol_inputs" format="moldy" label="moldy input with molecule type" help_text="Select a moldy file in .moldy format"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
70 </when-->
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
71 </conditional>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
72 <section name="allparams" title="General Parameters" expanded="false">
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
73 <param name="tolerance" type="float" value="2.0" label="distance tolerance" min="0.0" max="100.0"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
74 <param name="nloop" type="integer" value="20" label="maximum number of optimisation loops" min="1" max="10000"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
75 <param name="maxit" type="integer" value="20" label="maximum number of gencan iterations per loop" min="1" max="10000"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
76 <param name="seed" type="integer" value="-1" label="random number generator seed, default of -1 used the computer time to set the seed" />
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
77 </section>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
78 </inputs>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
79 <outputs>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
80 <data format="pdb" name="outfile" label="${tool.name}: structure output">
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
81 <change_format>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
82 <when input="selected_format" value="pdb" format="pdb"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
83 <!-- <when input="selected_format" value="xyz" format="xyz"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
84 <when input="selected_format" value="tinker" format="tinker"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
85 <when input="selected_format" value="moldy" format="moldy"/> -->
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
86 </change_format>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
87 </data>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
88 <data format="txt" name="parameteroutfile" label="${tool.name}: parameter output"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
89 </outputs>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
90 <tests>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
91 <test>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
92 <param name="selected_format" value="pdb"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
93 <param name="packmol_inputs_0|input" value="water.pdb" ftype="pdb"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
94 <param name="allparams.seed" value="101"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
95 <output name="outfile" file="packmol_outfile1.pdb" compare="sim_size" delta="100000">
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
96 <assert_contents>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
97 <has_text text="HETATM 300 O HOH"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
98 </assert_contents>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
99 </output>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
100 <output name="parameteroutfile" file="packmol_parameteroutfile_1.txt" compare="diff" lines_diff="6"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
101 </test>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
102 <test>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
103 <param name="selected_format" value="pdb"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
104 <param name="packmol_inputs_0|input" value="water.pdb" ftype="pdb"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
105 <param name="packmol_inputs_1|input" value="urea.pdb" ftype="pdb"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
106 <param name="packmol_inputs_0|structureparams|number" value="1000"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
107 <param name="packmol_inputs_1|structureparams|number" value="400"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
108 <param name="packmol_inputs_0|structureparams|constraints_repeat_0|constraints|constraint" value="box"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
109 <param name="packmol_inputs_0|structureparams|constraints_repeat_0|constraints|xmax" value="40.0"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
110 <param name="packmol_inputs_0|structureparams|constraints_repeat_0|constraints|ymax" value="40.0"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
111 <param name="packmol_inputs_0|structureparams|constraints_repeat_0|constraints|zmax" value="40.0"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
112 <param name="packmol_inputs_1|structureparams|constraints_repeat_0|constraints|constraint" value="box"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
113 <param name="packmol_inputs_1|structureparams|constraints_repeat_0|constraints|xmax" value="40.0"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
114 <param name="packmol_inputs_1|structureparams|constraints_repeat_0|constraints|ymax" value="40.0"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
115 <param name="packmol_inputs_1|structureparams|constraints_repeat_0|constraints|zmax" value="40.0"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
116 <param name="allparams.seed" value="-1"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
117 <output name="outfile" file="packmol_outfile2.pdb" compare="sim_size" delta="100000">
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
118 <assert_contents>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
119 <has_text text="HETATM 3000 O HOH"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
120 <has_text text="HETATM 6200 H 2 B"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
121 </assert_contents>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
122 </output>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
123 <output name="parameteroutfile" file="packmol_parameteroutfile_2.txt" compare="diff" lines_diff="6"/>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
124 </test>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
125 </tests>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
126 <help><![CDATA[
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
127 .. class:: infomark
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
128
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
129 **What it does**
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
130
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
131 Packmol creates initial MD configurations from input molecules. For example, create a water and urea mixture.
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
132
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
133 .. class:: infomark
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
134
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
135 **How it works**
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
136
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
137 - Select a molecule file type e.g. pdb,xyz
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
138 - Select single molecule from your history (can select multiple)
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
139 - For each molecule:
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
140 - choose how many molecules to create (number variable)
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
141 - optionally choose:
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
142 - molecular radius
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
143 - how to number the molecules (resnumber variable)
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
144 - choose one or more placement constraint(s). Each constraint has different parameters:
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
145 - for example, specify placement inside a cube of size 40 Angstroms placed at the origin
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
146 - all units are in Angstroms for distances and degrees for angles
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
147
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
148 .. class:: infomark
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
149
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
150 **Outputs created**
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
151
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
152 - A pdb file, view this in Galaxy by clicking on visualise and choosing a viewer. The NGLViewer works well for small molecules.
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
153 - A packmol input script (for debugging and repeatability)
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
154
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
155 .. class:: infomark
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
156
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
157 **User guide and documentation**
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
158
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
159 - Packmol `userguide`_
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
160 - Calculating the number of molecules using the `volume guesser`_
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
161
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
162 .. class:: infomark
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
163
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
164 **Known issues**
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
165
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
166 - fixed constraint only allows 1 atom but this is not set for the user. user has to set this. Job may fail.
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
167
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
168 .. _`userguide`: http://m3g.iqm.unicamp.br/packmol/userguide.shtml#more
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
169 .. _`volume guesser`: http://m3g.iqm.unicamp.br/packmol/utilities.shtml
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
170
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
171 ]]>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
172 </help>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
173 <citations>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
174 <citation type="doi">10.1002/jcc.21224</citation>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
175 </citations>
0b8a0ce446f5 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem commit 11519cd4ef5f8ac5864cdc8b3e93ff30115f2e27
chemteam
parents:
diff changeset
176 </tool>