diff hbonds.xml @ 1:5c38e38dbc35 draft

"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit 3b99f08f22b9e0c16c0a0adc82f8c16c1a25cedf"
author chemteam
date Mon, 07 Oct 2019 12:51:36 -0400
parents 469ad3ea5a5f
children 4c36f5ad2799
line wrap: on
line diff
--- a/hbonds.xml	Wed Apr 03 15:48:18 2019 -0400
+++ b/hbonds.xml	Mon Oct 07 12:51:36 2019 -0400
@@ -1,16 +1,18 @@
 <tool id="mdanalysis_hbonds" name="Hydrogen Bond Analysis" version="@VERSION@">
-    <description>Analyze hbonds between two segments</description>
+    <description>- analyze H-bonds between two segments</description>
     <macros>
         <import>macros.xml</import>
     </macros>   
     <expand macro="requirements">
-        <requirement type="package" version="0.24.2">pandas</requirement>
+        <requirement type="package" version="0.25.1">pandas</requirement>
     </expand>
     <command detect_errors="exit_code">
 <![CDATA[
      python '$__tool_directory__/hbonds.py' 
-        --idcd '$dcdin' 
-        --ipdb '$pdbin'
+        --itraj '$trajin' 
+        --istr '$strin'
+        --itrajext '$trajin.ext'
+        --istrext '$strin.ext'
         --isegid1 '$segid1'  
         --isegid2 '$segid2'
         --idistance '$distance'
@@ -23,16 +25,16 @@
 ]]></command>
     <inputs>
         <expand macro="analysis_inputs"/>
-        <param name="segid1"  type="text" value="PRO" label="Segid of selection 1"/>
-        <param name="segid2"  type="text" value="HET" label="Segid of selection 2"/>
+        <param name="segid1"  type="text" value="PRO" label="Segment ID of selection 1"/>
+        <param name="segid2"  type="text" value="HET" label="Segment ID of selection 2"/>
         <param name="distance" type="float" value="3.0" label="Cutoff distance"/>
         <param name="angle"  type="float" value="120.0" label="Cutoff angle"/>
     </inputs>
     <outputs> 
-        <data format="tabular" name="output" label="Hbond Analysis raw data"/>
-        <data format="tabular" name="freq_output" label="Hbond Frequency"/>
-        <data format="tabular" name="number_output" label="Number of Hbonds Per Time Step"/>
-        <data format="tabular" name="time_output" label="Time Steps for Each Observed Hbond"/>
+        <data format="tabular" name="output" label="H-bond analysis raw data"/>
+        <data format="tabular" name="freq_output" label="H-bond frequency"/>
+        <data format="tabular" name="number_output" label="Number of H-bonds per time step"/>
+        <data format="tabular" name="time_output" label="Time steps for each observed H-bond"/>
     </outputs>
     <tests>
         <test>
@@ -51,7 +53,7 @@
 
 **What it does**
         
-This tool calculates hydrogen bonds between two segments of the system.
+This tool calculates hydrogen bonds between two segments of the system. Note that a MDAnalysis 'segment' is a larger organizational unit,  for example one protein or all the solvent molecules or simply the whole system.
 
 _____
 
@@ -62,8 +64,8 @@
 
        - Trajectory file  (DCD).
        - PDB file.
-       - Segids of the two segments.
-       - cutoff distance and angle.
+       - Segment IDs of the two segments.
+       - Cutoff distance and angle.
      
 _____
 
@@ -72,7 +74,7 @@
 
 **Output**
 
-       - .csv files of the Hbond frequency, number of Hbonds Per time step, and time steps for each observed Hbond
+       - Tabular files containing H-bond frequency, number of H-bonds Per time step, and time steps for each observed H-bond.
 
 
     ]]></help>