Mercurial > repos > chemteam > gmx_rg
annotate gyrate.xml @ 2:28c34e9949ac draft
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 7120a24dbb365d0a06595018a3b6f27dad0961e0"
author | chemteam |
---|---|
date | Mon, 14 Mar 2022 10:38:18 +0000 |
parents | a5afe283962d |
children |
rev | line source |
---|---|
0
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
1 <tool id="gmx_rg" name="GROMACS Radius of Gyration" version="@TOOL_VERSION@+galaxy@GALAXY_VERSION@"> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
2 <description>of a molecular structure</description> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
3 <macros> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
4 <import>macros.xml</import> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
5 <token name="@GALAXY_VERSION@">0</token> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
6 </macros> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
7 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
8 <expand macro="requirements" /> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
9 <command detect_errors="exit_code"><![CDATA[ |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
10 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
11 ln -s '$traj_input' ./traj_input.${traj_input.ext} && |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
12 ln -s '$structure_input' ./structure_input.${structure_input.ext} && |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
13 ln -s '$ndx_input' ./ndx_input.ndx && |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
14 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
15 echo '$index' | gmx gyrate -f './traj_input.${traj_input.ext}' -s './structure_input.${structure_input.ext}' -n './ndx_input.ndx' -o rg.xvg |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
16 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
17 >> verbose.txt 2>&1 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
18 #if $fmt == 'tabular': |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
19 && |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
20 grep '@\|#' rg.xvg && |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
21 grep -v '@\|#' rg.xvg | sed 's/[[:space:]]*//' | sed 's/ /\t/g' > rg.tabular |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
22 #end if |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
23 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
24 ]]></command> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
25 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
26 <inputs> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
27 <param name="traj_input" type="data" format='trr,xtc' label="Trajectory file" help="In XTC or TRR format"/> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
28 <param name="structure_input" type="data" format='tpr' label="Structure file" help="In TPR format"/> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
29 <param name="ndx_input" type="data" format='ndx' label="Index (NDX) file" help="Index file containing the molecules of interest"/> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
30 <param name="index" type="text" label="Index of group" help="Index of group for calculating the radius of gyration - i.e. the group's position in the ndx file (using zero-based numbering, so the first group has index 0)." /> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
31 <expand macro="xvg_or_tab" /> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
32 <expand macro="log" /> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
33 </inputs> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
34 <outputs> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
35 <expand macro="xvg_or_tab_outputs" name="rg" label="Radius of Gyration on ${on_string}" /> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
36 <expand macro="log_outputs" /> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
37 </outputs> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
38 <tests> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
39 <test> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
40 <param name="traj_input" value="npt.xtc" /> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
41 <param name="structure_input" value="npt.tpr" /> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
42 <param name="ndx_input" value="index.ndx" /> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
43 <param name="index" value="1" /> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
44 <param name="fmt" value="xvg" /> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
45 <output name="output1" ftype="xvg"> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
46 <!-- file is big, thus we do not compare the whole file --> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
47 <assert_contents> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
48 <has_text text=" 0 0.605945 0.570801 0.439308 0.464255"/> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
49 <has_text text="0.1 0.603599 0.568297 0.439052 0.461449"/> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
50 <has_text text="0.2 0.608461 0.574886 0.442389 0.46287"/> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
51 <has_text text="0.3 0.605338 0.572752 0.438534 0.46099"/> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
52 </assert_contents> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
53 </output> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
54 </test> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
55 </tests> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
56 <help><![CDATA[ |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
57 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
58 .. class:: infomark |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
59 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
60 **What it does** |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
61 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
62 This tool computes the radius of gyration of a molecular structure, which provides an idea of how compact versus how open or extended the molecule's most commonly adopted conformation is, and how it changes throughout a trajectory. It can often be determined experimentally, so computing this from a simulation and comparing the results can also allow the researcher to verify the accuracy of the chosen force field for that particular system. |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
63 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
64 _____ |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
65 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
66 .. class:: infomark |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
67 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
68 **Input** |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
69 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
70 - TPR file of the simulated system. |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
71 - XTC or TRR trajectory file from a prior simulation. |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
72 - Index file generated using the 'Create GROMACS index files' tool (make_ndx). |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
73 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
74 _____ |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
75 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
76 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
77 .. class:: infomark |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
78 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
79 **Output** |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
80 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
81 - XVG file containing the radius of gyration at every frame of the trajectory. |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
82 ]]></help> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
83 |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
84 <expand macro="citations" /> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
85 </tool> |
a5afe283962d
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs commit 0941b05e72c90bcf5521efa52767390864be5033"
chemteam
parents:
diff
changeset
|
86 |