Mercurial > repos > rnateam > targetfinder
comparison TargetFinder.xml @ 0:773fdd1a02ea draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/targetfinder/ commit 14f0b39f64982773ef0367379b915f742eabcc1b
| author | rnateam |
|---|---|
| date | Wed, 21 Dec 2016 17:31:28 -0500 |
| parents | |
| children | c9d56748fbde |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:773fdd1a02ea |
|---|---|
| 1 <tool id="targetfinder" name="Plant small RNA target prediction tool" version="1.7.0"> | |
| 2 <requirements> | |
| 3 <requirement type="package" version="1.7">targetfinder</requirement> | |
| 4 </requirements> | |
| 5 <stdio> | |
| 6 <exit_code range="1:" /> | |
| 7 </stdio> | |
| 8 <command><![CDATA[ | |
| 9 targetfinder_threads.pl | |
| 10 -f $f | |
| 11 -d $d | |
| 12 -c $c | |
| 13 -t "\${GALAXY_SLOTS:-12}" | |
| 14 $r | |
| 15 -o $output1 | |
| 16 ]]></command> | |
| 17 <inputs> | |
| 18 <param label="Input small RNA sequences file" help="(-f) FASTA-format" name="f" type="data" format="fasta" /> | |
| 19 <param label="Target sequence database file" help="(-d) FASTA-format" name="d" type="data" format="fasta" /> | |
| 20 <param label="Prediction score cutoff value" help="(-c) DEFAULT = 4" name="c" type="float" value="4.0" /> | |
| 21 <param label="Search reverse strand for targets?" help="(-r) Use this option if the database is genomic DNA." name="r" type="boolean" falsevalue="" truevalue="-r" checked="false" /> | |
| 22 </inputs> | |
| 23 <outputs> | |
| 24 <data name="output1" format="data"/> | |
| 25 </outputs> | |
| 26 <tests> | |
| 27 <test> | |
| 28 <param name="f" value="ath_miRNAs_test.fa"/> | |
| 29 <param name="d" value="Antirrhinum_majus.mRNA.EST.fasta"/> | |
| 30 <param name="r" value=""/> | |
| 31 <param name="c" value="4.0"/> | |
| 32 <param name="t" value="1"/> | |
| 33 <output name="output1" file="ath_miRNAs_predicted_targets.txt" compare="contains"/> | |
| 34 </test> | |
| 35 </tests> | |
| 36 <help><![CDATA[ | |
| 37 **What it does** | |
| 38 | |
| 39 TargetFinder will computationally predict small RNA binding sites on target transcripts from a sequence database. | |
| 40 | |
| 41 This is done by aligning the input small RNA sequence against all transcripts, | |
| 42 followed by site scoring using a position-weighted scoring matrix. | |
| 43 | |
| 44 **Input** | |
| 45 | |
| 46 -f Input small RNA sequences file (FASTA-format). | |
| 47 | |
| 48 -d Target sequence database file (FASTA-format) | |
| 49 | |
| 50 **Output** | |
| 51 | |
| 52 Each predicted target site is printed out separately. | |
| 53 The output consists of two parts. | |
| 54 | |
| 55 The first is a description line and the second is a base-pairing diagram of the target and small RNA (query) sequence. | |
| 56 | |
| 57 The description line contains the query name, the description line from the target sequence database, and the target prediction score. | |
| 58 | |
| 59 The base-pairing diagram has the target site sequence on top in 5'-3' orientation and the query sequence on the bottom in 3'-5' orientation. | |
| 60 | |
| 61 Between the target site sequece and the query sequence are base pair symbols. | |
| 62 | |
| 63 A ":" (colon) symbol represents an ordinary Watson-Crick base pair, a "." (period) represents a G:U base pair, and a " " (space) represents a mismatch. | |
| 64 | |
| 65 If a small RNA is predicted to target a sequence more than once, each target site will be output as separate output. | |
| 66 ]]></help> | |
| 67 <citations> | |
| 68 <citation type="doi">10.1016/j.cell.2005.04.004</citation> | |
| 69 <citation type="doi">10.1371/journal.pone.0000219</citation> | |
| 70 <citation type="doi">10.1007/978-1-60327-005-2_4</citation> | |
| 71 </citations> | |
| 72 </tool> | |
| 73 |
