annotate flashlfq.xml @ 12:317585bd35c6 draft

"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 2ecb09211546e544ef31ad6abc914740211a9a71"
author galaxyp
date Tue, 10 Dec 2019 18:07:31 +0000
parents f56a1c5cc678
children 1c5ed8c13227
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11
f56a1c5cc678 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 0edbb8e74057140f74086694cab070b7b5907220"
galaxyp
parents: 10
diff changeset
1 <tool id="flashlfq" name="FlashLFQ" version="1.0.2.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>
11
f56a1c5cc678 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 0edbb8e74057140f74086694cab070b7b5907220"
galaxyp
parents: 10
diff changeset
4 <requirement type="package" version="1.0.2">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"
6
279fbc8ad992 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a9220a40d89c0bd250002d876d4b2f751d19f3de
galaxyp
parents: 5
diff changeset
9 ln -s '${idt}' '${idt_path}' &&
279fbc8ad992 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a9220a40d89c0bd250002d876d4b2f751d19f3de
galaxyp
parents: 5
diff changeset
10 mkdir spectrum_dir &&
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
11 #for $peak_list in $peak_lists:
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
12 #set $ext = '.mzML'
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
13 #if $peak_list.extension.endswith('raw')
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
14 #set $ext = '.RAW'
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
15 #end if
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
16 #set $input_name = $re.sub('[.][^.]*$','',$peak_list.display_name.split('/')[-1]) + $ext
6
279fbc8ad992 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a9220a40d89c0bd250002d876d4b2f751d19f3de
galaxyp
parents: 5
diff changeset
17 ln -s '${peak_list}' 'spectrum_dir/${input_name}' &&
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
18 #end for
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
19 #if $experiment.use_design == 'true':
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
20 ln -s '${experiment.experimental_design}' 'spectrum_dir/ExperimentalDesign.tsv' &&
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
21 #end if
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
22 echo 'y' |
6
279fbc8ad992 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a9220a40d89c0bd250002d876d4b2f751d19f3de
galaxyp
parents: 5
diff changeset
23 FlashLFQ
279fbc8ad992 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a9220a40d89c0bd250002d876d4b2f751d19f3de
galaxyp
parents: 5
diff changeset
24 --idt '$idt_path'
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
25 --rep "./spectrum_dir"
6
279fbc8ad992 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a9220a40d89c0bd250002d876d4b2f751d19f3de
galaxyp
parents: 5
diff changeset
26 --ppm $ppm
279fbc8ad992 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a9220a40d89c0bd250002d876d4b2f751d19f3de
galaxyp
parents: 5
diff changeset
27 --iso $iso
279fbc8ad992 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a9220a40d89c0bd250002d876d4b2f751d19f3de
galaxyp
parents: 5
diff changeset
28 --nis $nis
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
29 $int
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
30 $chg
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
31 $mbr
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
32 #if $experiment.use_design == 'true':
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
33 $experiment.nor
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
34 #if $experiment.bayesian.calculate == 'true':
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
35 --bay true
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
36 --ctr '$experiment.bayesian.ctr'
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
37 #if str($experiment.bayesian.fcc):
12
317585bd35c6 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 2ecb09211546e544ef31ad6abc914740211a9a71"
galaxyp
parents: 11
diff changeset
38 --fcc $experiment.bayesian.fcc
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
39 #end if
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
40 $experiment.bayesian.sha
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
41 $experiment.bayesian.rmc
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
42 --mcm '$experiment.bayesian.mcm'
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
43 #if str($experiment.bayesian.rns):
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
44 --rns $experiment.bayesian.rns
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
45 #end if
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
46 #end if
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
47 #end if
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
48 --out out > logfile.txt
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
49 ]]></command>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
50 <inputs>
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
51 <param argument="--idt" type="data" format="tabular" label="identification file"
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
52 help="MetaMorpheus,Morpheus,PeptideShaker PSM Report,MaxQuant"/>
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
53 <param name="peak_lists" type="data" format="mzml,raw,thermo.raw" multiple="true" label="spectrum files"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
54 <param argument="--ppm" type="float" value="10" min="1" max="20" label="monoisotopic ppm tolerance"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
55 <param argument="--iso" type="float" value="5" min="1" max="10" label="isotopic distribution tolerance in ppm"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
56 <param argument="--nis" type="integer" value="2" min="2" max="30" label="number of isotopes required to be observed"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
57 <param argument="--int" type="boolean" truevalue="--int true" falsevalue="--int false" checked="false"
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
58 label="integrate peak areas (not recommended)"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
59 <param argument="--chg" type="boolean" truevalue="--chg true" falsevalue="--chg false" checked="false"
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
60 label="use only precursor charge state"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
61 <param argument="--mbr" type="boolean" truevalue="--mbr true" falsevalue="--mbr false" checked="false"
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
62 label="match between runs"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
63 <param argument="--mrt" type="float" value="2.5" min=".01" max="60" label="maximum MBR window in minutes"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
64 <conditional name="experiment">
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
65 <param name="use_design" type="select" label="Use experimnetal design for normalization or protein fold-change analysis">
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
66 <option value="false">No</option>
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
67 <option value="true">Yes</option>
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
68 </param>
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
69 <when value="false"/>
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
70 <when value="true">
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
71 <param name="experimental_design" type="data" format="tabular" label="ExperimentalDesign.tsv"/>
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
72 <param argument="--nor" type="boolean" truevalue="--nor true" falsevalue="--nor false" checked="true"
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
73 label="normalize intensity results"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
74 <conditional name="bayesian">
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
75 <param name="calculate" type="select" label="Perform Bayesian protein fold-change analysis">
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
76 <option value="false">No</option>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
77 <option value="true">Yes</option>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
78 </param>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
79 <when value="false"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
80 <when value="true">
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
81 <param argument="--ctr" type="select" value="" label="control condition for Bayesian protein fold-change analysis">
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
82 <options from_dataset="experimental_design">
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
83 <column name="name" index="1"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
84 <column name="value" index="1"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
85 <filter type="static_value" name="heading_ctr" column="1" value="Condition" keep="False"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
86 <filter type="unique_value" name="unique_ctr" column="1"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
87 <filter type="sort_by" name="sorted_ctr" column="1"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
88 </options>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
89 </param>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
90 <param argument="--fcc" type="float" value="" min="0.01" label="fold-change cutoff" optional="true"
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
91 help="Leave blank to detemine emperically from data."/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
92 <param argument="--sha" type="boolean" truevalue="--sha true" falsevalue="--sha false" checked="false"
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
93 label="use shared peptides for protein quantification"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
94 <param argument="--rmc" type="boolean" truevalue="--rmc true" falsevalue="--rmc false" checked="false"
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
95 label="require MS/MS ID in condition"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
96 <param argument="--mcm" type="integer" value="500" min="500" label="number of markov-chain monte carlo iterations"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
97 <param argument="--rns" type="integer" value="" optional="true" label="random seed"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
98 </when>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
99 </conditional>
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
100 </when>
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
101 </conditional>
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
102 </inputs>
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
103
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
104 <outputs>
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
105 <data name="log" format="txt" label="${tool.name} on ${on_string}: Log" from_work_dir="logfile.txt"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
106 <data name="toml" format="txt" label="${tool.name} on ${on_string}: FlashLfqSettings.toml" from_work_dir="out/FlashLfqSettings.toml"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
107 <data name="quantifiedPeaks" format="tabular" label="${tool.name} on ${on_string}: QuantifiedPeaks.tsv" from_work_dir="out/QuantifiedPeaks.tsv"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
108 <data name="quantifiedPeptides" format="tabular" label="${tool.name} on ${on_string}: QuantifiedPeptides.tsv" from_work_dir="out/QuantifiedPeptides.tsv"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
109 <data name="quantifiedProteins" format="tabular" label="${tool.name} on ${on_string}: QuantifiedProteins.tsv" from_work_dir="out/QuantifiedProteins.tsv"/>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
110 <data name="foldChange" format="tabular" label="${tool.name} on ${on_string}: BayesianFoldChangeAnalysis.tsv" from_work_dir="out/BayesianFoldChangeAnalysis.tsv">
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
111 <filter>'bayesian' in experiment and 'ctr' in experiment['bayesian']</filter>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
112 </data>
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
113 </outputs>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
114 <tests>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
115 <test>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
116 <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
117 <param name="peak_lists" value="sliced-mzml.mzML" ftype="mzml"/>
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
118 <param name="ppm" value="12"/>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
119 <param name="iso" value="6"/>
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
120 <output name="quantifiedPeaks">
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
121 <assert_contents>
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
122 <has_text text="EGFQVADGPLYR" />
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
123 </assert_contents>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
124 </output>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
125 </test>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
126 </tests>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
127 <help><![CDATA[
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
128 **FlashLFQ** is an ultrafast label-free quantification for mass-spectrometry proteomics.
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
129 https://github.com/smith-chem-wisc/FlashLFQ/wiki
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
130
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
131
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
132 **Accepted command-line arguments:**
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
133
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
134 ::
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
135
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
136 --idt [string|identification file path]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
137 --rep [string|directory containing spectral data files]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
138 --out [string|output directory]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
139 --ppm [double|ppm tolerance]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
140 --nor [bool|normalize intensity results]
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
141 --mbr [bool|match between runs]
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
142 --sha [bool|use shared peptides for protein quantification]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
143 --bay [bool|Bayesian protein fold-change analysis]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
144 --ctr [string|control condition for Bayesian protein fold-change analysis]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
145 --fcc [double|fold-change cutoff for Bayesian protein fold-change analysis]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
146
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
147 **Advanced settings:**
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
148
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
149 ::
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
150
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
151 --sil [bool|silent mode]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
152 --int [bool|integrate peak areas (not recommended)]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
153 --iso [double|isotopic distribution tolerance in ppm]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
154 --mrt [double|maximum MBR window in minutes]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
155 --chg [bool|use only precursor charge state]
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
156 --nis [int|number of isotopes required to be observed]
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
157 --rmc [bool|require MS/MS ID in condition]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
158 --mcm [int|number of markov-chain monte carlo iterations for the Bayesian protein fold-change analysis]
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
159 --rns [int|random seed for the Bayesian protein fold-change analysis]
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
160
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
161
3
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
162 **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
163
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
164 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
165
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
166 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
167
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
168 - **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
169 - **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
170 - **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
171 - **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
172 - **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
173 - **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
174 - **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
175
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
176 **ExperimentalDesign File**
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
177
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
178 The ExperimentalDesign_ File should have 5 columns separated by TAB characters:
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
179
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
180 - SpectrumFileName - Without the file extension
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
181 - Condition - Cannot be blank
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
182 - Sample - an integer, at least 1. Each condition must have continuous sample numbers starting at 1. For example, samples 1, 3, and 4 are not valid because sample 2 is missing. In this case you would label the samples as 1, 2, and 3.
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
183 - Fraction - an integer, at least 1. Each sample must have continuous fraction numbers starting at 1. If your data is not fractionated, just enter 1 for all fractions. It is OK for two samples to have different total numbers of fractions. It is NOT recommended to use a sample if it is missing a fraction with significant peptide intensity (e.g., if sample 2 is missing fraction #5 out of 10 total fractions).
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
184 - Replicate - an integer, at least 1. Each fraction must have continuous replicate numbers starting at 1.
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
185
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
186 ::
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
187
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
188 For example, with spectrum files named:
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
189
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
190 - 20130510_EXQ1_IgPa_QC_UPS1_01.mzml
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
191 - 20130510_EXQ1_IgPa_QC_UPS1_02.mzml
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
192 - 20130510_EXQ1_IgPa_QC_UPS2_01.mzml
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
193 - 20130510_EXQ1_IgPa_QC_UPS2_02.mzml
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
194
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
195 The ExperimentalDesign File:
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
196
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
197 FileName Condition Biorep Fraction Techrep
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
198 20130510_EXQ1_IgPa_QC_UPS1_01 S1 1 1 1
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
199 20130510_EXQ1_IgPa_QC_UPS1_02 S1 2 1 1
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
200 20130510_EXQ1_IgPa_QC_UPS2_01 S2 1 1 1
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
201 20130510_EXQ1_IgPa_QC_UPS2_02 S2 2 1 1
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
202
3
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
203
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
204 **Outputs**:
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
205
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
206 - **QuantifiedProteins.tsv** - Lists protein accession and in the future will include gene and organism if the TSV contains it. The intensity is either a) the sum of the 3 most intense peptides or b) (Advanced protein quant) a weighted-average of the intensities of the peptides assigned to the protein. The weights are determined by how well the peptide co-varies with the other peptides assigned to that protein.
3
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
207
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
208 - **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
209
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
210 - **QuantifiedPeptides.tsv** - Peptide intensities are summed by modified sequence; this makes it convenient to compare modified peptidoform intensities across runs.
3
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
211
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
212 - **Log.txt** - Log of the FlashLFQ run.
3
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
213
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
214
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
215 .. _FlashLFQ: https://github.com/smith-chem-wisc/FlashLFQ/wiki
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
216 .. _ExperimentalDesign: https://github.com/smith-chem-wisc/FlashLFQ/wiki/Experimental-Design
3
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
217
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
218 ]]></help>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
219 <citations>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
220 <citation type="doi">10.1021/acs.jproteome.7b00608</citation>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
221 </citations>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
222 </tool>