annotate xtb_molecular_optimization.xml @ 0:d5633eaf3552 draft

planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
author recetox
date Thu, 12 Oct 2023 13:45:50 +0000
parents
children cba7123c2741
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
1 <tool id="xtb_molecular_optimization" name="xtb molecular optimization" version="@TOOL_VERSION@+galaxy1" profile="21.09">
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
2 <description>Semiempirical quantum mechanical molecular optimization method</description>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
3 <macros>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
4 <import>macros.xml</import>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
5 </macros>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
6 <expand macro="creator"/>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
7 <requirements>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
8 <requirement type="package" version="@TOOL_VERSION@">xtb</requirement>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
9 </requirements>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
10 <command detect_errors="exit_code"><![CDATA[
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
11 ln -s '${coordinates}' 'mol.${coordinates.ext}' &&
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
12 xtb 'mol.${coordinates.ext}' --opt '${opt_level}' &&
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
13 cp 'xtbopt.${coordinates.ext}' '${output}'
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
14 ]]></command>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
15 <inputs>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
16 <param label="Atomic coordinates file" type="data" name="coordinates" format="xyz" help="Initial atomic coordinates file to be optimized."/>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
17 <param type="select" label="Optimization Levels" name="opt_level" help="Geometry optimization convergence levels." >
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
18 <option value="crude">crude</option>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
19 <option value="sloppy">sloppy</option>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
20 <option value="loose">loose</option>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
21 <option value="lax">lax</option>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
22 <option value="normal">normal</option>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
23 <option value="tight">tight</option>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
24 <option value="vtight">vtight</option>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
25 <option value="extreme">extreme</option>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
26 </param>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
27 </inputs>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
28 <outputs>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
29 <data name="output" format_source="coordinates" />
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
30 </outputs>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
31 <tests>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
32 <test>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
33 <param name="coordinates" value="initial_mol.xyz" ftype="xyz"/>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
34 <output name="output">
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
35 <assert_contents>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
36 <has_text text="xtb"/>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
37 <has_n_lines n="26"/>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
38 </assert_contents>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
39 </output>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
40 </test>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
41 <!-- <test>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
42 <param name="coordinates" value="initial_mol.coord" ftype="coord"/>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
43 <output name="output" file="optimized_mol.coord" ftype="coord">
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
44 <assert_contents>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
45 <has_text text="$coord"/>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
46 <has_n_lines min="26"/>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
47 </assert_contents>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
48 </output>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
49 </test> -->
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
50 </tests>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
51 <help>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
52 <![CDATA[
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
53 @HELP@
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
54 ]]>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
55 </help>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
56 <citations>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
57 <citation type="doi">https://doi.org/10.1002/wcms.1493</citation>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
58 </citations>
d5633eaf3552 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/xtb commit b1cc1aebf796f170d93e3dd46ffcdefdc7b8018a
recetox
parents:
diff changeset
59 </tool>