annotate RSEM_estimates_to_matrix.xml @ 14:e2e6533f2514 draft

Uploaded
author gkumar09
date Wed, 23 Sep 2015 15:24:38 -0400
parents 8bf618c08b4d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
1 <tool id="RSEM_estimates_to_matrix" name="RSEM_estimates_to_matrix" version="0.0.1">
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
2
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
3 <description>Join RSEM estimates from multiple samples into a single matrix</description>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
4 <requirements>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
5 <requirement type="package">trinity</requirement>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
6 </requirements>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
7 <command interpreter="python">
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
8
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
9 trinityToolWrapper.py util/RSEM_util/merge_RSEM_counts_and_labels_single_table.pl
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
10
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
11 --labels
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
12 #for $entry in $RSEM_samples:
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
13 ${entry.column_label}
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
14 #end for
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
15
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
16 --RSEM_counts
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
17 #for $entry in $RSEM_samples:
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
18 ${entry.file}
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
19 #end for
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
20
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
21 > RSEM.counts.matrix
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
22
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
23 </command>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
24 <inputs>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
25
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
26 <repeat name="RSEM_samples" title="RSEM abundance estimates for samples">
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
27 <param name="file" label="Add file" type="data" format="text"/>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
28 <param name="column_label" label="column label" type="text" />
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
29 </repeat>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
30
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
31 </inputs>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
32 <outputs>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
33 <data format="text" name="counts_matrix" label="${tool.name} on ${on_string}: Counts Matrix" from_work_dir="RSEM.counts.matrix"/>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
34 </outputs>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
35 <tests>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
36
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
37
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
38 <test>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
39 <param name="target" value="trinity/Trinity.fasta" />
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
40 <param name="aligner" value="bowtie" />
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
41 <param name="paired_or_single" value="single" />
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
42 <param name="library_type" value="None" />
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
43 <param name="input" value="trinity/reads.left.fq" />
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
44 </test>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
45
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
46
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
47 </tests>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
48 <help>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
49 .. _Trinity: http://trinityrnaseq.sourceforge.net
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
50 </help>
8bf618c08b4d Uploaded
gkumar09
parents:
diff changeset
51 </tool>