Mercurial > repos > galaxyp > feature_alignment
annotate feature_alignment.xml @ 9:9ad7babdbedd draft
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
author | galaxyp |
---|---|
date | Sat, 30 May 2015 05:27:37 -0400 |
parents | 4fd8df131c3c |
children | 23ecd1ee4422 |
rev | line source |
---|---|
0 | 1 <tool id="feature_alignment" name="Feature Alignment" version="0.1"> |
2 <description>of peakgroups below a FDR</description> | |
3 | 3 <requirements> |
4 <requirement type="package" version="2.7">python</requirement> | |
5 <requirement type="package" version="0.3.2">msproteomicstools</requirement> | |
6 </requirements> | |
0 | 7 <stdio> |
9
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
8 <!-- Anything other than zero is an error --> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
9 <exit_code range="1:" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
10 <exit_code range=":-1" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
11 <!-- In case the return code has not been set propery check stderr too --> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
12 <regex match="Error:" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
13 <regex match="Exception:" /> |
0 | 14 </stdio> |
15 <version_command>feature_alignment.py --version</version_command> | |
3 | 16 <command> |
0 | 17 <![CDATA[ |
18 feature_alignment.py | |
7 | 19 --in #echo '" "'.join([ str($file) for $file in $inputs ]) # |
9
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
20 --file_format $iformat |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
21 ##if str($iformat) == "openswath": |
0 | 22 --out $out |
9
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
23 ##end if |
0 | 24 --out_matrix out_matrix.tsv |
25 --out_ids $out_ids | |
26 --fdr_cutoff $fdr_cutoff | |
9
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
27 #if $max_fdr_quality: |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
28 --max_fdr_quality $max_fdr_quality |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
29 #end if |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
30 #if $max_rt_diff: |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
31 --max_rt_diff $max_rt_diff |
0 | 32 #end if |
9
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
33 #if $iso_max_rt_diff: |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
34 --iso_max_rt_diff $iso_max_rt_diff |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
35 #end if |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
36 #if $frac_selected: |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
37 --frac_selected $frac_selected |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
38 #end if |
0 | 39 --method $method |
40 --matrix_output_method $matrix_output_method | |
41 --realign_method $realign_method | |
42 && | |
43 mv out_matrix.tsv $out_matrix | |
44 | |
45 ]]></command> | |
46 <inputs> | |
47 | |
9
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
48 <param name="inputs" type="data" multiple="True" format="txt" |
0 | 49 label="A list of mProphet output files containing all peakgroups" help="(--in)"/> |
9
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
50 <param name="iformat" type="select" label="Which input file format is used" help="(--file_format)"> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
51 <option value="openswath" selected="True">OpenSwath</option> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
52 <option value="peakview">Peakview</option> |
0 | 53 </param> |
54 | |
55 <param name="fdr_cutoff" type="float" value="0.01" label="Seeding score cutoff" help="(--fdr_cutoff)" /> | |
9
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
56 <param name="max_fdr_quality" type="float" value="-1.0" default="-1.0" optional="True" |
0 | 57 label="Extension score cutoff" |
58 help="During the extension phase of the algorithm, peakgroups of this quality will still be considered for alignment (in FDR) - it is possible to give a range in the format lower,higher+stepsize,stepsize - e.g. 0,0.31,0.01 (-1 will set it to fdr_cutoff) (--max_fdr_quality)"/> | |
9
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
59 <param name="max_rt_diff" type="integer" value="30" default="30" optional="True" |
0 | 60 label="Maximal difference in RT for two aligned features" help="(--max_rt_diff)"/> |
9
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
61 <param name="iso_max_rt_diff" type="integer" value="10" default="10" optional="True" |
0 | 62 label="Maximal difference in RT for two isotopic channels in the same run" help="(--iso_max_rt_diff)" /> |
9
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
63 <param name="frac_selected" type="float" value="0.0" min="0" max="1" optional="True" |
0 | 64 label="Do not write peakgroup if selected in less than this fraction of runs" help="(--frac_selected)"/> |
65 <param name="method" type="select" | |
66 label="Which method to use for the clustering" | |
1 | 67 help="Note that the MST options will perform a local, MST guided alignment while the other options will use a reference-guided alignment. The global option will also move peaks which are below the selected FDR threshold. (--method)" > |
0 | 68 <option value='best_overall' selected="True">best_overall</option> |
69 <option value='best_cluster_score'>best_cluster_score</option> | |
70 <option value='global_best_cluster_score'>global_best_cluster_score</option> | |
71 <option value='global_best_overall'>global_best_overall</option> | |
72 <option value='LocalMST'>LocalMST</option> | |
73 <option value='LocalMSTAllCluster'>LocalMSTAllCluster</option> | |
74 </param> | |
75 | |
76 <param name="matrix_output_method" type="select" | |
77 label="Which columns are written besides Intensity" help="(--matrix_output_method)"> | |
78 <option value='none' selected="True">None</option> | |
79 <option value='RT'>RT</option> | |
80 <option value='score'>Score</option> | |
81 <option value='source'>Source</option> | |
82 <option value='full'>Full</option> | |
83 </param> | |
84 <param name="realign_method" type="select" label="How to re-align runs in retention time" help="(--realign_method)"> | |
85 <option value='diRT' selected="True">Use only deltaiRT from the input file</option> | |
86 <option value='linear'>Perform a linear regression using best peakgroups</option> | |
87 <!--option value='splineR'>Perform a spline fit using R</option--> | |
88 <!--option value='splineR_external'>Perform a spline fit using R</option--> | |
89 <option value='splinePy'>Use Python native spline from scikits.datasmooth (slow!)</option> | |
90 <option value='lowess'>Use Robust locally weighted regression (lowess smoother)</option> | |
91 <option value='CVSpline'>Splines with cross-validation</option> | |
92 <option value='nonCVSpline'>Splines without cross-validation</option> | |
93 <option value='earth' >Use Multivariate Adaptive Regression Splines using py-earth</option> | |
94 </param> | |
95 </inputs> | |
96 <outputs> | |
97 <!-- Matrix containing one peak group per row --> | |
98 <data format="tabular" name="out_matrix"/> | |
99 <!-- Id file only containing the ids --> | |
100 <data format="tabular" name="out_ids"/> | |
101 <!-- Output file with filtered peakgroups for quantification (only works for OpenSWATH) --> | |
9
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
102 <data format="tabular" name="out"> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
103 <!-- according to the documentation this output only works for SWATH, |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
104 but it is a requirement argument in python argparse. |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
105 So we need to output it. --> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
106 <!--filter>iformat == 'openswath'</filter--> |
0 | 107 </data> |
108 </outputs> | |
9
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
109 <tests> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
110 <test> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
111 <param name="inputs" value="feature_alignment_openswath_input_1.csv" ftype="txt" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
112 <param name="iformat" value="openswath" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
113 <param name="method" value="best_cluster_score" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
114 <param name="max_fdr_quality" value="0.4" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
115 <param name="matrix_output_method" value="RT" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
116 <output name="out_matrix" file="feature_alignment_1_openswath_output_matrix.csv" ftype="tabular" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
117 <output name="out_ids" file="feature_alignment_1_openswath_output_cluster_ids.csv" ftype="tabular" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
118 </test> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
119 <test> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
120 <param name="inputs" value="feature_alignment_openswath_input_1.csv" ftype="txt" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
121 <param name="iformat" value="openswath" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
122 <param name="method" value="best_overall" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
123 <param name="max_fdr_quality" value="0.4" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
124 <param name="matrix_output_method" value="RT" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
125 <output name="out_matrix" file="feature_alignment_2_output_2_matrix.csv" ftype="tabular" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
126 <output name="out_ids" file="feature_alignment_2_output_1_ids.csv" ftype="tabular" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
127 </test> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
128 <!-- needs R dependency; The python equivalent should be enough I guess. |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
129 <test> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
130 <param name="inputs" value="feature_alignment_3_openswath_input.csv" ftype="txt" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
131 <param name="iformat" value="openswath" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
132 <param name="realign_method" value="splineR" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
133 <param name="method" value="best_cluster_score" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
134 <param name="max_fdr_quality" value="0.4" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
135 <param name="maxtrix_output_method" value="RT" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
136 <output name="out_ids" file="feature_alignment_3_openswath_output_cluster_ids.csv" ftype="tabular" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
137 </test> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
138 --> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
139 <test> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
140 <param name="inputs" value="feature_alignment_3_openswath_input.csv" ftype="txt" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
141 <param name="iformat" value="openswath" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
142 <param name="realign_method" value="splinePy" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
143 <param name="method" value="best_cluster_score" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
144 <param name="max_fdr_quality" value="0.4" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
145 <param name="matrix_output_method" value="RT" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
146 <output name="out_ids" file="feature_alignment_3_openswath_output_cluster_ids.csv" ftype="tabular" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
147 </test> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
148 <test> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
149 <param name="inputs" value="feature_alignment_peakview_input_2.csv" ftype="txt" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
150 <param name="iformat" value="peakview" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
151 <param name="method" value="best_cluster_score" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
152 <param name="max_fdr_quality" value="0.0001" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
153 <param name="fdr_cutoff" value="0.000000001" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
154 <param name="matrix_output_method" value="RT" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
155 <output name="out_matrix" file="feature_alignment_5_peakview_output_matrix.csv" ftype="tabular" /> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
156 </test> |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
157 |
9ad7babdbedd
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment commit ceaef1a06c8600f9a042fc8f80f5b3fae75d4445-dirty
galaxyp
parents:
8
diff
changeset
|
158 </tests> |
0 | 159 <help> |
160 <![CDATA[ | |
161 | |
162 **What it does** | |
163 | |
164 This program will select all peakgroups below the FDR cutoff in all files and try to align them to each other. | |
165 If only one file is given, it will act as peakgroup selector (best by m_score) | |
166 and will apply the provided FDR cutoff. | |
167 ]]> | |
168 </help> | |
169 <citations> | |
170 </citations> | |
171 </tool> | |
172 |