annotate minim.xml @ 2:ea7b9183bf30 draft

planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 7ba07c3130a2170e8f91acc4a81f5626563a79eb
author chemteam
date Thu, 28 Mar 2019 10:15:48 -0400
parents 911eb71ccd1f
children c1e98d48b8b4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
1 <tool id="gmx_em" name="GROMACS energy minimization" version="@VERSION@">
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
2 <description>of the system prior to equilibration and production MD</description>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
3 <macros>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
4 <import>macros.xml</import>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
5 </macros>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
6
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
7 <expand macro="requirements" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
8
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
9 <command detect_errors="exit_code"><![CDATA[
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
10
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
11 #if $mdp.mdpfile == 'custom':
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
12 ln -s '$mdp.mdp_input' ./minim.mdp &&
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
13 #else:
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
14 ln -s '$minim' ./minim.mdp &&
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
15 #end if
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
16
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
17 ln -s '$gro_input' ./solv_ions.gro &&
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
18 ln -s '$top_input' ./top_input.top &&
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
19
2
ea7b9183bf30 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 7ba07c3130a2170e8f91acc4a81f5626563a79eb
chemteam
parents: 0
diff changeset
20 gmx grompp -f ./minim.mdp -c ./solv_ions.gro -r ./solv_ions.gro -p ./top_input.top -o em.tpr &>> verbose.txt &&
0
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
21 gmx mdrun -deffnm em &>> verbose.txt
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
22
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
23 ]]></command>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
24 <configfiles>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
25 <!-- .mdp files for the gromacs simulation -->
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
26 <configfile name="minim">
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
27 #if $mdp.mdpfile == 'default':
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
28 ; minim.mdp - used as input into grompp to generate em.tpr
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
29 integrator = $mdp.integrator ; Algorithm (steep = steepest descent minimization)
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
30 emtol = $mdp.emtol ; Stop minimization when the maximum force is less than this value
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
31 emstep = $mdp.emstep ; Energy step size
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
32 nsteps = $mdp.md_steps ; Maximum number of (minimization) steps to perform
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
33
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
34 ; Parameters describing how to find the neighbors of each atom and how to calculate the interactions
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
35 nstlist = 1 ; Frequency to update the neighbor list and long range forces
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
36 cutoff-scheme = $mdp.cutoffscheme
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
37 ns_type = grid ; Method to determine neighbor list (simple, grid)
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
38 coulombtype = $mdp.coulombtype ; Treatment of long range electrostatic interactions
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
39 rcoulomb = $mdp.rcoulomb ; Short-range electrostatic cut-off
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
40 rlist = $mdp.rlist ; Cut-off distance for the short-range neighbor list.
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
41 rvdw = $mdp.rvdw ; Short-range Van der Waals cut-off
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
42 pbc = xyz ; Periodic Boundary Conditions (yes/no)
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
43 #end if
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
44 </configfile>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
45 </configfiles>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
46
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
47 <inputs>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
48 <param argument="gro_input" type="data" format='gro' label="GRO structure file."/>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
49 <param argument="top_input" type="data" format='top' label="Topology (TOP) file."/>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
50 <param name="capture_log" type="boolean" value="false" label="Generate Detailed Log" help="Generate detailed log information that can be summarized with ParseLog."/>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
51
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
52 <conditional name="mdp">
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
53 <param name="mdpfile" type="select" label="Parameter input">
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
54 <option value="custom">Upload own MDP file</option>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
55 <option value="default">Use default (partially customisable) setting</option>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
56 </param>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
57 <when value="custom">
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
58 <param argument="mdp_input" type="data" format='mdp' label="MD parameters (MDP) file (optional; default settings if not set)."/>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
59 </when>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
60
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
61 <when value="default">
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
62 <param argument="integrator" type="select" label="Choice of integrator.">
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
63 <option value="steep">Steepest descent algorithm.</option>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
64 <option value="cg">Conjugate gradient algorithm.</option>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
65 <option value="l-bfgs">Quasi-Newtonian algorithm.</option>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
66 </param>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
67 <param argument="cutoffscheme" type="select" label="Neighbor searching.">
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
68 <option value="Verlet">Generate a pair list with buffering.</option>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
69 <option value="group">Generate a pair list for groups of atoms.</option>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
70 </param>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
71 <param argument="coulombtype" type="select" label="Electrostatics.">
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
72 <option value="PME">Fast smooth Particle-Mesh Ewald (SPME) electrostatics.</option>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
73 <option value="P3M-AD">Particle-Particle Particle-Mesh algorithm with analytical derivative.</option>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
74 <option value="Reaction-Field-zero">Reaction field electrostatics.</option>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
75 </param>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
76 <param argument="rcoulomb" value="1.0" type="float" label="Distance for the Coulomb cut-off."/>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
77 <param argument="rlist" value="1.0" type="float" label="Cut-off distance for the short-range neighbor list. Ignored if the Verlet cutoff scheme is set."/>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
78 <param argument="rvdw" value="1.0" type="float" label="Short range van der Waals cutoff."/>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
79 <param argument="md_steps" type="integer" label="Number of steps for the MD simulation" value="0" min="0" max="1000000" help="MD steps" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
80 <param argument="emtol" type="float" label="EM tolerance" value="0" min="0" max="10000" help="The minimization is converged when the maximum force is smaller than this value" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
81 <param argument="emstep" type="float" label="Maximum step size /nm" value="0.01" min="0.0001" max="1.0" help="Initial step size in nm." />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
82 </when>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
83 </conditional>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
84 </inputs>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
85 <outputs>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
86 <data name="output1" format="gro" from_work_dir="em.gro"/>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
87 <data name="report" format="txt" from_work_dir="verbose.txt">
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
88 <filter>capture_log</filter>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
89 </data>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
90 </outputs>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
91 <tests>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
92 <test>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
93 <param name="gro_input" value="solv_ions.gro" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
94 <param name="top_input" value="topol_solv.top" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
95 <param name="mdpfile" value="default" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
96 <param name="integrator" value="steep" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
97 <param name="cutoffscheme" value="Verlet" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
98 <param name="coulombtype" value="PME" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
99 <param name="rcoulomb" value="1.0" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
100 <param name="rlist" value="1.0" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
101 <param name="md_steps" value="50000" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
102 <param name="emtol" value="1000.0" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
103 <param name="emstep" value="0.01" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
104
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
105 <output name="output1" file="em.gro" ftype="gro" compare="sim_size"/>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
106 </test>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
107 <test>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
108 <param name="gro_input" value="solv_ions.gro" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
109 <param name="top_input" value="topol_solv.top" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
110 <param name="mdpfile" value="custom" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
111 <param name="mdp_input" value="minim.mdp" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
112 <output name="output1" file="em.gro" ftype="gro" compare="sim_size"/>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
113 </test>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
114
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
115 </tests>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
116 <help><![CDATA[
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
117
2
ea7b9183bf30 planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 7ba07c3130a2170e8f91acc4a81f5626563a79eb
chemteam
parents: 0
diff changeset
118 Upload GRO and TOP files for energy minimisation. To take advantage of all GROMACS features, upload an MDP file with simulation parameters. Otherwise, choose parameters through the Galaxy interface. See http://manual.gromacs.org/documentation/2018/user-guide/mdp-options.html for more information on the options.
0
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
119
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
120 ]]></help>
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
121
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
122 <expand macro="citations" />
911eb71ccd1f planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 177cab098ac548bfdecba9d9f04614aec5f6c618
chemteam
parents:
diff changeset
123 </tool>