Mercurial > repos > galaxyp > bibliospec
annotate BlibSearch.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 |
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="BlibSearch" name="BlibSearch" 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>search a spectrum library for matches to query 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 #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
|
9 #set $ext = $exts[$spectrum_file.extension.lower()] |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
10 #set $spectrum_name = $spectrum_file.display_name.split('/')[-1].replace($spectrum_file.extension, "") + "." + $ext |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
11 ln -s -f '${spectrum_file}' '${spectrum_name}' && |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
12 #set $blib_name = $blib.display_name.split('/')[-1].replace($blib.extension, "") + ".blib" |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
13 ln -s -f '$blib' '$blib_name' && |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
14 BlibSearch |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
15 --clear-precursor $clear_precursor |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
16 --topPeaksForSearch $topPeaksForSearch |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
17 --mz-window $mz_window |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
18 --min-peaks $min_peaks |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
19 --low-charge $low_charge |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
20 --high-charge $high_charge |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
21 --report-matches $report_matches |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
22 $preserve_order |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
23 ## --psm-result-file '$psms' |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
24 --report-file temp.report |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
25 '$spectrum_name' '$blib_name' |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
26 && grep -v '^$' temp.report > '$report' |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
27 ]]></command> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
28 <inputs> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
29 <param name="spectrum_file" type="data" format="mzml,mzxml,mgf,ms2" label="Spectrum file to search"/> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
30 <param name="blib" type="data" format="sqlite" label="Filtered Blib"/> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
31 <param name="clear_precursor" type="boolean" value="true" label="Remove the peaks in a X m/z window around the precursor from the query and library spectrum."/> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
32 <param name="topPeaksForSearch" type="integer" value="100" label="Use ARG of the highest intensity peaks."/> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
33 <param name="mz_window" type="float" value="3" label="Compare query to library spectra with precursor m/z +/- ARG."/> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
34 <param name="min_peaks" type="integer" value="20" label="Search only spectra with charge no less than ARG."/> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
35 <param name="low_charge" type="integer" value="1" label="Search only spectra with charge no less than ARG."/> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
36 <param name="high_charge" type="integer" value="5" label="Search only spectra with charge no higher than ARG."/> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
37 <param name="report_matches" type="integer" value="5" label="Return ARG of the best matches for each query. Use -1 to report all."/> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
38 <param name="preserve_order" type="boolean" truevalue="--preserve-order" falsevalue="" checked="false" |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
39 label="Search spectra in the order they appear in the file." |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
40 help="Default to search as sorted by precursor m/z."/> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
41 </inputs> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
42 <outputs> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
43 <data name="report" format="tabular" label="${spectrum_file.name}.report"> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
44 <actions> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
45 <action name="comment_lines" type="metadata" default="13" /> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
46 <action name="column_names" type="metadata" default="Query,LibId,LibSpec,rank,dotp,query-mz,query-z,lib-mz,lib-z,copies,candidates,sequence,TIC-raw,bp-mz-raw,bp-raw,lbp-mz-raw,num-peaks,matched-ions" /> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
47 </actions> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
48 </data> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
49 <!-- |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
50 <data name="psms" format="tabular" label="${spectrum_file.name}.psms"/> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
51 --> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
52 </outputs> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
53 <tests> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
54 <test> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
55 <param name="spectrum_file" 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
|
56 <param name="blib" ftype="sqlite" value="msgf_filterd.blib"/> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
57 <output name="report"> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
58 <assert_contents> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
59 <has_text text="LibSpec" /> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
60 <has_text text="VIYTTNAVEAVHRQFRKLTK" /> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
61 </assert_contents> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
62 </output> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
63 </test> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
64 </tests> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
65 <help><![CDATA[ |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
66 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
|
67 |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
68 BlibSearch_ 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
|
69 |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
70 :: |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
71 |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
72 Usage: BlibSearch [options] <spectrum-file> <library>[+] |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
73 |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
74 Options: |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
75 -c [ --clear-precursor ] arg (=1) Remove the peaks in a X m/z window around |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
76 the precursor from the query and library |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
77 spectrum. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
78 --topPeaksForSearch arg (=100) Use ARG of the highest intensity peaks. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
79 -w [ --mz-window ] arg (=3) Compare query to library spectra with |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
80 precursor m/z +/- ARG. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
81 -n [ --min-peaks ] arg (=20) Search only spectra with charge no less |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
82 than ARG. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
83 -L [ --low-charge ] arg (=1) Search only spectra with charge no less |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
84 than ARG. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
85 -H [ --high-charge ] arg (=5) Search only spectra with charge no higher |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
86 than ARG. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
87 -m [ --report-matches ] arg (=5) Return ARG of the best matches for each |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
88 query. Use -1 to report all. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
89 --psm-result-file arg Return results in a .psm file named ARG. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
90 -R [ --report-file ] arg Return results in report file named ARG. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
91 Default is <spectrum file name>.report. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
92 --preserve-order Search spectra in the order they appear in |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
93 the file. Default to search as sorted by |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
94 precursor m/z. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
95 -p [ --parameter-file ] arg File containing search parameters. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
96 Command line values override file values. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
97 -v [ --verbosity ] arg (=status) Control the level of output to stderr. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
98 (silent, error, status, warn, debug, |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
99 detail, all) Default status. |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
100 -h [ --help ] Print help message. |
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 .. _BlibSearch: https://skyline.ms/wiki/home/software/BiblioSpec/page.view?name=BlibSearch |
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> |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
108 |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
109 |
5a4801b7d106
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bibliospec commit 68cd288246e3678dc92a179f1f022d30c0f11ce7
galaxyp
parents:
diff
changeset
|
110 |