comparison hardklor.xml @ 0:d796e6613d19 draft

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/hardklor commit f37e6d0357de4d9b1cd743ca291a7d4df2cc7a5f-dirty
author galaxyp
date Mon, 23 May 2016 11:12:40 -0400
parents
children a979b9ff3272
comparison
equal deleted inserted replaced
-1:000000000000 0:d796e6613d19
1 <tool id="hardklor" name="Hardklor" version="2.30">
2 <description>identification of features from mass spectra</description>
3 <requirements>
4 <requirement type="package" version="2.30">hardklor</requirement>
5 </requirements>
6 <stdio>
7 <exit_code range="1:" level="fatal"/>
8 </stdio>
9 <command>python $__tool_directory__/hardklor.py "$ms1_in.extension" "$ms1_in"
10 "$output" -charge_algo=$cdm -resolution=$res -centroided=$centroided -instrument=$instrument -algorithm=$algorithm -mincharge=$chMin
11 -maxcharge=$chMax -mslvl=$mslvl -correlation=$corr -depth=$depth -sensitivity=$sens -maxfeat=$maxfeat</command>
12 <inputs>
13 <param name="ms1_in" type="data" format="mzml" label="MS1 files with precursor spectra " />
14 <param name="res" type="integer" value="60000" label="Spectral resolution at 400m/z" />
15 <param name="centroided" type="select" display="radio" label="Centroided data?">
16 <option value="0" selected="true">No</option>
17 <option value="1">Yes</option>
18 </param>
19 <param name="instrument" type="select" label="Instrument" >
20 <option value="Orbitrap" selected="true">Orbitrap</option>
21 <option value="FTICR" >FTICR</option>
22 <option value="TOF" >TOF</option>
23 <option value="QIT" >Quadrupole ion trap</option>
24 </param>
25 <param name="mslvl" type="select" display="radio" label="MS level">
26 <option value="0" >All</option>
27 <option value="1" selected="true">MS1</option>
28 <option value="2">MS2</option>
29 <option value="3">MS3</option>
30 </param>
31 <param name="algorithm" type="select" label="Algorithm">
32 <option value="Basic">Basic</option>
33 <option value="Version1">Version 1</option>
34 <option value="Version2" selected="true">Version 2</option>
35 </param>
36 <param name="cdm" type="select" label="Charge determination method">
37 <option value="None">None</option>
38 <option value="FFT">Fast Fourier Transform</option>
39 <option value="Patterson">Patterson Algorithm</option>
40 <option value="Quick" selected="true">Quick</option>
41 <option value="Senko">Senko</option>
42 </param>
43
44 <param name="chMin" type="integer" value="1" label="Min charge state" />
45 <param name="chMax" type="integer" value="5" label="Max charge state" />
46
47 <param name="corr" type="float" value="0.95" label="Correlation threshold" />
48 <param name="sens" type="integer" value="2" label="Sensitivity level" help="Ranges from 0 (min, fast) to 3 (max, slow)" />
49 <param name="depth" type="integer" value="2" label="Depth of combinatorial analysis"
50 help="Max number of overlapping features in any mz window. Keep as low as necessary for speed" />
51 <param name="maxfeat" type="integer" value="12" label="Max nr. of features for mz-window to solve" />
52
53 <!-- <param name="sn" type="float" value="1" label="Signal to noise threshold" help="Must be >=0" />
54 <param name="snWin" type="float" optional="true" label="Dynamic signal to noise window length (m/z)"
55 help="For spectra with varying noise levels (not for Thermo data)"/>
56 <param name="win" type="float" value="5.25" label="Max width of any set of peaks in a spectrum" /> -->
57 </inputs>
58
59 <outputs>
60 <data format="hk" name="output" />
61 </outputs>
62 <tests>
63 <test>
64 <param name="ms1_in" value="ms1_spectra.mzml"/>
65 <output name="output" file="hardklor_result.hk"/>
66 </test>
67 </tests>
68 <help>
69 Hardklör identifies peptide or protein-like features in mass spectra. It deconvolves overlapping ion signals and can be used on a variety of input formats. The output of Hardklör can be used by the Krönik tool which summarizes the peptide features over time in an LC-MS experiment.
70 </help>
71 <citations>
72 <citation type="doi">10.1021/ac0700833</citation>
73 <citation type="doi">10.1002/0471250953.bi1318s37</citation>
74 </citations>
75 </tool>