16
|
1 <tool id="plant_microRNA_v1" name="miRPlant" veision="1.0.0">
|
|
2 <description>tool for plant microRNA analisis</description>
|
|
3
|
|
4 <requirements>
|
|
5 <requirement type="set_environment">SCRIPT_PATH</requirement>
|
|
6 <requirement type="package" version="0.12.7">bowtie</requirement>
|
|
7 <requirement type="package" version="2.11.0">R</requirement>
|
|
8 <requirement type="package" version="0.0.13">fastx_toolkit </requirement>
|
|
9 <requirement type="package" version="1.5">ViennaRNA</requirement>
|
|
10 </requirements>
|
|
11
|
|
12 <!--command interpreter="perl">miPlant.pl -i $input -format $format -gfa $gfa -idx $index -pre $pre -mat $mat -rfam $rfam -idx2 $idx2 -D $D -a $a -M $M -min $min -max $max -mis $mis -e $e -f $f -v $v -r $r -dis $dis -flank $flank -mfe $mfe -t $t -o $output</command-->
|
|
13
|
|
14 <command interpreter="perl">miRPlant.pl
|
|
15 ## Change this to accommodate the number of threads you have available.
|
|
16 -t \${GALAXY_SLOTS:-4}
|
|
17 ## Do or not delet rfam mapped tags
|
|
18 #if $params.delet_rfam == "yes":
|
|
19 -D
|
|
20 #end if
|
|
21 -path \$SCRIPT_PATH
|
|
22
|
|
23 #for $j, $s in enumerate( $series )
|
|
24 ##rank_of_series=$j
|
|
25 -i ${s.input}
|
|
26 -tag ${s.tag}
|
|
27 #end for
|
|
28
|
|
29 -format $format -gfa $gfa -pre $pre -mat $mat -rfam $rfam -a $a -M $mapnt -min $min -max $max -mis $mismatch -e $e -f $f -v $v -r $r -dis $dis -flank $flank -mfe $mfe
|
|
30 </command>
|
|
31
|
|
32 <inputs>
|
|
33
|
|
34 <repeat name="series" title="Series">
|
|
35 <param name="input" type="data" label="Raw data"/>
|
|
36 <param name="tag" type="text" data_ref="input" label="Sample name of raw data"/>
|
|
37 </repeat>
|
|
38
|
|
39 <conditional name="params">
|
|
40 <param name="delet_rfam" type="select" label="delet rfam mapped reads">
|
|
41 <option value="yes" selected="true">yes</option>
|
|
42 <option value="no">no</option>
|
|
43 </param>
|
|
44 </conditional> <!-- params -->
|
|
45
|
|
46 <!--param name="input" format="tabular" type="data" label="input config file" /-->
|
|
47
|
|
48 <param name="format" type="select" lable="raw data format" multiple="false">
|
|
49 <option value="fastq">Raw data is fastq. format</option>
|
|
50 <option value="fasta">Raw data is fasta. format</option>
|
|
51 </param>
|
|
52
|
|
53 <param name="gfa" type="data" label="genome sequence fasta file"/>
|
|
54 <!--param type="data" name="index" label="genome sequence bowtie index"/-->
|
|
55 <param name="mat" type="data" label="mature microRNA sequence file" />
|
|
56 <param name="pre" type="data" label="precursor microRNA sequence fie" />
|
|
57 <param name="rfam" type="data" label="rfam sequence file" />
|
|
58 <!--param type="data" name="idx2" label="rfam sequence bowtie index " -->
|
|
59 <param name="a" type="text" value="ATCTCGTATG" label="3' adapter sequence" />
|
|
60 <param name="mapnt" type="integer" value="8" label="minimum adapter map nts" />
|
|
61 <param name="min" type="integer" value="19" label="minimum microRNA length" />
|
|
62 <param name="max" type="integer" value="28" label="maximum microRNA length" />
|
|
63 <param name="mismatch" type="integer" value="0" label="number of allowed mismatches when mapping reads to precursors" />
|
|
64 <param name="e" type="integer" value="2" label="number of nucleotides upstream of the mature sequence to consider" />
|
|
65 <param name="f" type="integer" value="5" label="number of nucleotides downstream of the mature sequence to consider" />
|
|
66 <param name="v" type="integer" value="0" label="report end-to-end hits less than v mismatches"/>
|
|
67 <param name="r" type="integer" value="25" label="a read is allowed to map up to this number of positions in the genome" />
|
|
68 <param name="dis" type="integer" value="200" label="Maximal space between miRNA and miRNA*" />
|
|
69 <param name="flank" type="integer" value="10" label="Flank sequence length of miRNA precursor" />
|
|
70 <param name="mfe" type="float" value="-30" label="Maximal free energy allowed for a miRNA precursor" />
|
|
71 <param name="thread" type="integer" value="1" label="number of threads" />
|
|
72 </inputs>
|
|
73
|
|
74 <outputs>
|
|
75 <data format="txt" name="known microRNA express list" from_work_dir="miRPlant_out/known_microRNA_express.txt"/>
|
|
76 <data format="txt" name="known microRNA express alignment" from_work_dir="miRPlant_out/known_microRNA_express.aln"/>
|
|
77 <data format="txt" name="known microRNA moRs result" from_work_dir="miRPlant_out/known_microRNA_express.moRs"/>
|
|
78 <data format="txt" name="known microRNA precursor file" from_work_dir="miRPlant_out/known_microRNA_precursor.fa"/>
|
|
79 <data format="txt" name="known microRNA mature file" from_work_dir="miRPlant_out/known_microRNA_mature.fa"/>
|
|
80 <data format="txt" name="novel microRNA prediction file" from_work_dir="miRPlant_out/known_microRNA_mature.fa"/>
|
|
81 <data format="txt" name="novel microRNA express list" from_work_dir="miRPlant_out/novel_microRNA_express.txt"/>
|
|
82 <data format="txt" name="novel microRNA precursor file" from_work_dir="miRPlant_out/novel_microRNA_precursor.fa"/>
|
|
83 <data format="txt" name="novel microRNA mature sequence file" from_work_dir="miRPlant_out/novel_microRNA_mature.fa"/>
|
|
84 <data format="txt" name="analysis result" from_work_dir="miRPlant_out/result.html"/>
|
|
85 </outputs>
|
|
86
|
|
87 <help>
|
|
88
|
|
89 </help>
|
|
90 </tool>
|