Mercurial > repos > peterjc > effectivet3
annotate tools/effectiveT3/effectiveT3.xml @ 3:a321504ba2c0 draft
Uploaded v0.0.11 take 2, explicit package requirement
| author | peterjc |
|---|---|
| date | Tue, 30 Apr 2013 10:38:55 -0400 |
| parents | 66e9d4c44ca2 |
| children | 0c21abf1073b |
| rev | line source |
|---|---|
| 2 | 1 <tool id="effectiveT3" name="Effective T3" version="0.0.11"> |
| 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> |
| 2 | 6 <version_command interpreter="python">effectiveT3.py --version</version_command> |
| 7 <command interpreter="python"> | |
| 8 effectiveT3.py $module.fields.path | |
| 9 #if $restrict.type=="cutoff": | |
| 10 cutoff=$restrict.cutoff | |
| 11 #else: | |
| 12 $restrict.type | |
| 13 #end if | |
| 14 $fasta_file $tabular_file</command> | |
| 15 <stdio> | |
| 16 <!-- Anything other than zero is an error --> | |
| 17 <exit_code range="1:" /> | |
| 18 <exit_code range=":-1" /> | |
| 19 </stdio> | |
| 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> | |
| 43 <data name="tabular_file" format="tabular" label="$module.value_label results" /> | |
| 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" /> | |
| 50 <output name="tabular_file" file="four_human_proteins.effectiveT3.tabular" ftype="tabular" /> | |
| 51 </test> | |
| 52 <test> | |
| 53 <param name="fasta_file" value="empty.fasta" ftype="fasta" /> | |
| 54 <param name="module" value="plant" /> | |
| 55 <param name="type" value="sensistive" /> | |
| 56 <output name="tabular_file" file="empty_effectiveT3.tabular" ftype="tabular" /> | |
| 57 </test> | |
| 58 </tests> | |
| 59 <help> | |
| 60 | |
| 61 **What it does** | |
| 62 | |
| 63 This calls the command line Effective T3 v1.0.1 tool for prediction of bacterial effector proteins. | |
| 64 | |
| 65 The input is a FASTA file of protein sequences, and the output is tabular with four columns (one row per protein): | |
| 66 | |
| 67 ====== ============================================================================== | |
| 68 Column Description | |
| 69 ------ ------------------------------------------------------------------------------ | |
| 70 1 Sequence identifier | |
| 71 2 Sequence description (from the FASTA file) | |
| 72 3 Score (between 0 and 1, or negative for an error such as a very short peptide) | |
| 73 4 Predicted effector (true/false) | |
| 74 ====== ============================================================================== | |
| 75 | |
| 76 | |
| 77 **References** | |
| 78 | |
| 79 Jehl, Arnold and Rattei. | |
| 80 Effective - a database of predicted secreted bacterial proteins | |
| 81 Nucleic Acids Research, 39(Database issue), D591-5, 2011. | |
| 82 http://dx.doi.org/10.1093/nar/gkq1154 | |
| 83 | |
| 84 Arnold, Brandmaier, Kleine, Tischler, Heinz, Behrens, Niinikoski, Mewes, Horn and Rattei. | |
| 85 Sequence-based prediction of type III secreted proteins. | |
| 86 PLoS Pathog. 5(4):e1000376, 2009. | |
| 87 http://dx.doi.org/10.1371/journal.ppat.1000376 | |
| 88 | |
| 89 http://effectors.org/ | |
| 90 | |
| 91 </help> | |
| 92 </tool> |
