1
|
1 <tool id="clinod" name="Nucleolar localization sequence Detector (NoD)" version="0.0.4">
|
0
|
2 <description>Find nucleolar localization signals (NoLSs) in protein sequences</description>
|
|
3 <command>
|
|
4 java -jar /opt/clinod/clinod-1.3.jar -in="$fasta_file" -out="$tabular_file" -t=8 -f=MEDIUM_TAB -nonols -clean_sequence
|
|
5 ##I want the number of threads to be a Galaxy config option...
|
1
|
6 ##TODO - Make the -clean_sequence argument a parameter?
|
0
|
7 </command>
|
1
|
8 <stdio>
|
|
9 <!-- Assume anything other than zero is an error -->
|
|
10 <exit_code range="1:" />
|
|
11 <exit_code range=":-1" />
|
|
12 </stdio>
|
0
|
13 <inputs>
|
|
14 <param name="fasta_file" type="data" format="fasta" label="FASTA file of protein sequences"/>
|
|
15 </inputs>
|
|
16 <outputs>
|
|
17 <data name="tabular_file" format="tabular" label="NoD results" />
|
|
18 </outputs>
|
|
19 <requirements>
|
|
20 <requirement type="binary">java</requirement>
|
|
21 </requirements>
|
1
|
22 <tests>
|
|
23 <test>
|
|
24 <param name="fasta_file" value="four_human_proteins.fasta" ftype="fasta" />
|
|
25 <output name="tabular_file" file="four_human_proteins.clinod-1.3.tabular" ftype="tabular" />
|
|
26 </test>
|
|
27 </tests>
|
0
|
28 <help>
|
1
|
29
|
0
|
30 **What it does**
|
|
31
|
|
32 This calls the command line version of the NoD tool from the Barton Group for
|
|
33 prediction of nucleolar localization sequences (NoLSs). The NoD tool uses an
|
|
34 artificial neural network trained on a set of human NoLSs.
|
|
35
|
|
36 The nucleolus is a sub-compartmentof the nucleus, thus an NoLS can be regarded
|
|
37 as a special nuclear localization sequence (NLS).
|
|
38
|
|
39 The input is a FASTA file of protein sequences, and the output is tabular with
|
|
40 four columns (multiple rows per protein):
|
|
41
|
1
|
42 ====== ===================
|
|
43 Column Description
|
|
44 ------ -------------------
|
|
45 1 Sequence identifier
|
|
46 2 Start of NoLS
|
|
47 3 End of NoLS
|
|
48 4 NoLS sequence
|
|
49 ====== ===================
|
0
|
50
|
|
51 If a sequence has no predicted NoLS, then there is no line in the output file
|
|
52 for it.
|
|
53
|
1
|
54
|
0
|
55 **References**
|
|
56
|
|
57 M. S. Scott, F. M. Boisvert, M. D. McDowall, A. I. Lamond and G. J. Barton.
|
|
58 Characterization and prediction of protein nucleolar localization sequences.
|
|
59 Nucleic Acids Research 38(21), 7388-7399, 2010.
|
|
60 http://dx.doi.org/10.1093/nar/gkq653
|
|
61
|
|
62 M. S. Scott, P. V. Troshin and G. J. Barton.
|
|
63 NoD: a Nucleolar localization sequence detector for eukaryotic and viral proteins.
|
1
|
64 BMC Bioinformatics, 12:317, 2011.
|
|
65 http://dx.doi.org/10.1186/1471-2105-12-317
|
0
|
66
|
|
67 http://www.compbio.dundee.ac.uk/www-nod/
|
|
68
|
|
69 </help>
|
|
70 </tool>
|