annotate flashlfq.xml @ 15:dd51e0448fdc draft default tip

"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a72ed1b1e61e0f948dc36b220d2746dc6f06bccf"
author galaxyp
date Tue, 07 Apr 2020 07:21:02 +0000
parents fddbd49da3cf
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15
dd51e0448fdc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a72ed1b1e61e0f948dc36b220d2746dc6f06bccf"
galaxyp
parents: 14
diff changeset
1 <tool id="flashlfq" name="FlashLFQ" version="1.0.3.1">
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>
14
fddbd49da3cf "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit becdef66cd300f7fab7bb04e62632230e8709f09"
galaxyp
parents: 13
diff changeset
4 <requirement type="package" version="1.0.3">flashlfq</requirement>
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
5 </requirements>
15
dd51e0448fdc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a72ed1b1e61e0f948dc36b220d2746dc6f06bccf"
galaxyp
parents: 14
diff changeset
6 <stdio>
dd51e0448fdc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a72ed1b1e61e0f948dc36b220d2746dc6f06bccf"
galaxyp
parents: 14
diff changeset
7 <regex match="Problem opening .mzML file" level="fatal" source="stdout" description="Proplem opening mzML file." />
dd51e0448fdc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a72ed1b1e61e0f948dc36b220d2746dc6f06bccf"
galaxyp
parents: 14
diff changeset
8 </stdio>
dd51e0448fdc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a72ed1b1e61e0f948dc36b220d2746dc6f06bccf"
galaxyp
parents: 14
diff changeset
9 <command detect_errors="exit_code"><![CDATA[
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
10 #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
11 #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
12 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
13 mkdir spectrum_dir &&
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
14 #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
15 #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
16 #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
17 #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
18 #end if
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
19 #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
20 ln -s '${peak_list}' 'spectrum_dir/${input_name}' &&
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
21 #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
22 #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
23 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
24 #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
25 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
26 FlashLFQ
279fbc8ad992 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a9220a40d89c0bd250002d876d4b2f751d19f3de
galaxyp
parents: 5
diff changeset
27 --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
28 --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
29 --ppm $ppm
279fbc8ad992 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a9220a40d89c0bd250002d876d4b2f751d19f3de
galaxyp
parents: 5
diff changeset
30 --iso $iso
279fbc8ad992 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a9220a40d89c0bd250002d876d4b2f751d19f3de
galaxyp
parents: 5
diff changeset
31 --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
32 $int
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
33 $chg
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
34 $mbr
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
35 #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
36 $experiment.nor
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
37 #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
38 --bay true
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
39 --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
40 #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
41 --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
42 #end if
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
43 $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
44 $experiment.bayesian.rmc
13
1c5ed8c13227 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 5b42feb3b752fdb22723d6bcedd301b6b1dd8dd3"
galaxyp
parents: 12
diff changeset
45 --mcm $experiment.bayesian.mcm
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
46 #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
47 --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
48 #end if
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
49 #end if
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
50 #end if
15
dd51e0448fdc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit a72ed1b1e61e0f948dc36b220d2746dc6f06bccf"
galaxyp
parents: 14
diff changeset
51 --out out | tee logfile.txt
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
52 ]]></command>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
53 <inputs>
10
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="--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
55 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
56 <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
57 <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
58 <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
59 <param argument="--nis" type="integer" value="2" min="2" max="30" label="number of isotopes required to be observed"/>
13
1c5ed8c13227 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 5b42feb3b752fdb22723d6bcedd301b6b1dd8dd3"
galaxyp
parents: 12
diff changeset
60 <param argument="--int" type="boolean" truevalue="--int true" falsevalue="" checked="false"
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
61 label="integrate peak areas (not recommended)"/>
13
1c5ed8c13227 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 5b42feb3b752fdb22723d6bcedd301b6b1dd8dd3"
galaxyp
parents: 12
diff changeset
62 <param argument="--chg" type="boolean" truevalue="--chg true" falsevalue="" checked="false"
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
63 label="use only precursor charge state"/>
13
1c5ed8c13227 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 5b42feb3b752fdb22723d6bcedd301b6b1dd8dd3"
galaxyp
parents: 12
diff changeset
64 <param argument="--mbr" type="boolean" truevalue="--mbr true" falsevalue="" checked="false"
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
65 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
66 <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
67 <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
68 <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
69 <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
70 <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
71 </param>
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
72 <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
73 <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
74 <param name="experimental_design" type="data" format="tabular" label="ExperimentalDesign.tsv"/>
13
1c5ed8c13227 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 5b42feb3b752fdb22723d6bcedd301b6b1dd8dd3"
galaxyp
parents: 12
diff changeset
75 <param argument="--nor" type="boolean" truevalue="--nor true" falsevalue="" checked="true"
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
76 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
77 <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
78 <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
79 <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
80 <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
81 </param>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
82 <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
83 <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
84 <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
85 <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
86 <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
87 <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
88 <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
89 <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
90 <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
91 </options>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
92 </param>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
93 <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
94 help="Leave blank to detemine emperically from data."/>
13
1c5ed8c13227 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 5b42feb3b752fdb22723d6bcedd301b6b1dd8dd3"
galaxyp
parents: 12
diff changeset
95 <param argument="--sha" type="boolean" truevalue="--sha true" falsevalue="" checked="false"
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
96 label="use shared peptides for protein quantification"/>
13
1c5ed8c13227 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 5b42feb3b752fdb22723d6bcedd301b6b1dd8dd3"
galaxyp
parents: 12
diff changeset
97 <param argument="--rmc" type="boolean" truevalue="--rmc true" falsevalue="" checked="false"
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
98 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
99 <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
100 <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
101 </when>
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
102 </conditional>
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
103 </when>
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
104 </conditional>
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
105 </inputs>
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
106
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
107 <outputs>
10
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="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
109 <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
110 <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
111 <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
112 <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
113 <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
114 <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
115 </data>
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
116 </outputs>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
117 <tests>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
118 <test>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
119 <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
120 <param name="peak_lists" value="sliced-mzml.mzML" ftype="mzml"/>
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
121 <param name="ppm" value="12"/>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
122 <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
123 <output name="quantifiedPeaks">
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
124 <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
125 <has_text text="EGFQVADGPLYR" />
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
126 </assert_contents>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
127 </output>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
128 </test>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
129 </tests>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
130 <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
131 **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
132 https://github.com/smith-chem-wisc/FlashLFQ/wiki
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
133
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
134
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
135 **Accepted command-line arguments:**
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
136
2
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
137 ::
d042eabcd6ec Uploaded
galaxyp
parents: 1
diff changeset
138
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
139 --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
140 --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
141 --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
142 --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
143 --nor [bool|normalize intensity results]
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
144 --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
145 --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
146 --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
147 --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
148 --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
149
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
150 **Advanced settings:**
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
151
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
152 ::
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
153
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
154 --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
155 --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
156 --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
157 --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
158 --chg [bool|use only precursor charge state]
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
159 --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
160 --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
161 --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
162 --rns [int|random seed for the Bayesian protein fold-change analysis]
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
163
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
164
3
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
165 **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
166
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
167 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
168
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
169 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
170
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
171 - **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
172 - **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
173 - **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
174 - **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
175 - **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
176 - **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
177 - **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
178
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
179 **ExperimentalDesign File**
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
180
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
181 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
182
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
183 - 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
184 - 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
185 - 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
186 - 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
187 - 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
188
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
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
191 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
192
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_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
194 - 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
195 - 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
196 - 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
197
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
198 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
199
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
200 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
201 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
202 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
203 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
204 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
205
3
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
206
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
207 **Outputs**:
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
208
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
209 - **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
210
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
211 - **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
212
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
213 - **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
214
9
944d155c01c9 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 047addefbac7468a92ba4fc04899bd5136c58ea4
galaxyp
parents: 8
diff changeset
215 - **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
216
41c0c75301b3 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 59fca11aabb90cd875d93e7da8791a49e1e2c01a-dirty
galaxyp
parents: 2
diff changeset
217
10
a21452a5c952 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq commit 7f1c24d169a610aa910ca717fd698fe782b42699"
galaxyp
parents: 9
diff changeset
218 .. _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
219 .. _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
220
0
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
221 ]]></help>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
222 <citations>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
223 <citation type="doi">10.1021/acs.jproteome.7b00608</citation>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
224 </citations>
8489cc343cde Uploaded
galaxyp
parents:
diff changeset
225 </tool>