comparison confab.xml @ 5:119b462f0f69 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/confab commit ed9b6859de648aa5f7cde483732f5df20aaff90e
author bgruening
date Tue, 07 May 2019 13:33:12 -0400
parents 4c4e812a67a2
children 461f64330945
comparison
equal deleted inserted replaced
4:4c4e812a67a2 5:119b462f0f69
11 '${infile}' 11 '${infile}'
12 -O '${outfile}' 12 -O '${outfile}'
13 -i ${infile.ext} 13 -i ${infile.ext}
14 -o sdf 14 -o sdf
15 --confab 15 --confab
16 --verbose
16 --rcutoff $RMSD 17 --rcutoff $RMSD
17 --ecutoff $energy 18 --ecutoff $energy
18 --conf $conformers 19 --conf $conformers
19 $first_conformer 20 $first_conformer
20 21
21 ]]> 22 ]]>
22 </command> 23 </command>
23 <inputs> 24 <inputs>
24 <param name="infile" type="data" format="sdf,mol2" label="Input molecule with 3D coordinates" help="Dataset missing? See TIP below"/> 25 <param name="infile" type="data" format="sdf,mol2" label="Input molecule with 3D coordinates in SDF or MOL2 format" help="Dataset missing? See TIP below"/>
25 <param name='RMSD' type='float' value='0.5' label='RMSD cutoff (in Angstrom)' /> 26 <param name='RMSD' type='float' value='0.5' label='RMSD cutoff (Å)' help='Minimum RMSD deviation from the original conformation in order to be classified as a separate conformer.'/>
26 <param name='energy' type='float' value='50.0' label='Energy cutoff (in kcal/mol)' /> 27 <param name='energy' type='float' value='50.0' label='Energy cutoff (in kcal/mol)' help='Minimum energy difference to the original conformation in order to be classified as a separate conformer.'/>
27 <param name='conformers' type='integer' value='100' label='Max number of conformers to test' /> 28 <param name='conformers' type='integer' value='1000000' label='Max number of conformers to test' />
28 <param name='first_conformer' type='boolean' truevalue='--original' falsevalue='' 29 <param name='first_conformer' type='boolean' truevalue='--original' falsevalue=''
29 label='Include the input conformation as the first conformer' /> 30 label='Include the input conformation as the first conformer' help='If yes, the original conformation is included in the output file'/>
30 </inputs> 31 </inputs>
31 <outputs> 32 <outputs>
32 <data format="sdf" name="outfile" label="${tool.name} on ${on_string}"/> 33 <data format="sdf" name="outfile" label="${tool.name} on ${on_string}"/>
33 </outputs> 34 </outputs>
34 <tests> 35 <tests>
46 47
47 .. class:: infomark 48 .. class:: infomark
48 49
49 **What this tool does** 50 **What this tool does**
50 51
51 Confab_ is a conformation generator. The algorithm starts with an input 3D structure which, after some initialisation steps, is used to generate multiple conformers which are filtered on-the-fly to identify diverse low energy conformers. 52 Confab_ is a conformation generator. The algorithm starts with an input 3D structure which, after some initialization steps, is used to generate multiple conformers, which are filtered on-the-fly to identify diverse low-energy conformers.
52 53
53 .. _Confab: https://code.google.com/p/confab/ 54 .. _Confab: https://open-babel.readthedocs.io/en/latest/3DStructureGen/multipleconformers.html#confab
54 55
55 ----- 56 -----
56 57
57 .. class:: infomark 58 .. class:: infomark
58 59