comparison tools/protein_analysis/promoter2.xml @ 7:5e62aefb2918 draft

Uploaded v0.1.2 to Test Tool Shed
author peterjc
date Tue, 26 Mar 2013 14:24:56 -0400
parents
children 1d5486a02bc4
comparison
equal deleted inserted replaced
6:39a6e46cdda3 7:5e62aefb2918
1 <tool id="promoter2" name="Promoter 2.0" version="0.0.3">
2 <description>Find eukaryotic PolII promoters in DNA sequences</description>
3 <!-- If job splitting is enabled, break up the query file into parts -->
4 <!-- Using 2000 per chunk so 4 threads each doing 500 is ideal -->
5 <parallelism method="basic" split_inputs="fasta_file" split_mode="to_size" split_size="2000" merge_outputs="tabular_file"></parallelism>
6 <command interpreter="python">
7 promoter2.py "\$NSLOTS" $fasta_file $tabular_file
8 ##Set the number of threads in the runner entry in universe_wsgi.ini
9 ##which (on SGE at least) will set the $NSLOTS environment variable.
10 ##If the environment variable isn't set, get "", and defaults to one.
11 </command>
12 <stdio>
13 <!-- Anything other than zero is an error -->
14 <exit_code range="1:" />
15 <exit_code range=":-1" />
16 </stdio>
17 <inputs>
18 <param name="fasta_file" type="data" format="fasta" label="FASTA file of DNA sequences"/>
19 </inputs>
20 <outputs>
21 <data name="tabular_file" format="tabular" label="Promoter2 on ${fasta_file.name}" />
22 </outputs>
23 <requirements>
24 <requirement type="binary">promoter</requirement>
25 </requirements>
26 <help>
27
28 **What it does**
29
30 This calls the Promoter 2.0 tool for prediction of eukaryotic PolII promoter sequences using a Neural Network (NN) model.
31
32 The input is a FASTA file of nucleotide sequences (e.g. upstream regions of your genes), and the output is tabular with five columns (one row per promoter):
33
34 1. Sequence identifier (first word of FASTA header)
35 2. Promoter position, e.g. 600
36 3. Promoter score, e.g. 1.063
37 4. Promoter likelihood, e.g. Highly likely prediction
38
39 The scores are classified very simply as follows:
40
41 ========= ========================
42 Score Description
43 --------- ------------------------
44 below 0.5 ignored
45 0.5 - 0.8 Marginal prediction
46 0.8 - 1.0 Medium likely prediction
47 above 1.0 Highly likely prediction
48 ========= ========================
49
50 Internally the input FASTA file is divided into parts (to allow multiple processors to be used), and the raw output is reformatted into this tabular layout suitable for downstream analysis within Galaxy.
51
52 **References**
53
54 Knudsen.
55 Promoter2.0: for the recognition of PolII promoter sequences.
56 Bioinformatics, 15:356-61, 1999.
57 http://dx.doi.org/10.1093/bioinformatics/15.5.356
58
59 http://www.cbs.dtu.dk/services/Promoter/output.php
60
61 </help>
62 </tool>