Mercurial > repos > bgruening > confab
comparison confab.xml @ 27:7198475e0755 draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/confab commit ed9b6859de648aa5f7cde483732f5df20aaff90e
author | bgruening |
---|---|
date | Tue, 07 May 2019 13:19:32 -0400 |
parents | b0a28a5fd431 |
children | 4bd0cbd904d5 |
comparison
equal
deleted
inserted
replaced
26:b0a28a5fd431 | 27:7198475e0755 |
---|---|
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 |