comparison feature_linker_unlabeled.xml @ 4:1183846e70a1 draft

Uploaded
author galaxyp
date Wed, 19 Jun 2013 13:15:44 -0400
parents cf0d72c7b482
children
comparison
equal deleted inserted replaced
3:8fa16707e162 4:1183846e70a1
1 <tool id="openms_feature_linker_unlabeled" version="0.1.0" name="Feature Linker (Labeled)"> 1 <tool id="openms_feature_linker_unlabeled" version="0.1.0" name="Feature Linker (Unlabeled)">
2 <description> 2 <description>
3 Groups corresponding features from multiple maps. 3 Groups corresponding features from multiple maps.
4 </description> 4 </description>
5 <macros> 5 <macros>
6 <import>macros.xml</import> 6 <import>macros.xml</import>
10 <command interpreter="python"> 10 <command interpreter="python">
11 openms_wrapper.py --executable 'FeatureLinkedUnlabeled' --config $config 11 openms_wrapper.py --executable 'FeatureLinkedUnlabeled' --config $config
12 </command> 12 </command>
13 <configfiles> 13 <configfiles>
14 <configfile name="config">[simple_options] 14 <configfile name="config">[simple_options]
15 in=$input1 15 in=${",".join(map(str, $inputs))}
16 out=$output 16 out=$output
17 #if $type.input_type == "consensusxml"
18 $keep_subelements
19 #end if
20 $ignore_charge
21 $use_identifications
22 algorithm!second_nearest_gap=$second_nearest_gap
23 algorithm!distance_RT!max_difference=$rt_max_difference
24 algorithm!distance_MZ!max_difference=$mz_max_difference
25 algorithm!distance_MZ!unit=$mz_max_difference_unit
26 #if $advanced.specify
27 algorithm!distance_RT!weight=$advanced.rt_weight
28 algorithm!distance_MZ!weight=$advanced.mz_weight
29 algorithm!distance_intensity!weight=$advanced.intensity_weight
30 algorithm!distance_RT!exponent=$advanced.rt_exponent
31 algorithm!distance_MZ!exponent=$advanced.mz_exponent
32 algorithm!distance_intensity!exponent=$advanced.intensity_exponent
33 #end if
17 </configfile> 34 </configfile>
18 </configfiles> 35 </configfiles>
19 <inputs> 36 <inputs>
20 <conditional name="type"> 37 <expand macro="feature_linker_input" />
21 <param name="input_type" type="select" label="Input Type"> 38 <param name="second_nearest_gap" value="2" type="integer" label="Second Nearest Gap" help="The distance to the second nearest neighbors must be larger by this factor than the distance to the matching element itself." />
22 <option value="featurexml">Features (FeatureXML)</option> 39 <expand macro="feature_linker_algorithm_options" />
23 <option value="consensusxml">Consensus (ConsensusXML)</option>
24 </param>
25 <when value="featurexml">
26 <param format="featurexml" name="input1" type="data" label="Input Features" />
27 </when>
28 <when value="consensusxml">
29 <param format="consensusxml" name="input1" type="data" label="Input Consensus" />
30 </when>
31 </conditional>
32 </inputs> 40 </inputs>
33 <outputs> 41 <outputs>
34 <data format="consensusxml" name="output" /> 42 <data format="consensusxml" name="output" />
35 </outputs> 43 </outputs>
36 <help> 44 <help>