comparison MapAlignerPoseClustering.xml @ 1:40ca4302e603 draft

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit 42171f39c42277bcfb50271180dcc9c82d3e8e74
author galaxyp
date Mon, 12 Feb 2018 10:28:56 -0500
parents 70f729e59244
children 304c13ce9577
comparison
equal deleted inserted replaced
0:70f729e59244 1:40ca4302e603
5 <import>macros.xml</import> 5 <import>macros.xml</import>
6 </macros> 6 </macros>
7 <expand macro="stdio"/> 7 <expand macro="stdio"/>
8 <expand macro="requirements"/> 8 <expand macro="requirements"/>
9 <command><![CDATA[ 9 <command><![CDATA[
10
11 mkdir -p ./results_trafoxml ./results_out &&
10 MapAlignerPoseClustering 12 MapAlignerPoseClustering
11 -in $param_in 13
12 -out $out 14 -in
13 -trafo_out $trafo_out 15 #for $infile in $param_in:
16 '$infile'
17 #end for
18
19 -out
20 #for $counter,$infile in enumerate($param_in):
21 ./results_out/${infile.element_identifier}.${infile.extension}
22 #end for
23
24 -trafo_out
25 #for $counter,$infile in enumerate($param_in):
26 ./results_trafoxml/${infile.element_identifier}.trafoxml
27 #end for
14 28
15 -threads "\${GALAXY_SLOTS:-1}" 29 -threads "\${GALAXY_SLOTS:-1}"
16 30
17 #if $param_reference_file: 31 #if $param_reference_file:
18 -reference:file $param_reference_file 32 -reference:file $param_reference_file
95 #else 109 #else
96 $adv_opts.param_algorithm_pairfinder_distance_intensity_log_transform 110 $adv_opts.param_algorithm_pairfinder_distance_intensity_log_transform
97 #end if 111 #end if
98 #end if 112 #end if
99 #end if 113 #end if
114
100 ]]> 115 ]]>
101 </command> 116 </command>
102 <inputs> 117 <inputs>
103 <param name="param_in" type="data" format="mzML,featureXML" label="Input files to align (all must have the same file type)" help="(-in) "/> 118 <param name="param_in" type="data" format="mzML,featureXML" multiple="true" label="Input files to align (all must have the same file type)" help="(-in) "/>
104 <param name="param_reference_file" type="data" format="mzML,featureXML" optional="True" label="File to use as reference (same file format as input files required)" help="(-file) "/> 119 <param name="param_reference_file" type="data" format="mzML,featureXML" optional="True" label="File to use as reference (same file format as input files required)" help="(-file) "/>
105 <param name="param_reference_index" type="integer" min="0" optional="True" value="0" label="Use one of the input files as reference ('1' for the first file, etc.)" help="(-index) &lt;br&gt;If '0', no explicit reference is set - the algorithm will select a reference"/> 120 <param name="param_reference_index" type="integer" min="0" optional="True" value="0" label="Use one of the input files as reference ('1' for the first file, etc.)" help="(-index) &lt;br&gt;If '0', no explicit reference is set - the algorithm will select a reference"/>
106 <param name="param_algorithm_max_num_peaks_considered" type="integer" min="-1" optional="True" value="1000" label="The maximal number of peaks/features to be considered per map" help="(-max_num_peaks_considered) To use all, set to '-1'"/> 121 <param name="param_algorithm_max_num_peaks_considered" type="integer" min="-1" optional="True" value="1000" label="The maximal number of peaks/features to be considered per map" help="(-max_num_peaks_considered) To use all, set to '-1'"/>
107 <param name="param_algorithm_superimposer_mz_pair_max_distance" type="float" min="0.0" optional="True" value="0.5" label="Maximum of m/z deviation of corresponding elements in different maps" help="(-mz_pair_max_distance) This condition applies to the pairs considered in hashing"/> 122 <param name="param_algorithm_superimposer_mz_pair_max_distance" type="float" min="0.0" optional="True" value="0.5" label="Maximum of m/z deviation of corresponding elements in different maps" help="(-mz_pair_max_distance) This condition applies to the pairs considered in hashing"/>
108 <param name="param_algorithm_superimposer_num_used_points" type="integer" min="-1" optional="True" value="2000" label="Maximum number of elements considered in each map (selected by intensity)" help="(-num_used_points) Use this to reduce the running time and to disregard weak signals during alignment. For using all points, set this to -1"/> 123 <param name="param_algorithm_superimposer_num_used_points" type="integer" min="-1" optional="True" value="2000" label="Maximum number of elements considered in each map (selected by intensity)" help="(-num_used_points) Use this to reduce the running time and to disregard weak signals during alignment. For using all points, set this to -1"/>
132 <option value="disabled" selected="true">disabled</option> 147 <option value="disabled" selected="true">disabled</option>
133 </param> 148 </param>
134 </expand> 149 </expand>
135 </inputs> 150 </inputs>
136 <outputs> 151 <outputs>
137 <data name="out" format_source="param_in" metadata_source="param_in" /> 152 <collection name="out" type="list">
138 <data name="trafo_out" format_source="param_in" metadata_source="param_in" /> 153 <discover_datasets pattern="__designation_and_ext__" directory="results_out"/>
154 </collection>
155
156 <collection name="trafo_out" type="list">
157 <discover_datasets pattern="__designation_and_ext__" directory="results_trafoxml"/>
158 </collection>
139 </outputs> 159 </outputs>
140 <help>Corrects retention time distortions between maps using a pose clustering approach. 160 <help>Corrects retention time distortions between maps using a pose clustering approach.
141 161
142 162
143 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_MapAlignerPoseClustering.html</help> 163 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_MapAlignerPoseClustering.html</help>