annotate flashlfq.xml @ 5:3b0c2e1927c1 draft

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 8b11559f7c02a4a686af1086740795ace14d077d-dirty
author galaxyp
date Thu, 25 Jan 2018 16:40:02 -0500
parents 597199e75dcc
children 279fbc8ad992
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5
3b0c2e1927c1 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 8b11559f7c02a4a686af1086740795ace14d077d-dirty
galaxyp
parents: 4
diff changeset
1 <tool id="flashlfq" name="FlashLFQ" version="0.1.0">
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
2 <description>ultrafast label-free quantification for mass-spectrometry proteomics</description>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
3 <requirements>
1
a30802542619 Uploaded
galaxyp
parents: 0
diff changeset
4 <requirement type="package" version="0.1.99">flashlfq</requirement>
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
5 </requirements>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
6 <command><![CDATA[
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
7 #import re
3
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
8 #set $idt_path = $re.sub('\s','_',$re.sub('[.][^.]*$','',$idt.display_name.split('/')[-1])) + ".psmtsv"
5
3b0c2e1927c1 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 8b11559f7c02a4a686af1086740795ace14d077d-dirty
galaxyp
parents: 4
diff changeset
9 mkdir spectrum_dir;
3b0c2e1927c1 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 8b11559f7c02a4a686af1086740795ace14d077d-dirty
galaxyp
parents: 4
diff changeset
10 ln -s '${idt}' '${idt_path}';
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
11 #for $peak_list in $peak_lists:
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
12 #set $input_name = $re.sub('[.][^.]*$','',$peak_list.display_name.split('/')[-1]) + ".mzML"
5
3b0c2e1927c1 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 8b11559f7c02a4a686af1086740795ace14d077d-dirty
galaxyp
parents: 4
diff changeset
13 ln -s '${peak_list}' 'spectrum_dir/${input_name}';
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
14 #end for
5
3b0c2e1927c1 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 8b11559f7c02a4a686af1086740795ace14d077d-dirty
galaxyp
parents: 4
diff changeset
15 FlashLFQ --idt '$idt_path' --rep spectrum_dir --ppm $ppm --iso $iso --nis $nis
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
16 #if $intensity == 'integrate':
5
3b0c2e1927c1 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 8b11559f7c02a4a686af1086740795ace14d077d-dirty
galaxyp
parents: 4
diff changeset
17 --int true
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
18 #end if
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
19 #if $charge == 'precursor':
5
3b0c2e1927c1 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 8b11559f7c02a4a686af1086740795ace14d077d-dirty
galaxyp
parents: 4
diff changeset
20 --chg true
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
21 #end if
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
22 $rmm $mbr
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
23 --pau false
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
24 && cat *_FlashLFQ_Log.txt | sed 's/\(Analysis summary for:\).*working./\1 /' > '$log'
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
25 && cp *_FlashLFQ_QuantifiedBaseSequences.tsv '$quantifiedBaseSequences'
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
26 && cp *_FlashLFQ_QuantifiedModifiedSequences.tsv '$quantifiedModifiedSequences'
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
27 && cp *_FlashLFQ_QuantifiedPeaks.tsv '$quantifiedPeaks'
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
28 && cp *_FlashLFQ_QuantifiedProteins.tsv '$quantifiedProteins'
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
29 ]]></command>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
30 <inputs>
3
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
31 <param name="idt" type="data" format="tabular" label="identification file"
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
32 help="MetaMorpheus,Morpheus"/>
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
33 <param name="peak_lists" type="data" format="mzml" multiple="true" label="spectrum files"/>
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
34 <param name="ppm" type="float" value="10" min="1" max="20" label="monoisotopic ppm tolerance"/>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
35 <param name="iso" type="float" value="5" min="1" max="10" label="isotopic distribution tolerance in ppm"/>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
36 <param name="nis" type="integer" value="2" min="1" max="30" label="number of isotopes required to be observed"/>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
37 <param name="intensity" type="select" label="intensity">
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
38 <option value="apex" selected="true">use the apex intensity</option>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
39 <option value="integrate">integrate chromatographic peak intensity</option>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
40 </param>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
41 <param name="charge" type="select" label="charge">
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
42 <option value="all" selected="true">use all identification detected charge states</option>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
43 <option value="precursor">use precursor charge</option>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
44 </param>
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
45 <param name="rmm" type="boolean" truevalue="--rmm true" falsevalue="--rmm false" checked="true"
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
46 label="require observed monoisotopic mass peak"/>
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
47 <param name="mbr" type="boolean" truevalue="--mbr true" falsevalue="--mbr false" checked="false"
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
48 label="match between runs"/>
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
49 </inputs>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
50 <outputs>
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
51 <data name="log" format="txt" label="${tool.name} on ${on_string}: Log" />
3
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
52 <data name="quantifiedPeaks" format="tabular" label="${tool.name} on ${on_string}: QuantifiedPeaks.tsv">
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
53 <actions>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
54 <action name="column_names" type="metadata"
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
55 default="File Name,Base Sequence,Full Sequence,Protein Group,Peptide Monoisotopic Mass,MS2 Retention Time,Precursor Charge,Theoretical MZ,Peak intensity,Peak RT Start,Peak RT Apex,Peak RT End,Peak MZ,Peak Charge,Num Charge States Observed,Peak Detection Type,PSMs Mapped,Base Sequences Mapped,Full Sequences Mapped,Peak Split Valley RT,Peak Apex Mass Error (ppm)"/>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
56 </actions>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
57 </data>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
58 <data name="quantifiedBaseSequences" format="tabular" label="${tool.name} on ${on_string}: QuantifiedBaseSequences.tsv">
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
59 <actions>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
60 <action name="column_names" type="metadata"
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
61 default="Sequence,Protein Group,${','.join(['Intensity_' + i.name for i in $peak_lists])},${','.join(['Detection Type_' + i.name for i in $peak_lists])}"/>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
62 </actions>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
63 </data>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
64 <data name="quantifiedModifiedSequences" format="tabular" label="${tool.name} on ${on_string}: QuantifiedModifiedSequences.tsv">
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
65 <actions>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
66 <action name="column_names" type="metadata"
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
67 default="Sequence,Protein Group,${','.join(['Intensity_' + i.name for i in $peak_lists])},${','.join(['Detection Type_' + i.name for i in $peak_lists])}"/>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
68 </actions>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
69 </data>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
70 <data name="quantifiedProteins" format="tabular" label="${tool.name} on ${on_string}: QuantifiedProteins.tsv">
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
71 <actions>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
72 <action name="column_names" type="metadata"
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
73 default="Protein"/>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
74 </actions>
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
75 </data>
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
76 </outputs>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
77 <tests>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
78 <test>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
79 <param name="idt" value="aggregatePSMs_5ppmAroundZero.psmtsv" ftype="tabular"/>
3
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
80 <param name="peak_lists" value="sliced-mzml.mzML" ftype="mzml"/>
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
81 <param name="ppm" value="12"/>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
82 <param name="iso" value="6"/>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
83 <output name="log">
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
84 <assert_contents>
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
85 <has_text text="ppmTolerance = 12" />
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
86 <has_text text="isotopePpmTolerance = 6" />
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
87 </assert_contents>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
88 </output>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
89 </test>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
90 </tests>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
91 <help><![CDATA[
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
92
5
3b0c2e1927c1 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 8b11559f7c02a4a686af1086740795ace14d077d-dirty
galaxyp
parents: 4
diff changeset
93 **FlashLFQ**
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
94
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
95 **Accepted command-line arguments:**
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
96
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
97 ::
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
98
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
99 --idt [string | identification file path (TSV format)]
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
100 --raw [string | MS data file (.raw or .mzML)]
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
101 --rep [string | repository containing MS data files]
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
102 --ppm [double | monoisotopic ppm tolerance] (default = 10)
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
103 --iso [double | isotopic distribution tolerance in ppm] (default = 5)
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
104 --sil [boolean | silent mode; no console output] (default = false)
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
105 --pau [boolean | pause at end of run] (default = true)
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
106 --int [boolean | integrate chromatographic peak intensity instead of using
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
107 the apex intensity] (default = false)
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
108 --chg [boolean | use only precursor charge state; when set to false, FlashLFQ looks
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
109 for all charge states detected in the MS/MS identification file for each peptide] (default = false)
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
110 --mbr [bool|match between runs]
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
111 --rmm [bool|require observed monoisotopic mass peak]
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
112 --nis [int|number of isotopes required to be observed]
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
113
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
114
3
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
115 **Tab-Delimited Identification Text File**
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
116
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
117 The first line of the text file should contain column headers identifying what each column is. Note that MetaMorpheus (.psmtsv), Morpheus, MaxQuant (msms.txt), and TDPortal tab-delimited column headers are supported natively and such files can be read without modification. For search software that lists decoys and PSMs above 1% FDR (e.g., MetaMorpheus), you may want to remove these prior to FlashLFQ analysis. FlashLFQ will probably crash if ambiguous PSMs are passed into it (e.g., a PSM with more than 2 peptides listed in one line).
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
118
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
119 The following headers are required in the list of MS/MS identifications:
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
120
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
121 - **File Name** - File extensions should be tolerated, but no extension is tested more extensively (e.g. use MyFile and not MyFile.mzML)
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
122 - **Base Sequence** - Should only contain amino acid sequences, or it will likely result in a crash
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
123 - **Full Sequence** - Modified sequence. Can contain any letters, but must be consistent between the same peptidoform to get accurate results
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
124 - **Peptide Monoisotopic Mass** - Theoretical monoisotopic mass, including modification mass
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
125 - **Scan Retention Time** - MS/MS identification scan retention time
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
126 - **Precursor Charge** - Charge of the ion selected for MS/MS resulting in the identification
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
127 - **Protein Accession** - Protein accession(s) for the peptide; protein quantification is still preliminary
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
128
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
129
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
130 **Outputs**:
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
131
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
132 - **QuantifiedProteins.tsv** - Protein intensities are summed here within a run.
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
133
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
134 - **QuantifiedPeaks.tsv** - Each chromatographic peak is shown here, even peaks that were not quantifiable (peak intensity = 0). Details about each peak, such as number of PSMs mapped, start/apex/end retention times, ppm error, etc are contained in this file. A peptide can have multiple peaks over the course of a run (e.g., oxidized peptidoforms elute at different times, etc). Ambiguous peaks are displayed with a | (pipe) delimiter to indicate more than one peptide mapped to that peak.
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
135
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
136 - **QuantifiedModifiedSequences.tsv** - Similar to QuantifiedBaseSequences, but instead of being summed by Base Sequence, peptide intensities are summed by modified sequence; this makes it convenient to compare modified peptidoform intensities across runs.
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
137
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
138 - **QuantifiedBaseSequences.tsv** - Peptide intensities are summed here within a run (including differently-modified forms of the same amino acid sequence) and displayed in a convenient format for comparing across runs. The identification type (MS/MS or MBR) is also indicated. A peptide with more than 30% of its intensity coming from ambiguous peak(s) is considered not quantifiable and is given an intensity of -1.
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
139
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
140
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
141 - **Log.txt** - Log of the FlashLFQ run. Includes timestamps and quantification time for each file, total analysis time, directories used, and settings.
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
142
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
143
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
144 ]]></help>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
145 <citations>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
146 <citation type="doi">10.1021/acs.jproteome.7b00608</citation>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
147 </citations>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
148 </tool>