Mercurial > repos > chemteam > bio3d_rmsd
changeset 5:77e28e1da9f4 draft default tip
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/bio3d commit 3b99f08f22b9e0c16c0a0adc82f8c16c1a25cedf"
author | chemteam |
---|---|
date | Mon, 07 Oct 2019 12:44:25 -0400 |
parents | f871c9a8cb7c |
children | |
files | macros.xml rmsd.xml |
diffstat | 2 files changed, 21 insertions(+), 21 deletions(-) [+] |
line wrap: on
line diff
--- a/macros.xml Wed Apr 03 15:45:06 2019 -0400 +++ b/macros.xml Mon Oct 07 12:44:25 2019 -0400 @@ -1,14 +1,14 @@ <macros> - <token name="@VERSION@">2.3</token> + <token name="@VERSION@">2.3.4</token> <xml name="requirements"> <requirements> - <requirement type="package" version="2.3_3">r-bio3d</requirement> + <requirement type="package" version="2.3_4">r-bio3d</requirement> <yield/> </requirements> </xml> <xml name="analysis_inputs"> - <param format="dcd" name="dcdin" type="data" label="dcd trajectory input"/> - <param format="pdb" name="pdbin" type="data" label="pdb input"/> + <param format="dcd" name="dcdin" type="data" label="DCD trajectory input"/> + <param format="pdb" name="pdbin" type="data" label="PDB input"/> <yield/> </xml> <xml name="tests_inputs">
--- a/rmsd.xml Wed Apr 03 15:45:06 2019 -0400 +++ b/rmsd.xml Mon Oct 07 12:44:25 2019 -0400 @@ -1,5 +1,5 @@ <tool id="bio3d_rmsd" name="RMSD Analysis" version="@VERSION@"> - <description>RMSD using Bio3D</description> + <description> using Bio3D</description> <macros> <import>macros.xml</import> </macros> @@ -75,20 +75,20 @@ <expand macro="analysis_inputs"/> <conditional name="rmsd"> <param name="sele" type="select" label="Select domains"> - <option value="calpha">Calpha</option> - <option value="cbeta">Cbeta</option> + <option value="calpha">C-alpha</option> + <option value="cbeta">C-beta</option> <option value="backbone">Backbone</option> <option value="sidechain">Sidechain</option> <option value="protein">Protein</option> <option value="ligand">Ligand</option> - <option value="nucleic">Nucleic Acids</option> + <option value="nucleic">Nucleic acids</option> <option value="loop">Loop</option> <option value="water">Water</option> <option value="hyd">Hydrogens</option> - <option value="noh">Non Hydrogens</option> - <option value="elety">Atom Names</option> - <option value="resid">Resid</option> - <option value="segid">Segid</option> + <option value="noh">Non-hydrogens</option> + <option value="elety">Atom names</option> + <option value="resid">Residue ID</option> + <option value="segid">Segment ID</option> </param> <when value="calpha"> </when> @@ -105,8 +105,8 @@ <when value="nucleic"> </when> <when value="loop"> - <param name="res1" type="text" label="Resid of the loop starting residue"/> - <param name="res2" type="text" label="Resid of the loop ending residue"/> + <param name="res1" type="text" label="ID of the residue at the start of the loop"/> + <param name="res2" type="text" label="ID of the residue at the end of the loop"/> </when> <when value="water"> </when> @@ -115,20 +115,20 @@ <when value="noh"> </when> <when value="elety"> - <param name="elety" type="text" value="CA" label="Atom Name"/> + <param name="elety" type="text" value="CA" label="Atom name"/> </when> <when value="resid"> - <param name="resid" type="text" value="BGLC" label="Resid"/> + <param name="resid" type="text" value="BGLC" label="Residue ID"/> </when> <when value="segid"> - <param name="segid" type="text" value="SUBS" label="Segid"/> + <param name="segid" type="text" value="SUBS" label="Segment ID"/> </when> </conditional> </inputs> <outputs> <data format="tabular" name="output" label="RMSD raw data"/> <data format="png" name="rmsd_plot" label="RMSD plot"/> - <data format="png" name="rmsd_hist_plot" label="RMSD Histogram Plot"/> + <data format="png" name="rmsd_hist_plot" label="RMSD histogram plot"/> </outputs> <tests> <test> @@ -144,7 +144,7 @@ **What it does** The Root Mean Square Deviation (RMSD) is a standard measure of structural distance between coordinates. -This tool can calculate and plot the RMSD of the selected section. +This tool can calculate and plot the RMSD of the selected section of the protein (or other molecule). _____ @@ -163,8 +163,8 @@ **Output** - - Image (as PNG) of the rmsd plot. - - Image (as PNG) of the rmsd histogram plot. + - Image (as PNG) of the RMSD plot. + - Image (as PNG) of the RMSD histogram plot. - Tab-separated file of raw data. ]]></help>