annotate tools/protein_analysis/nlstradamus.xml @ 0:0ad90e5eb390

Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
author peterjc
date Tue, 07 Jun 2011 17:39:58 -0400
parents
children f93ad4882338
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
1 <tool id="nlstradamus" name="NLStradamus" version="0.0.3">
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
2 <description>Find nuclear localization signals (NLSs) in protein sequences</description>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
3 <command>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
4 NLStradamus -i $fasta_file -t $threshold -m $model -a $algorithm -tab > $tabular_file
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
5 </command>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
6 <inputs>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
7 <param name="fasta_file" type="data" format="fasta" label="FASTA file of protein sequences"/>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
8 <param name="model" type="select" display="radio" label="Model">
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
9 <option value="1" selected="True">Two state</option>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
10 <option value="2">Four state</option>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
11 </param>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
12 <param name="algorithm" type="select" display="radio" label="Algorithm">
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
13 <option value="0">Viterbi</option>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
14 <option value="1" selected="True">Posterior with threshold</option>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
15 <option value="2">Both</option>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
16 </param>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
17 <param name="threshold" type="float" label="Posterior theshold" value="0.6">
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
18 <validator type="in_range" min="0" max="1" message="Threshold value should be between 0 and 1."/>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
19 </param>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
20 </inputs>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
21 <outputs>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
22 <data name="tabular_file" format="tabular" label="NLStradamus results" />
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
23 </outputs>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
24 <requirements>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
25 <requirement type="binary">NLStradamus</requirement>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
26 </requirements>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
27 <tests>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
28 </tests>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
29 <help>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
30
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
31 **What it does**
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
32
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
33 This calls the NLStradamus tool for prediction of nuclear localization
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
34 signals (NLSs), which uses a Hidden Markov Model (HMM).
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
35
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
36 The input is a FASTA file of protein sequences, and the output is tabular
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
37 with six columns (one row per NLS):
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
38
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
39 * Sequence identifier
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
40 * Algorithm (posterior or Viterbi)
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
41 * Score (probability between threshold and 1 for posterior algorithm)
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
42 * Start
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
43 * End
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
44 * Sequence of NLS
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
45
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
46 -----
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
47
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
48 **References**
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
49
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
50 A. N. Nguyen Ba, A. Pogoutse, N. Provart, A. M. Moses.
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
51 NLStradamus: a simple Hidden Markov Model for nuclear localization signal prediction.
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
52 BMC Bioinformatics. 2009 Jun 29;10(1):202.
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
53
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
54 http://www.moseslab.csb.utoronto.ca/NLStradamus
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
55
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
56 </help>
0ad90e5eb390 Migrated tool version 0.0.3 from old tool shed archive to new tool shed repository
peterjc
parents:
diff changeset
57 </tool>