Mercurial > repos > chemteam > gmx_solvate
view solvate.xml @ 4:cdacad684da1 draft
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/gromacs commit 10f45d117e34624bceb32442742ae0b8eb2dae30"
author | chemteam |
---|---|
date | Wed, 30 Oct 2019 13:32:37 -0400 |
parents | 7161b230adad |
children | 645139abefae |
line wrap: on
line source
<tool id="gmx_solvate" name="GROMACS solvation and adding ions" version="@VERSION@"> <description>to structure and topology files</description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements" /> <command detect_errors="exit_code"><![CDATA[ ln -s '$ions' ./ions.mdp && ln -s '$gro_input' ./gro_input.gro && ln -s '$top_input' ./top_input.top && gmx solvate -cp ./gro_input.gro -cs ${water_model}.gro -o solv.gro -p ./top_input.top &>> verbose.txt && gmx grompp -f ./ions.mdp -c solv.gro -p ./top_input.top -o ions.tpr &>> verbose.txt && echo 'SOL' | gmx genion -s ions.tpr -o solv_ions.gro -p ./top_input.top -pname NA -nname CL -neutral &>> verbose.txt ]]></command> <configfiles> <!-- .mdp file for the gromacs simulation --> <configfile name="ions"> : Parameters are not so important here as no simulation is run integrator = steep emtol = 1000.0 emstep = 0.01 nsteps = 1 nstlist = 1 cutoff-scheme = Verlet ns_type = grid coulombtype = cutoff rcoulomb = 1.0 rvdw = 1.0 pbc = xyz </configfile> </configfiles> <inputs> <param argument="gro_input" type="data" format='gro' label="GRO structure file"/> <param argument="top_input" type="data" format='top' label="Topology (TOP) file"/> <param name="water_model" type="select" label="Water model for solvation" help="Note SPC is a generic equilibrated 3-point solvent model and can be used as the solvent configuration for any of SPC, SPC/E, or TIP3P water."> <option value="spc216" selected="true">SPC (generic three-point model)</option> <option value="tip4p">TIP4P (four-point model)</option> <option value="tip5p">TIP5P (five-point model)</option> </param> <param name="capture_log" type="boolean" value="false" label="Generate detailed log" help="Generate detailed log information that can be summarized with ParseLog."/> </inputs> <outputs> <data name="output1" format="gro" from_work_dir="solv_ions.gro"/> <data name="output2" format="top" from_work_dir="./top_input.top"/> <data name="report" format="txt" from_work_dir="verbose.txt"> <filter>capture_log</filter> </data> </outputs> <tests> <test> <param name="gro_input" value="newbox.gro" /> <param name="top_input" value="topol.top" /> <param name="water_model" value="spc216" /> <output name="output1" file="solv_ions.gro" ftype="gro" compare="sim_size"/> <output name="output2" file="topol_solv.top" ftype="top"/> </test> </tests> <help><![CDATA[ .. class:: infomark **What it does** This tool solvates a system prior to a GROMACS simulation. In addition, sodium or chloride ions will be added if necessary to ensure the system is charge-neutral. _____ .. class:: infomark **Input** - GRO structure file. - Topology (TOP) file. In addition, a water model must be selected - this should be consistent with the one selected previously in the system setup. _____ .. class:: infomark **Output** - GRO structure file. ]]></help> <expand macro="citations" /> </tool>