annotate calisp.xml @ 0:d158a7909193 draft default tip

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
author galaxyp
date Thu, 01 Jun 2023 08:33:58 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
1 <tool id="calisp" name="calisp" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05">
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
2 <description>Estimate isotopic composition of peptides from proteomics mass spectrometry data</description>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
3 <macros>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
4 <token name="@TOOL_VERSION@">3.0.10</token>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
5 <token name="@VERSION_SUFFIX@">0</token>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
6 <token name="@CALISP_REPO@">https://raw.githubusercontent.com/kinestetika/Calisp/208d495674e2b52fe56cf23457c833d1c2527242</token>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
7 <xml name="input_macro" tokens="multiple">
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
8 <!-- According to readme mzid input is not yet implented -->
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
9 </xml>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
10 </macros>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
11 <requirements>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
12 <requirement type="package" version="@TOOL_VERSION@">calisp</requirement>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
13 </requirements>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
14 <command detect_errors="aggressive"><![CDATA[
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
15 #import re
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
16
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
17 mkdir -p spectra &&
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
18 #set escaped_specs = re.sub('[^\w\-\.,:]', '_', str($spectrum_file.element_identifier))
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
19 ln -s '$spectrum_file' spectra/'$escaped_specs' &&
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
20
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
21 mkdir -p psms &&
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
22 #set escaped_peps = re.sub('[^\w\-\.,:]', '_', str($peptide_file.element_identifier))
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
23 ln -s '$peptide_file' psms/'$escaped_peps' &&
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
24
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
25 calisp
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
26 --spectrum_file spectra/
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
27 --peptide_file psms/
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
28 --output_file calisp-output/
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
29 --mass_accuracy $mass_accuracy
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
30 --bin_delimiter '$bin_delimiter'
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
31 --threads "\${GALAXY_SLOTS:-1}"
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
32 --isotope $isotope
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
33 $compute_clumps &&
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
34 '$__tool_directory__/feather2tsv.py' --calisp_output calisp-output/
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
35 ]]></command>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
36 <inputs>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
37 <param argument="--spectrum_file" type="data" multiple="false" format="mzml" label="Spectrum file"/>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
38 <param argument="--peptide_file" type="data" multiple="false" format="tabular" label="Peptide file" help="Psm file" />
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
39 <param argument="--mass_accuracy" type="float" value="10" label="Mass accuracy" help="The maximum mass difference between theoretical mass and experimental mass of a peptide" />
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
40 <param argument="--bin_delimiter" type="text" value="_" label="Bin delimiter" help="For metagenomic data, the delimiter that separates the bin ID from the protein ID (default: &quot;_&quot;). Use &quot;-&quot; to ignore bins ID entirely.">
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
41 <sanitizer invalid_char="">
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
42 <valid initial="string.ascii_letters,string.digits">
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
43 <add value="_" />
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
44 <add value="-" />
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
45 <add value=":" />
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
46 </valid>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
47 </sanitizer>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
48 </param>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
49 <param argument="--isotope" type="select" label="Target isotope">
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
50 <option value="13C" selected="true">13C</option>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
51 <option value="14C">14C</option>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
52 <option value="15N">15N</option>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
53 <option value="17O">17O</option>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
54 <option value="18O">18O</option>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
55 <option value="2H">2H</option>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
56 <option value="3H">3H</option>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
57 <option value="33S">33S</option>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
58 <option value="34S">34S</option>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
59 <option value="36S">36S</option>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
60 </param>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
61 <param argument="--compute_clumps" type="boolean" truevalue="--compute_clumps" falsevalue="" checked="false" label="Compute clumps" help="To compute clumpiness of carbon assimilation. Only use when samples are labeled tosaturation. Estimation of clumpiness takes much additional time." />
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
62 </inputs>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
63 <outputs>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
64 <collection name="output" type="list">
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
65 <discover_datasets pattern="(?P&lt;designation&gt;.*)\.tsv" format="tabular" directory="calisp-output"/>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
66 </collection>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
67 </outputs>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
68 <tests>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
69 <!-- TODO test data to large, avilable from here: https://github.com/kinestetika/Calisp/tree/master/test
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
70 if possible inlcude via location in the future
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
71 <test expect_num_outputs="1">
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
72 <param name="spectrum_file" value="calisp_test_data.mzML" ftype="mzml"/>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
73 <param name="peptide_file" value="calisp_test_data_TargetPeptideSpectrumMatch.txt" ftype="tabular"/>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
74 <output_collection name="output" count="1">
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
75 <element name="calisp_test_data">
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
76 <assert_contents>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
77 <has_text text="experiment"/>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
78 <has_text text="MKH_260min_1800ng"/>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
79 <has_text text="HOMO"/>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
80 <has_text text="P13645"/>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
81 <has_text text="NHEEEMKDLR"/>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
82 <has_text text="Oxidation"/>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
83 <has_n_columns n="85"/>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
84 <has_n_lines n="24"/>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
85 </assert_contents>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
86 </element>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
87 </output_collection>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
88 </test>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
89 -->
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
90 </tests>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
91 <help><![CDATA[
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
92 Calisp (Calgary approach to isotopes in proteomics) is a program that estimates
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
93 isotopic composition (e.g. 13C/12C, delta13C, 15N/14N etc) of peptides from
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
94 proteomics mass spectrometry data. Input data consist of mzML files and files
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
95 with peptide spectrum matches.
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
96
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
97 Calisp was originally developed in Java. This Galaxy tool uses the python
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
98 reimplementation https://github.com/kinestetika/Calisp.
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
99 Note that, in contrast to the Java version the python reimplementation does
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
100 not use ``mcl`` .
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
101 Compared to Java versions of calisp, the workflow has been simplified.
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
102 Calisp does not filter out any isotopic patterns, or adds up isotopic
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
103 patterns to reduce noise - like the Java version does. It simply estimates the
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
104 ratio for the target isotopes (e.g. 13C/12C) for every isotopic pattern it can
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
105 subsample. It estimates this ratio based on neutron abundance and using fast
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
106 fourier transforms. The former applies to stable isotope probing experiments.
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
107 The latter applies to natural abundances, or to isotope probing experiments with
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
108 very little added label (e.g. using substrates with <1% additional 13C). The
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
109 motivation for omitting filtering is that keeping all subsampled isotopic
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
110 patterns, including bad ones, will enable training of machine learning
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
111 classifiers. Also, because it was shown that the median provides better
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
112 estimates for species in microbial communities than the mean, adding up isotopic
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
113 patterns to improve precision has lost its purpose. There is more power (and
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
114 sensitivity) in numbers.
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
115
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
116 Because no data are filtered out and no isotopic patterns get added up,
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
117 calisp analyzes at least ten times as many isotopic patterns compared to the
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
118 Java version. That means calisp.py is about ten times slower, it takes about
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
119 5-10 min per .mzML file on a Desktop computer. For natural
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
120 abundance data, it works well to only use those spectra that have a FFT fitting
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
121 error ("error_fft") of less than 0.001. Note that this threshold is less
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
122 stringent then thew one used by the java program.
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
123
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
124 Input
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
125 =====
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
126
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
127 Calisp needs two inputs: a spectra file in mzML format and tabular peptipe file (PSM).
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
128 The PSM file contains a column "Spectrum File" that links the peptides to the
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
129 original spectra files. The mzML files are identified by the run id
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
130 information stored in the mzML files or the file name.
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
131 In order to make the association via the file name work in Galaxy one can either
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
132
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
133 - use collections where the element identifiers are equal to the data in the column
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
134 - make sure that dataset names are equal to the data in this column
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
135
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
136 Output table
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
137 ============
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
138
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
139 Each row contains one isotopic pattern, defined by the following columns:
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
140
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
141 ========================================== ===================
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
142 Header name Content
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
143 ========================================== ===================
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
144 experiment filename of the peptide spectrum match (psm) file
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
145 ms_run filename of the .mzml file
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
146 bins bin/mag ids, separated by commas. Calisp expects the protein ids in the psm file to consist of two parts, separated by a delimiter (_ by default). The first part is the bin/mag id, the second part the protein id
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
147 proteins the ids of the proteins associated with the pattern (without the bin id)
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
148 peptide the aminoacid sequence of the peptide
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
149 peptide_mass the mass of the peptide
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
150 C # of carbon atoms in the peptide
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
151 N # of nitrogen atoms in the peptide
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
152 O # of oxygen atoms in the peptide
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
153 H # of hydrogen atoms in the peptide
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
154 S # of sulfur atoms in the peptide
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
155 psm_id psm id
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
156 psm_mz psm m over z
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
157 psm_charge psm charge
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
158 psm_neutrons number of neutrons inferred from custom 'neutron' modifications
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
159 psm_rank rank of the psm
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
160 psm_precursor_id id of the ms1 spectrum that was the source of the psm
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
161 psm_precursor_mz mass over charge of the precursor of the psm
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
162 pattern_charge charge of the pattern
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
163 pattern_precursor_id id of the ms1 spectrum that was the source of the pattern
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
164 pattern_total_intensity total intensity of the pattern
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
165 pattern_peak_count # of peaks in the pattern
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
166 pattern_median_peak_spacing medium mass difference between a pattern's peaks
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
167 spectrum_mass_irregularity a measure for the standard deviation in the mass difference between a pattern's peaks
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
168 ratio_na the estimated isotope ratio inferred from neutron abundance (sip experiments)
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
169 ratio_fft the estimated isotope ratio inferred by the fft method (natural isotope abundances)
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
170 error_fft the remaining error after fitting the pattern with fft
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
171 error_clumpy the remaining error after fitting the pattern with the clumpy carbon method
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
172 flag_peptide_contains_sulfur true if peptide contains sulfur
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
173 flag_peptide_has_modifications true if peptide has no modifications
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
174 flag_peptide_assigned_to_multiple_bins true if peptide is associated with multiple proteins from different bins/mags
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
175 flag_peptide_assigned_to_multiple_proteins true if peptide is associated with multiple proteins
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
176 flag_peptide_mass_and_elements_undefined true if peptide has unknown mass and elemental composition
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
177 flag_psm_has_low_confidence true if psm was flagged as having low confidence (peptide identity uncertain)
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
178 flag_psm_is_ambiguous true if psm could not be assigned with certainty
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
179 flag_pattern_is_contaminated true if multiple patterns have one or more shared peaks
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
180 flag_pattern_is_wobbly true if pattern_median_peak_spacing exceeds a treshold
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
181 flag_peak_at_minus_one_pos true if a peak was detected immediately before the monoisotopic peak, could indicate overlap with another pattern
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
182 i0 - i19 the intensities of the first 20 peaks of the pattern
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
183 m0 - m19 the masses of the first 20 peaks of the pattern
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
184 c1 - c6 contributions of clumps of 1-6 carbon to ratio_na. These are the outcomes of the clumpy carbon model. These results are only meaningful if the biomass was labeled to saturation.
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
185 ========================================== ===================
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
186 ]]></help>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
187 <citations>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
188 <citation type="doi">10.1186/s40168-022-01454-1</citation>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
189 <citation type="doi">10.1073/pnas.1722325115</citation>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
190 <citation type="doi">10.1101/2021.03.29.437612</citation>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
191 <citation type="doi">10.1093/bioinformatics/bty046</citation>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
192 </citations>
d158a7909193 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp commit 060699366b6dd19ad6c3ef3f332f63cc55d75dce
galaxyp
parents:
diff changeset
193 </tool>