annotate md_slicer.xml @ 11:d7ec25187599 draft default tip

"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
author chemteam
date Tue, 30 Nov 2021 15:30:25 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
1 <tool id="md_slicer" name="Slice MD trajectories" version="@TOOL_VERSION@+galaxy@GALAXY_VERSION@">
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
2 <description>using the MDTraj package</description>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
3 <macros>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
4 <token name="@TOOL_VERSION@">1.9.7</token>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
5 <token name="@GALAXY_VERSION@">0</token>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
6 </macros>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
7 <requirements>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
8 <requirement type="package" version="@TOOL_VERSION@">mdtraj</requirement>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
9 </requirements>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
10 <command detect_errors="exit_code"><![CDATA[
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
11 ln -s '$traj' traj.${traj.ext} &&
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
12 mdconvert traj.${traj.ext} -o output.${traj.ext} -i $start:$end:$stride &&
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
13 mv output.${traj.ext} '$output'
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
14 ]]></command>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
15 <inputs>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
16 <param argument="traj" type="data" format='xtc,dcd' label="Input trajectory file for slicing"/>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
17 <param argument="start" type="integer" value="0" label="Start frame for slicing"/>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
18 <param argument="end" type="integer" value="10000" label="End frame for slicing"/>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
19 <param argument="stride" type="integer" value="1" label="Stride" help="i.e. load every nth frame from the input file"/>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
20 </inputs>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
21 <outputs>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
22 <data name="output" format_source="traj"/>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
23 </outputs>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
24 <tests>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
25 <test>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
26 <param name="traj" value="traj.xtc" />
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
27 <param name="start" value="0" />
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
28 <param name="end" value="8" />
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
29 <param name="stride" value="2" />
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
30 <output name="output" file="traj_slice.xtc" />
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
31 </test>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
32 <test>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
33 <param name="traj" value="traj.dcd" />
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
34 <param name="start" value="1" />
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
35 <param name="end" value="6" />
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
36 <param name="stride" value="1" />
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
37 <output name="output" file="traj_slice.dcd" compare="sim_size"/>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
38 </test>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
39 </tests>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
40 <help><![CDATA[
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
41 **What it does**
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
42
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
43 This tool extracts a segment from a molecular dynamcics trajectory (i.e. performs a slice).
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
44
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
45 _____
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
46
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
47
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
48 .. class:: infomark
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
49
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
50 **Input**
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
51
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
52 - Trajectory file (xtc, dcd)
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
53
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
54 In addition, a start frame and end frame have to be specified for the output trajectory,
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
55 as well as a value for the 'stride' (to save only every nth frame in the output file).
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
56 _____
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
57
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
58
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
59 .. class:: infomark
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
60
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
61 **Output**
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
62
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
63 - Trajectory file (xtc, dcd) extracted from the input file.
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
64 ]]></help>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
65 <citations>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
66 <citation type="doi">10.1016/j.bpj.2015.08.015</citation>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
67 </citations>
d7ec25187599 "planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer commit e21dacffada5e1405279ac09e41119508f48f63d"
chemteam
parents:
diff changeset
68 </tool>