Mercurial > repos > peterjc > effectivet3
annotate tools/effectiveT3/effectiveT3.xml @ 23:69ab4d862db2 draft
v0.0.17 Used cached URL, python style updates
author | peterjc |
---|---|
date | Wed, 01 Feb 2017 09:20:27 -0500 |
parents | f5e52dd0935f |
children | d6976a4c055b |
rev | line source |
---|---|
23 | 1 <tool id="effectiveT3" name="Effective T3" version="0.0.17"> |
2 | 2 <description>Find bacterial effectors in protein sequences</description> |
3
a321504ba2c0
Uploaded v0.0.11 take 2, explicit package requirement
peterjc
parents:
2
diff
changeset
|
3 <requirements> |
a321504ba2c0
Uploaded v0.0.11 take 2, explicit package requirement
peterjc
parents:
2
diff
changeset
|
4 <requirement type="package" version="1.0.1">effectiveT3</requirement> |
a321504ba2c0
Uploaded v0.0.11 take 2, explicit package requirement
peterjc
parents:
2
diff
changeset
|
5 </requirements> |
16
bc93121586ba
planemo upload for https://github.com/peterjc/pico_galaxy/tools/effectiveT3/d3dbd53ff1ef0e33071da5665d1a9ed099230a6f
peterjc
parents:
15
diff
changeset
|
6 <stdio> |
bc93121586ba
planemo upload for https://github.com/peterjc/pico_galaxy/tools/effectiveT3/d3dbd53ff1ef0e33071da5665d1a9ed099230a6f
peterjc
parents:
15
diff
changeset
|
7 <!-- Anything other than zero is an error --> |
bc93121586ba
planemo upload for https://github.com/peterjc/pico_galaxy/tools/effectiveT3/d3dbd53ff1ef0e33071da5665d1a9ed099230a6f
peterjc
parents:
15
diff
changeset
|
8 <exit_code range="1:" /> |
bc93121586ba
planemo upload for https://github.com/peterjc/pico_galaxy/tools/effectiveT3/d3dbd53ff1ef0e33071da5665d1a9ed099230a6f
peterjc
parents:
15
diff
changeset
|
9 <exit_code range=":-1" /> |
bc93121586ba
planemo upload for https://github.com/peterjc/pico_galaxy/tools/effectiveT3/d3dbd53ff1ef0e33071da5665d1a9ed099230a6f
peterjc
parents:
15
diff
changeset
|
10 </stdio> |
2 | 11 <version_command interpreter="python">effectiveT3.py --version</version_command> |
12 <command interpreter="python"> | |
13 effectiveT3.py $module.fields.path | |
14 #if $restrict.type=="cutoff": | |
15 cutoff=$restrict.cutoff | |
16 #else: | |
17 $restrict.type | |
18 #end if | |
19 $fasta_file $tabular_file</command> | |
20 <inputs> | |
21 <param name="fasta_file" type="data" format="fasta" label="FASTA file of protein sequences"/> | |
22 <param name="module" type="select" display="radio" label="Classification module"> | |
23 <options from_file="effectiveT3.loc"> | |
24 <column name="value" index="0"/> | |
25 <column name="name" index="1"/> | |
26 <column name="path" index="2"/> | |
27 </options> | |
28 </param> | |
29 <conditional name="restrict"> | |
30 <param name="type" type="select" label="Cut-off setting"> | |
31 <option value="selective">Selective (threshold set in module)</option> | |
32 <option value="sensitive">Sensitive (threshold set in module)</option> | |
33 <option value="cutoff">User defined cut-off</option> | |
34 </param> | |
35 <when value="selective" /> | |
36 <when value="sensitive" /> | |
37 <when value="cutoff" > | |
38 <param name="cutoff" type="float" min="0" max="1" label="Cut-off" value="" help="Threshold cut-off between 0 and 1" /> | |
39 </when> | |
40 </conditional> | |
41 </inputs> | |
42 <outputs> | |
11 | 43 <data name="tabular_file" format="tabular" label="Effective T3 $module.value_label on ${on_string}" /> |
2 | 44 </outputs> |
45 <tests> | |
46 <test> | |
47 <param name="fasta_file" value="four_human_proteins.fasta" ftype="fasta" /> | |
48 <param name="module" value="animal" /> | |
49 <param name="type" value="selective" /> | |
15
17fbf8b8a554
Uploaded v0.0.13, embed citation, relax test for floating point differences
peterjc
parents:
13
diff
changeset
|
50 <output name="tabular_file" file="four_human_proteins.effectiveT3.tabular" ftype="tabular" lines_diff="2"/> |
2 | 51 </test> |
52 <test> | |
18 | 53 <param name="fasta_file" value="four_human_proteins.fasta" ftype="fasta" /> |
54 <param name="module" value="std_2_0_2" /> | |
55 <param name="type" value="cutoff" /> | |
20 | 56 <param name="cutoff" value="0.8" /> |
18 | 57 <output name="tabular_file" file="four_human_proteins.effectiveT3_std2.tabular" ftype="tabular" /> |
58 </test> | |
59 <test> | |
2 | 60 <param name="fasta_file" value="empty.fasta" ftype="fasta" /> |
61 <param name="module" value="plant" /> | |
15
17fbf8b8a554
Uploaded v0.0.13, embed citation, relax test for floating point differences
peterjc
parents:
13
diff
changeset
|
62 <param name="type" value="sensitive" /> |
2 | 63 <output name="tabular_file" file="empty_effectiveT3.tabular" ftype="tabular" /> |
64 </test> | |
65 </tests> | |
66 <help> | |
67 | |
68 **What it does** | |
69 | |
70 This calls the command line Effective T3 v1.0.1 tool for prediction of bacterial effector proteins. | |
71 | |
72 The input is a FASTA file of protein sequences, and the output is tabular with four columns (one row per protein): | |
73 | |
74 ====== ============================================================================== | |
75 Column Description | |
76 ------ ------------------------------------------------------------------------------ | |
77 1 Sequence identifier | |
78 2 Sequence description (from the FASTA file) | |
79 3 Score (between 0 and 1, or negative for an error such as a very short peptide) | |
80 4 Predicted effector (true/false) | |
81 ====== ============================================================================== | |
82 | |
83 | |
84 **References** | |
85 | |
12
914f7ae776fc
Uploaded v0.0.12a, MIT licence, RST README, citation information
peterjc
parents:
11
diff
changeset
|
86 If you use this Galaxy tool in work leading to a scientific publication please |
914f7ae776fc
Uploaded v0.0.12a, MIT licence, RST README, citation information
peterjc
parents:
11
diff
changeset
|
87 cite the following papers: |
914f7ae776fc
Uploaded v0.0.12a, MIT licence, RST README, citation information
peterjc
parents:
11
diff
changeset
|
88 |
13 | 89 Peter J.A. Cock, Björn A. Grüning, Konrad Paszkiewicz and Leighton Pritchard (2013). |
12
914f7ae776fc
Uploaded v0.0.12a, MIT licence, RST README, citation information
peterjc
parents:
11
diff
changeset
|
90 Galaxy tools and workflows for sequence analysis with applications |
914f7ae776fc
Uploaded v0.0.12a, MIT licence, RST README, citation information
peterjc
parents:
11
diff
changeset
|
91 in molecular plant pathology. PeerJ 1:e167 |
914f7ae776fc
Uploaded v0.0.12a, MIT licence, RST README, citation information
peterjc
parents:
11
diff
changeset
|
92 http://dx.doi.org/10.7717/peerj.167 |
914f7ae776fc
Uploaded v0.0.12a, MIT licence, RST README, citation information
peterjc
parents:
11
diff
changeset
|
93 |
13 | 94 Jehl, Arnold and Rattei (2011). |
2 | 95 Effective - a database of predicted secreted bacterial proteins |
13 | 96 Nucleic Acids Research, 39(Database issue), D591-5. |
2 | 97 http://dx.doi.org/10.1093/nar/gkq1154 |
98 | |
13 | 99 Arnold, Brandmaier, Kleine, Tischler, Heinz, Behrens, Niinikoski, Mewes, Horn and Rattei (2009). |
2 | 100 Sequence-based prediction of type III secreted proteins. |
13 | 101 PLoS Pathog. 5(4):e1000376. |
2 | 102 http://dx.doi.org/10.1371/journal.ppat.1000376 |
103 | |
12
914f7ae776fc
Uploaded v0.0.12a, MIT licence, RST README, citation information
peterjc
parents:
11
diff
changeset
|
104 See also http://effectors.org/ |
2 | 105 |
4
0c21abf1073b
Uploaded v0.0.11 take 3, adding links to Tool Shed entry
peterjc
parents:
3
diff
changeset
|
106 This wrapper is available to install into other Galaxy Instances via the Galaxy |
0c21abf1073b
Uploaded v0.0.11 take 3, adding links to Tool Shed entry
peterjc
parents:
3
diff
changeset
|
107 Tool Shed at http://toolshed.g2.bx.psu.edu/view/peterjc/effectivet3 |
2 | 108 </help> |
15
17fbf8b8a554
Uploaded v0.0.13, embed citation, relax test for floating point differences
peterjc
parents:
13
diff
changeset
|
109 <citations> |
17fbf8b8a554
Uploaded v0.0.13, embed citation, relax test for floating point differences
peterjc
parents:
13
diff
changeset
|
110 <citation type="doi">10.7717/peerj.167</citation> |
17fbf8b8a554
Uploaded v0.0.13, embed citation, relax test for floating point differences
peterjc
parents:
13
diff
changeset
|
111 <citation type="doi">10.1093/nar/gkq1154</citation> |
17fbf8b8a554
Uploaded v0.0.13, embed citation, relax test for floating point differences
peterjc
parents:
13
diff
changeset
|
112 <citation type="doi">10.1371/journal.ppat.1000376</citation> |
17fbf8b8a554
Uploaded v0.0.13, embed citation, relax test for floating point differences
peterjc
parents:
13
diff
changeset
|
113 </citations> |
2 | 114 </tool> |