comparison galaxy_stubs/TrajectoryFile2PDBSplitter.xml @ 2:605370bc1def draft default tip

Uploaded
author luis
date Tue, 12 Jul 2016 12:33:33 -0400
parents
children
comparison
equal deleted inserted replaced
1:31013b5cd066 2:605370bc1def
1 <?xml version='1.0' encoding='UTF-8'?>
2 <!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTD2Galaxy.-->
3 <!--Proposed Tool Section: [Convert, combine and store]-->
4 <tool id="TrajectoryFile2PDBSplitter" name="TrajectoryFile2PDBSplitter" version="1.1.0">
5 <description>splits SnapShots into PDB files </description>
6 <macros>
7 <token name="@EXECUTABLE@">TrajectoryFile2PDBSplitter</token>
8 <import>macros.xml</import>
9 </macros>
10 <expand macro="stdio"/>
11 <expand macro="requirements"/>
12 <command>TrajectoryFile2PDBSplitter
13
14 #if $param_i_traj:
15 -i_traj $param_i_traj
16 #end if
17 #if $param_i_pdb:
18 -i_pdb $param_i_pdb
19 #end if
20 #if $param_o:
21 -o $param_o
22 #end if
23 #if $adv_opts.adv_opts_selector=='advanced':
24 #if $adv_opts.param_o_id:
25 -o_id "$adv_opts.param_o_id"
26 #end if
27 #if $adv_opts.param_o_dir:
28 -o_dir "$adv_opts.param_o_dir"
29 #end if
30 #end if
31 </command>
32 <inputs>
33 <param name="param_i_traj" type="data" format="dcd" optional="False" value="&lt;class 'CTDopts.CTDopts._Null'&gt;" label="input trajectory file" help="(-i_traj) "/>
34 <param name="param_i_pdb" type="data" format="pdb" optional="False" value="&lt;class 'CTDopts.CTDopts._Null'&gt;" label="input pdb-file" help="(-i_pdb) "/>
35 <expand macro="advanced_options">
36 <param name="param_o_id" type="text" size="30" value="$o.id" label="output id" help="(-o_id) ">
37 <sanitizer>
38 <valid initial="string.printable">
39 <remove value="'"/>
40 <remove value="&quot;"/>
41 </valid>
42 </sanitizer>
43 </param>
44 <param name="param_o_dir" type="text" size="30" value="$__new_file_path__" label="output directory for 2nd to last pdb file" help="(-o_dir) ">
45 <sanitizer>
46 <valid initial="string.printable">
47 <remove value="'"/>
48 <remove value="&quot;"/>
49 </valid>
50 </sanitizer>
51 </param>
52 </expand>
53 </inputs>
54 <outputs>
55 <data name="param_o" format="pdb"/>
56 </outputs>
57 <help>This tool splits SnapShots of a given TrajectoryFile and the reference PDBFile into separate PDBFiles.
58
59 Parameters are the input SnapShots as TrajectoryFile (-i_traj), the corresponding reference pdb file that was originally used to create the TrajectoryFile (-i_pdb) and a naming schema for the results (-o).
60
61 Output of this tool is a number of PDBFiles each containing one SnapShot.
62
63 </help>
64 </tool>