annotate BlibBuild.xml @ 0:5a4801b7d106 draft default tip

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
author galaxyp
date Tue, 08 May 2018 14:16:45 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
1 <tool id="BlibBuild" name="BlibBuild" version="@VERSION@.0">
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
2 <description>create a library of peptide MS/MS spectra</description>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
3 <macros>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
4 <import>macros.xml</import>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
5 </macros>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
6 <expand macro="requirements" />
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
7 <command detect_errors="exit_code"><![CDATA[
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
8 ## Need to symlink to data using name with extension that recognizes
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
9 #import re
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
10 #set $exts = {'mgf':'MGF', 'mzml':'mzML', 'mzxml':'mzXML', 'ms2': 'ms2', 'wiff':'wiff'}
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
11 #for $pl in $peak_lists:
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
12 #set $dt = $pl.extension
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
13 #set $bn = $pl.display_name.split('/')[-1]
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
14 #set $ext = $exts[$dt.lower()]
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
15 #set $input_name = $re.sub(str(r'(?i)[.]' + $dt),str('.' + $ext), str($bn))
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
16 ln -s -f '${pl}' '${input_name}' &&
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
17 #set $encoded_id = $__app__.security.encode_id($pl.id)
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
18 echo "Spectrum:${pl.display_name}(API:${encoded_id}) " &&
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
19 #end for
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
20 #set $ext = $identification.extension
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
21 #set $ident = $identification.display_name.split('/')[-1].replace('.' + str($identification.extension), "") + "." + $ext
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
22 ln -s -f '$identification' '$ident' &&
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
23 #if $existing_blib:
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
24 cp '$existing_blib' spectra.blib &&
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
25 #end if
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
26 BlibBuild
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
27 #if str($cutoff):
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
28 -c $cutoff
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
29 #end if
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
30 #if $authority:
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
31 -a $authority
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
32 #end if
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
33 #if $library_id:
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
34 -i $library_id
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
35 #end if
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
36 '$ident' spectra.blib
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
37 && cp spectra.blib $blib
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
38 #if $convert_to_ms2:
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
39 && BlibToMs2 -f '$ms2' spectra.blib
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
40 #end if
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
41 ]]></command>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
42 <inputs>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
43 <param name="identification" type="data" format="mzid" label="Peptide Identification Results" >
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
44 <help>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
45 </help>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
46 </param>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
47 <param name="peak_lists" type="data" format="mzml,mzxml,mgf" multiple="true" optional="true"
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
48 label="Spectrum Datasets used in the peptide identification"/>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
49 <param name="existing_blib" type="data" format="sqlite" label="Add to existing Blib" optional="true"/>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
50 <param name="cutoff" type="float" value="" min="0.0" max="1.0" optional="true"
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
51 label="Specify the cutoff score (0-1)"
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
52 help=" below which peptide-spectrum matches will be excluded from the library."/>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
53 <param name="authority" type="text" value="" optional="true" label="LSID authority. Default proteome.gs.washington.edu"/>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
54 <param name="library_id" type="text" value="" optional="true" label="LSID library ID. Default uses file name"/>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
55 <param name="convert_to_ms2" type="boolean" truevalue="yes" falsevalue="no" label="Output a MS2"/>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
56 </inputs>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
57 <outputs>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
58 <data name="blib" format="sqlite" label="Blib from ${on_string}" from_work_dir="spectra.blib" />
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
59 <data name="ms2" format="ms2" label="MS2 from ${on_string}" from_work_dir="spectra.ms2" >
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
60 <filter>convert_to_ms2 == True</filter>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
61 </data>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
62 </outputs>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
63 <tests>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
64 <test>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
65 <param name="identification" ftype="mzid" value="msgf-test.mzid"/>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
66 <param name="peak_lists" ftype="mzml" value="msgf-test.mzML"/>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
67 <param name="convert_to_ms2" value="True"/>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
68 <output name="ms2">
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
69 <assert_contents>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
70 <has_text_matching expression="D\tseq\tFKWNGTDTNSAAEK" />
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
71 <has_text_matching expression="D\tmodified seq\tFKWNGTDTNSAAEK" />
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
72 </assert_contents>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
73 </output>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
74 </test>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
75 </tests>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
76 <help><![CDATA[
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
77 BiblioSpec_ is a suite of software tools for creating and searching MS/MS peptide spectrum libraries.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
78
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
79 BlibBuild_ creates a library of peptide MS/MS spectra from a variety of different database search results.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
80
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
81 ::
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
82
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
83 Usage: BlibBuild [options] <*.blib|*.pep.xml|*.pep.XML|*.pepXML|*.sqt|*.perc.xml|*.dat|*.xtan.xml|*.idpXML|*.group.xml|*.pride.xml|*.msf|*.pdResult|*.mzid|*msms.txt|*final_fragment.csv|*.proxl.xml|*.ssl|*.mlb|*.tsv|*.osw>+ <library_name>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
84 -o Overwrite existing library. Default append.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
85 -S <filename> Read from file as though it were stdin.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
86 -s Result file names from stdin. e.g. ls *sqt | BlibBuild -s new.blib.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
87 -u Ignore peptides except those with the unmodified sequences from stdin.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
88 -U Ignore peptides except those with the modified sequences from stdin.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
89 -H Use more than one decimal place when describing mass modifications.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
90 -C <file size> Minimum file size required to use caching for .dat files. Specifiy units as B,K,G or M. Default 800M.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
91 -c <cutoff> Score threshold (0-1) for PSMs to be included in library. Higher threshold is more exclusive.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
92 -v <level> Level of output to stderr (silent, error, status, warn). Default status.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
93 -L Write status and warning messages to log file.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
94 -m <size> SQLite memory cache size in Megs. Default 250M.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
95 -l <level> ZLib compression level (0-?). Default 3.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
96 -i <library_id> LSID library ID. Default uses file name.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
97 -a <authority> LSID authority. Default proteome.gs.washington.edu.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
98 -x <filename> Specify the path of XML modifications file for parsing MaxQuant files.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
99 -P <float> Specify pusher interval for Waters final_fragment.csv files.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
100 -d [<filename>] Document the .blib format by writing SQLite commands to a file, or stdout if no filename is given.
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
101
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
102
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
103 .. _BlibBuild: https://skyline.ms/wiki/home/software/BiblioSpec/page.view?name=BlibBuild
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
104 .. _BiblioSpec: https://skyline.ms/project/home/software/BiblioSpec/begin.view?
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
105 ]]></help>
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
106 <expand macro="citations" />
5a4801b7d106 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff changeset
107 </tool>