Mercurial > repos > gkumar09 > trinity_rnaseq_protocol
comparison trinityrnaseq_protocol/abundance_estimation_to_matrix.xml @ 0:1c37a8003755 draft
Uploaded
author | gkumar09 |
---|---|
date | Mon, 28 Sep 2015 22:44:29 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1c37a8003755 |
---|---|
1 <tool id="abundance_estimation_to_matrix" name="abundance_estimation_to_matrix" version="0.0.1"> | |
2 | |
3 <description>Join RSEM estimates from multiple samples into a single matrix</description> | |
4 <requirements> | |
5 <requirement type="package">trinity</requirement> | |
6 </requirements> | |
7 <command interpreter="python"> | |
8 | |
9 abundance_estimation_to_matrix_wrapper.py | |
10 #for $q in $RSEM_samples | |
11 ${q.file} "${q.column_label}" | |
12 #end for | |
13 | |
14 </command> | |
15 <inputs> | |
16 | |
17 <repeat name="RSEM_samples" title="RSEM abundance estimates for samples"> | |
18 <param name="file" label="Add file" type="data" format="text"/> | |
19 <param name="column_label" label="column label" type="text" /> | |
20 </repeat> | |
21 | |
22 </inputs> | |
23 <outputs> | |
24 <data format="text" name="counts_matrix" label="${tool.name} on ${on_string}: Counts Matrix" from_work_dir="matrix.counts.matrix"/> | |
25 </outputs> | |
26 <tests> | |
27 | |
28 | |
29 <test> | |
30 <param name="target" value="trinity/Trinity.fasta" /> | |
31 <param name="aligner" value="bowtie" /> | |
32 <param name="paired_or_single" value="single" /> | |
33 <param name="library_type" value="None" /> | |
34 <param name="input" value="trinity/reads.left.fq" /> | |
35 </test> | |
36 | |
37 | |
38 </tests> | |
39 <help> | |
40 .. _Trinity: http://trinityrnaseq.sourceforge.net | |
41 </help> | |
42 </tool> |