annotate tools/predictnls/predictnls.xml @ 3:ae44396108f5 draft default tip

v0.0.8 internal changes
author peterjc
date Wed, 05 Aug 2015 12:25:47 -0400
parents 9f2088ca5f6a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
ae44396108f5 v0.0.8 internal changes
peterjc
parents: 2
diff changeset
1 <tool id="predictnls" name="PredictNLS" version="0.0.8">
1
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
2 <description>Find nuclear localization signals (NLSs) in protein sequences</description>
3
ae44396108f5 v0.0.8 internal changes
peterjc
parents: 2
diff changeset
3 <requirements>
ae44396108f5 v0.0.8 internal changes
peterjc
parents: 2
diff changeset
4 <requirement type="binary">predictnls</requirement>
ae44396108f5 v0.0.8 internal changes
peterjc
parents: 2
diff changeset
5 </requirements>
1
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
6 <stdio>
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
7 <!-- Assume anything other than zero is an error -->
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
8 <exit_code range="1:" />
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
9 <exit_code range=":-1" />
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
10 </stdio>
3
ae44396108f5 v0.0.8 internal changes
peterjc
parents: 2
diff changeset
11 <command interpreter="python">
ae44396108f5 v0.0.8 internal changes
peterjc
parents: 2
diff changeset
12 predictnls.py $fasta_file $tabular_file
ae44396108f5 v0.0.8 internal changes
peterjc
parents: 2
diff changeset
13 </command>
1
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
14 <inputs>
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
15 <param name="fasta_file" type="data" format="fasta" label="FASTA file of protein sequences"/>
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
16 </inputs>
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
17 <outputs>
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
18 <data name="tabular_file" format="tabular" label="predictNLS results" />
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
19 </outputs>
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
20 <tests>
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
21 <test>
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
22 <param name="fasta_file" value="four_human_proteins.fasta"/>
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
23 <output name="tabular_file" file="four_human_proteins.predictnls.tabular"/>
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
24 </test>
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
25 </tests>
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
26 <help>
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
27
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
28 **What it does**
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
29
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
30 This calls a Python re-implementation of the PredictNLS tool for prediction of
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
31 nuclear localization signals (NLSs), which works by looking for matches to
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
32 a known set of patterns (described using regular expressions).
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
33
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
34 The input is a FASTA file of protein sequences, and the output is tabular with
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
35 these columns (multiple rows per protein):
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
36
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
37 ====== ==========================================================================
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
38 Column Description
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
39 ------ --------------------------------------------------------------------------
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
40 1 Sequence identifier
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
41 2 Start of NLS
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
42 3 NLS sequence
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
43 4 NLS pattern (regular expression)
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
44 5 Number of reference proteins with this NLS
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
45 6 Percentage of reference proteins with this NLS which are nuclear localized
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
46 7 Comma separated list of reference proteins
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
47 8 Comma separated list of reference proteins' localizations
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
48 ====== ==========================================================================
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
49
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
50 If a sequence has no predicted NLS, then there is no line in the output file
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
51 for it. This is a simplification of the text rich output from the command line
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
52 tool, to give a tabular file suitable for use within Galaxy.
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
53
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
54 Information about potential DNA binding (shown in the original predictnls
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
55 tool) is not given.
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
56
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
57 **Localizations**
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
58
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
59 The following abbreviations are used (derived from SWISS-PROT):
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
60
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
61 ==== =======================
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
62 Abbr Localization
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
63 ---- -----------------------
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
64 cyt Cytoplasm
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
65 pla Chloroplast
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
66 ret Eendoplasmic reticululm
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
67 ext Extracellular
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
68 gol Golgi
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
69 lys Lysosomal
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
70 mit Mitochondria
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
71 nuc Nuclear
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
72 oxi Peroxisom
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
73 vac Vacuolar
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
74 rip Periplasmic
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
75 ==== =======================
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
76
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
77 **References**
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
78
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
79 If you use this Galaxy tool in work leading to a scientific publication please
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
80 cite the following papers:
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
81
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
82 Peter J.A. Cock, Björn A. Grüning, Konrad Paszkiewicz and Leighton Pritchard (2013).
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
83 Galaxy tools and workflows for sequence analysis with applications
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
84 in molecular plant pathology. PeerJ 1:e167
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
85 http://dx.doi.org/10.7717/peerj.167
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
86
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
87 Murat Cokol, Rajesh Nair, and Burkhard Rost (2000).
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
88 Finding nuclear localization signals.
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
89 EMBO reports 1(5), 411–415
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
90 http://dx.doi.org/10.1093/embo-reports/kvd092
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
91
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
92 See also http://rostlab.org
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
93
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
94 This wrapper is available to install into other Galaxy Instances via the Galaxy
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
95 Tool Shed at http://toolshed.g2.bx.psu.edu/view/peterjc/predictnls
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
96 </help>
2
9f2088ca5f6a Uploaded v0.0.7 with embedded citations
peterjc
parents: 1
diff changeset
97 <citations>
9f2088ca5f6a Uploaded v0.0.7 with embedded citations
peterjc
parents: 1
diff changeset
98 <citation type="doi">10.7717/peerj.167</citation>
9f2088ca5f6a Uploaded v0.0.7 with embedded citations
peterjc
parents: 1
diff changeset
99 <citation type="doi">10.1093/embo-reports/kvd092</citation>
9f2088ca5f6a Uploaded v0.0.7 with embedded citations
peterjc
parents: 1
diff changeset
100 </citations>
1
f35b2f3ca139 Uploaded v0.0.6, new README file, citation information
peterjc
parents:
diff changeset
101 </tool>