|
3
|
1 <tool id="preEBSeq" name="Preprocess files for EBSeq" version="0.1.0">
|
|
|
2 <description>Generate expression matrix and IGvector file for EBSeq</description>
|
|
|
3 <command interpreter="python">
|
|
|
4 pre_EBSeq.py
|
|
|
5 --outtable=$outtable
|
|
|
6 --outvector=$outvector
|
|
|
7 #for $i, $input in enumerate ( $batch_condition.levels ):
|
|
|
8 #for $j, $input_rep in enumerate ($input.rep_counts ):
|
|
|
9 --inputs "${input_rep.count_data}" "${input_rep.label}"
|
|
|
10 #end for
|
|
|
11 #end for
|
|
|
12
|
|
|
13 </command>
|
|
|
14 <inputs>
|
|
|
15 <repeat name="rep_counts" title="Raw counts" min="2">
|
|
|
16 <param name="count_data" type="data" format="txt" label="Raw count"/>
|
|
|
17 <param name="label" format="txt" type="text" value="file1" label="File label name" help="You need to specify an unique label name for your replicates.">
|
|
|
18 <sanitizer>
|
|
|
19 <valid initial="string.letters,string.digits">
|
|
|
20 <add value="_" />
|
|
|
21 </valid>
|
|
|
22 <mapping initial="none">
|
|
|
23 <add source=" " target="_"/>
|
|
|
24 </mapping>
|
|
|
25 </sanitizer>
|
|
|
26 </param>
|
|
|
27 </repeat>
|
|
|
28
|
|
|
29 </inputs>
|
|
|
30
|
|
|
31 <outputs>
|
|
|
32 <data format="tabular" name="outtable" label="Expression matrix (on ${on_string})" />
|
|
|
33 <data format="tabular" name="outvector" label="IGvector file (on ${on_string})"/>
|
|
|
34 </outputs>
|
|
|
35 <tests>
|
|
|
36 <test>
|
|
|
37
|
|
|
38 </test>
|
|
|
39 </tests>
|
|
|
40 <help>
|
|
|
41 -----------
|
|
|
42 Description
|
|
|
43 -----------
|
|
|
44 Build Expression Table and IGvector fles from RSEM output to EBSeq input
|
|
|
45
|
|
|
46 </help>
|
|
|
47 </tool> |