Mercurial > repos > peterjc > tmhmm_and_signalp
annotate tools/protein_analysis/promoter2.xml @ 33:4fcc441269f5 draft
"This is v0.2.12 with black formating and Python 3 next fix etc"
author | peterjc |
---|---|
date | Thu, 17 Jun 2021 08:33:07 +0000 |
parents | 20da7f48b56f |
children | 7a2e20baacee |
rev | line source |
---|---|
30
6d9d7cdf00fc
v0.2.11 Job splitting fast-fail; RXLR tools supports HMMER2 from BioConda; Capture more version information; misc internal changes
peterjc
parents:
28
diff
changeset
|
1 <tool id="promoter2" name="Promoter 2.0" version="0.0.12"> |
7 | 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> | |
26
20139cb4c844
planemo upload for repository https://github.com/peterjc/pico_galaxy/tools/protein_analysis commit 221d4187992cbb993e02dc3ea0ef0150c7916a4a-dirty
peterjc
parents:
25
diff
changeset
|
6 <requirements> |
20139cb4c844
planemo upload for repository https://github.com/peterjc/pico_galaxy/tools/protein_analysis commit 221d4187992cbb993e02dc3ea0ef0150c7916a4a-dirty
peterjc
parents:
25
diff
changeset
|
7 <requirement type="package">promoter</requirement> |
20139cb4c844
planemo upload for repository https://github.com/peterjc/pico_galaxy/tools/protein_analysis commit 221d4187992cbb993e02dc3ea0ef0150c7916a4a-dirty
peterjc
parents:
25
diff
changeset
|
8 </requirements> |
30
6d9d7cdf00fc
v0.2.11 Job splitting fast-fail; RXLR tools supports HMMER2 from BioConda; Capture more version information; misc internal changes
peterjc
parents:
28
diff
changeset
|
9 <version_command> |
6d9d7cdf00fc
v0.2.11 Job splitting fast-fail; RXLR tools supports HMMER2 from BioConda; Capture more version information; misc internal changes
peterjc
parents:
28
diff
changeset
|
10 python $__tool_directory__/promoter2.py --version |
6d9d7cdf00fc
v0.2.11 Job splitting fast-fail; RXLR tools supports HMMER2 from BioConda; Capture more version information; misc internal changes
peterjc
parents:
28
diff
changeset
|
11 </version_command> |
6d9d7cdf00fc
v0.2.11 Job splitting fast-fail; RXLR tools supports HMMER2 from BioConda; Capture more version information; misc internal changes
peterjc
parents:
28
diff
changeset
|
12 <command detect_errors="aggressive"> |
6d9d7cdf00fc
v0.2.11 Job splitting fast-fail; RXLR tools supports HMMER2 from BioConda; Capture more version information; misc internal changes
peterjc
parents:
28
diff
changeset
|
13 python $__tool_directory__/promoter2.py "\$GALAXY_SLOTS" '$fasta_file' '$tabular_file' |
7 | 14 </command> |
15 <inputs> | |
30
6d9d7cdf00fc
v0.2.11 Job splitting fast-fail; RXLR tools supports HMMER2 from BioConda; Capture more version information; misc internal changes
peterjc
parents:
28
diff
changeset
|
16 <param name="fasta_file" type="data" format="fasta" label="FASTA file of DNA sequences"/> |
7 | 17 </inputs> |
18 <outputs> | |
19 <data name="tabular_file" format="tabular" label="Promoter2 on ${fasta_file.name}" /> | |
20 </outputs> | |
16 | 21 <tests> |
22 <test> | |
23 <param name="fasta_file" value="Adenovirus.fasta" ftype="fasta"/> | |
24 <output name="tabular_file" file="Adenovirus.promoter2.tabular" ftype="tabular"/> | |
25 </test> | |
26 <test> | |
27 <param name="fasta_file" value="empty.fasta" ftype="fasta"/> | |
28 <output name="tabular_file" file="empty_promoter2.tabular" ftype="tabular"/> | |
29 </test> | |
30 </tests> | |
7 | 31 <help> |
30
6d9d7cdf00fc
v0.2.11 Job splitting fast-fail; RXLR tools supports HMMER2 from BioConda; Capture more version information; misc internal changes
peterjc
parents:
28
diff
changeset
|
32 |
7 | 33 **What it does** |
34 | |
35 This calls the Promoter 2.0 tool for prediction of eukaryotic PolII promoter sequences using a Neural Network (NN) model. | |
36 | |
37 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): | |
38 | |
19
4cd848c5590b
Uploaded v0.2.5 preview 3, use $NSLOTS in the PSORT wrappers.
peterjc
parents:
17
diff
changeset
|
39 ====== ================================================== |
4cd848c5590b
Uploaded v0.2.5 preview 3, use $NSLOTS in the PSORT wrappers.
peterjc
parents:
17
diff
changeset
|
40 Column Description |
4cd848c5590b
Uploaded v0.2.5 preview 3, use $NSLOTS in the PSORT wrappers.
peterjc
parents:
17
diff
changeset
|
41 ------ -------------------------------------------------- |
4cd848c5590b
Uploaded v0.2.5 preview 3, use $NSLOTS in the PSORT wrappers.
peterjc
parents:
17
diff
changeset
|
42 1 Sequence identifier (first word of FASTA header) |
4cd848c5590b
Uploaded v0.2.5 preview 3, use $NSLOTS in the PSORT wrappers.
peterjc
parents:
17
diff
changeset
|
43 2 Promoter position, e.g. 600 |
4cd848c5590b
Uploaded v0.2.5 preview 3, use $NSLOTS in the PSORT wrappers.
peterjc
parents:
17
diff
changeset
|
44 3 Promoter score, e.g. 1.063 |
4cd848c5590b
Uploaded v0.2.5 preview 3, use $NSLOTS in the PSORT wrappers.
peterjc
parents:
17
diff
changeset
|
45 4 Promoter likelihood, e.g. Highly likely prediction |
4cd848c5590b
Uploaded v0.2.5 preview 3, use $NSLOTS in the PSORT wrappers.
peterjc
parents:
17
diff
changeset
|
46 ====== ================================================== |
7 | 47 |
48 The scores are classified very simply as follows: | |
49 | |
50 ========= ======================== | |
51 Score Description | |
52 --------- ------------------------ | |
53 below 0.5 ignored | |
54 0.5 - 0.8 Marginal prediction | |
55 0.8 - 1.0 Medium likely prediction | |
30
6d9d7cdf00fc
v0.2.11 Job splitting fast-fail; RXLR tools supports HMMER2 from BioConda; Capture more version information; misc internal changes
peterjc
parents:
28
diff
changeset
|
56 above 1.0 Highly likely prediction |
7 | 57 ========= ======================== |
58 | |
59 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. | |
60 | |
61 **References** | |
62 | |
20
a538e182fab3
Uploaded v0.2.5 preview 4, adding Cock et al. 2003 citation information.
peterjc
parents:
19
diff
changeset
|
63 If you use this Galaxy tool in work leading to a scientific publication please |
a538e182fab3
Uploaded v0.2.5 preview 4, adding Cock et al. 2003 citation information.
peterjc
parents:
19
diff
changeset
|
64 cite the following papers: |
a538e182fab3
Uploaded v0.2.5 preview 4, adding Cock et al. 2003 citation information.
peterjc
parents:
19
diff
changeset
|
65 |
22
90e3d02f8013
Uploaded v0.2.5 preview 6, can use accents in <help> RST
peterjc
parents:
20
diff
changeset
|
66 Peter J.A. Cock, Björn A. Grüning, Konrad Paszkiewicz and Leighton Pritchard (2013). |
20
a538e182fab3
Uploaded v0.2.5 preview 4, adding Cock et al. 2003 citation information.
peterjc
parents:
19
diff
changeset
|
67 Galaxy tools and workflows for sequence analysis with applications |
a538e182fab3
Uploaded v0.2.5 preview 4, adding Cock et al. 2003 citation information.
peterjc
parents:
19
diff
changeset
|
68 in molecular plant pathology. PeerJ 1:e167 |
32 | 69 https://doi.org/10.7717/peerj.167 |
20
a538e182fab3
Uploaded v0.2.5 preview 4, adding Cock et al. 2003 citation information.
peterjc
parents:
19
diff
changeset
|
70 |
22
90e3d02f8013
Uploaded v0.2.5 preview 6, can use accents in <help> RST
peterjc
parents:
20
diff
changeset
|
71 Steen Knudsen (1999). |
7 | 72 Promoter2.0: for the recognition of PolII promoter sequences. |
20
a538e182fab3
Uploaded v0.2.5 preview 4, adding Cock et al. 2003 citation information.
peterjc
parents:
19
diff
changeset
|
73 Bioinformatics, 15:356-61. |
32 | 74 https://doi.org/10.1093/bioinformatics/15.5.356 |
7 | 75 |
20
a538e182fab3
Uploaded v0.2.5 preview 4, adding Cock et al. 2003 citation information.
peterjc
parents:
19
diff
changeset
|
76 See also http://www.cbs.dtu.dk/services/Promoter/output.php |
7 | 77 |
17
af3174637834
Uploaded v0.2.5 preview 1, adding links to Tool Shed entry
peterjc
parents:
16
diff
changeset
|
78 This wrapper is available to install into other Galaxy Instances via the Galaxy |
af3174637834
Uploaded v0.2.5 preview 1, adding links to Tool Shed entry
peterjc
parents:
16
diff
changeset
|
79 Tool Shed at http://toolshed.g2.bx.psu.edu/view/peterjc/tmhmm_and_signalp |
7 | 80 </help> |
25 | 81 <citations> |
82 <citation type="doi">10.7717/peerj.167</citation> | |
83 <citation type="doi">10.1093/bioinformatics/15.5.356</citation> | |
84 </citations> | |
7 | 85 </tool> |