annotate cummerbund_to_tabular.xml @ 2:0761bbc0a4e7 draft default tip

Uploaded
author devteam
date Thu, 02 Apr 2015 16:14:22 -0400
parents 36f917aa4b60
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
1 <?xml version="1.0"?>
1
36f917aa4b60 Uploaded corrected script
devteam
parents: 0
diff changeset
2 <tool id="cummerbund_to_cuffdiff" name="Extract CuffDiff" version="1.0.1">
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
3 <description>tabular files from a cummeRbund database</description>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
4 <command interpreter="python"><![CDATA[
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
5 cummerbund_to_tabular.py --file ${input_database} ${' '.join(str($tables).split(','))}
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
6 ]]></command>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
7 <inputs>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
8 <param name="input_database" type="data" format="sqlite" label="Select backend database (sqlite)" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
9 <param type="select" name="tables" multiple="True" label="Select tables to output">
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
10 <option name="cds_count" value="--tables cds_count">CDS count tracking</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
11 <option name="cds_diff" value="--tables cds_diff">CDS overloading diffential expression testing</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
12 <option name="cds_exp_diff" value="--tables cds_exp_diff">CDS FPKM differential expression testing</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
13 <option name="cds_fpkm" value="--tables cds_fpkm">CDS FPKM tracking</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
14 <option name="cds_rg" value="--tables cds_rg">CDS read groups</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
15 <option name="gene_exp_diff" value="--tables gene_exp_diff">Gene differential expression testing</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
16 <option name="genes_count" value="--tables genes_count">Gene count tracking</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
17 <option name="genes_fpkm" value="--tables genes_fpkm">Gene FPKM tracking</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
18 <option name="gene_rg" value="--tables gene_rg">Gene read groups</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
19 <option name="isoform_exp_diff" value="--tables isoform_exp_diff">Transcript differential expression testing</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
20 <option name="isoform_count" value="--tables isoform_count">Transcript count tracking</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
21 <option name="isoform_fpkm" value="--tables isoform_fpkm">Transcript FPKM tracking</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
22 <option name="isoform_rg" value="--tables isoform_rg">Transcript read groups</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
23 <option name="promoters_diff" value="--tables promoters_diff">Promoter differential testing</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
24 <option name="read_groups" value="--tables read_groups">Read Groups</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
25 <option name="run_info" value="--tables run_info">Run details</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
26 <option name="splicing_diff" value="--tables splicing_diff">Splicing differential expression testing</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
27 <option name="tss_group_exp" value="--tables tss_group_exp">TSS groups differential expression testing</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
28 <option name="tss_count_tracking" value="--tables tss_count_tracking">TSS count FPKM tracking</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
29 <option name="tss_fpkm" value="--tables tss_fpkm">TSS groups FPKM tracking</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
30 <option name="tss_rg" value="--tables tss_rg">TSS read groups</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
31 <option name="var_model" value="--tables var_model">Model info</option>
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
32 </param>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
33 </inputs>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
34 <outputs>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
35 <data format="tabular" name="cds_count_output" from_work_dir="cds_count.tabular" label="${tool.name} on ${on_string}: CDS count tracking">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
36 <filter>('--tables cds_count' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
37 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
38 <data format="tabular" name="cds_diff_output" from_work_dir="cds_diff.tabular" label="${tool.name} on ${on_string}: CDS overloading diffential expression testing">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
39 <filter>('--tables cds_diff' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
40 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
41 <data format="tabular" name="cds_exp_diff_output" from_work_dir="cds_exp_diff.tabular" label="${tool.name} on ${on_string}: CDS FPKM differential expression testing">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
42 <filter>('--tables cds_exp_diff' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
43 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
44 <data format="tabular" name="cds_fpkm_output" from_work_dir="cds_fpkm.tabular" label="${tool.name} on ${on_string}: CDS FPKM tracking">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
45 <filter>('--tables cds_fpkm' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
46 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
47 <data format="tabular" name="cds_rg_output" from_work_dir="cds_rg.tabular" label="${tool.name} on ${on_string}: CDS read groups">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
48 <filter>('--tables cds_rg' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
49 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
50 <data format="tabular" name="gene_exp_diff_output" from_work_dir="gene_exp_diff.tabular" label="${tool.name} on ${on_string}: gene differential expression testing">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
51 <filter>('--tables gene_exp_diff' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
52 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
53 <data format="tabular" name="genes_count_output" from_work_dir="genes_count.tabular" label="${tool.name} on ${on_string}: gene count tracking">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
54 <filter>('--tables genes_count' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
55 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
56 <data format="tabular" name="genes_fpkm_output" from_work_dir="genes_fpkm.tabular" label="${tool.name} on ${on_string}: gene FPKM tracking">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
57 <filter>('--tables genes_fpkm' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
58 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
59 <data format="tabular" name="gene_rg_output" from_work_dir="gene_rg.tabular" label="${tool.name} on ${on_string}: gene read groups">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
60 <filter>('--tables gene_rg' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
61 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
62 <data format="tabular" name="isoform_exp_diff_output" from_work_dir="isoform_exp_diff.tabular" label="${tool.name} on ${on_string}: transcript differential expression testing">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
63 <filter>('--tables isoform_exp_diff' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
64 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
65 <data format="tabular" name="isoform_count_output" from_work_dir="isoform_count.tabular" label="${tool.name} on ${on_string}: transcript count tracking">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
66 <filter>('--tables isoform_count' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
67 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
68 <data format="tabular" name="isoform_fpkm_output" from_work_dir="isoform_fpkm.tabular" label="${tool.name} on ${on_string}: transcript FPKM tracking">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
69 <filter>('--tables isoform_fpkm' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
70 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
71 <data format="tabular" name="isoform_rg_output" from_work_dir="isoform_rg.tabular" label="${tool.name} on ${on_string}: transcript read groups">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
72 <filter>('--tables isoform_rg' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
73 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
74 <data format="tabular" name="promoters_diff_output" from_work_dir="promoters_diff.tabular" label="${tool.name} on ${on_string}: promoter differential testing">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
75 <filter>('--tables promoters_diff' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
76 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
77 <data format="tabular" name="read_groups_output" from_work_dir="read_groups.tabular" label="${tool.name} on ${on_string}: Read Groups">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
78 <filter>('--tables read_groups' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
79 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
80 <data format="tabular" name="run_info_output" from_work_dir="run_info.tabular" label="${tool.name} on ${on_string}: Run details">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
81 <filter>('--tables run_info' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
82 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
83 <data format="tabular" name="splicing_diff_output" from_work_dir="splicing_diff.tabular" label="${tool.name} on ${on_string}: splicing differential expression testing">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
84 <filter>('--tables splicing_diff' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
85 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
86 <data format="tabular" name="tss_group_exp_output" from_work_dir="tss_group_exp.tabular" label="${tool.name} on ${on_string}: TSS groups differential expression testing">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
87 <filter>('--tables tss_group_exp' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
88 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
89 <data format="tabular" name="tss_count_tracking_output" from_work_dir="tss_count_tracking.tabular" label="${tool.name} on ${on_string}: TSS count FPKM tracking">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
90 <filter>('--tables tss_count_tracking' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
91 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
92 <data format="tabular" name="tss_fpkm_output" from_work_dir="tss_fpkm.tabular" label="${tool.name} on ${on_string}: TSS groups FPKM tracking">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
93 <filter>('--tables tss_fpkm' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
94 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
95 <data format="tabular" name="tss_rg_output" from_work_dir="tss_rg.tabular" label="${tool.name} on ${on_string}: TSS read groups">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
96 <filter>('--tables tss_rg' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
97 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
98 <data format="tabular" name="var_model_output" from_work_dir="var_model.tabular" label="${tool.name} on ${on_string}: var_model.info">
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
99 <filter>('--tables var_model' in tables)</filter>
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
100 </data>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
101 </outputs>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
102 <citations>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
103 <citation type="doi">doi:10.1038/nprot.2012.016</citation>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
104 </citations>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
105 <help>This tool extracts cuffdiff tabular files from a cummeRbund SQLite database.</help>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
106 <tests>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
107 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
108 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
109 <param name="tables" value="--tables cds_count,--tables cds_diff,--tables cds_exp_diff,--tables cds_fpkm,--tables cds_rg,--tables gene_exp_diff,--tables genes_count,--tables genes_fpkm,--tables gene_rg,--tables isoform_exp_diff,--tables isoform_count,--tables isoform_fpkm,--tables isoform_rg,--tables promoters_diff,--tables read_groups,--tables run_info,--tables splicing_diff,--tables tss_group_exp,--tables tss_count_tracking,--tables tss_fpkm,--tables tss_rg,--tables var_model" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
110 <output name="cds_count_output" ftype="tabular" file="cds_count.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
111 <output name="cds_diff_output" ftype="tabular" file="cds_diff.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
112 <output name="cds_exp_diff_output" ftype="tabular" file="cds_exp_diff.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
113 <output name="cds_fpkm_output" ftype="tabular" file="cds_fpkm.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
114 <output name="cds_rg_output" ftype="tabular" file="cds_rg.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
115 <output name="gene_exp_diff_output" ftype="tabular" file="gene_exp_diff.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
116 <output name="genes_count_output" ftype="tabular" file="genes_count.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
117 <output name="genes_fpkm_output" ftype="tabular" file="genes_fpkm.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
118 <output name="gene_rg_output" ftype="tabular" file="gene_rg.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
119 <output name="isoform_exp_diff_output" ftype="tabular" file="isoform_exp_diff.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
120 <output name="isoform_count_output" ftype="tabular" file="isoform_count.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
121 <output name="isoform_fpkm_output" ftype="tabular" file="isoform_fpkm.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
122 <output name="isoform_rg_output" ftype="tabular" file="isoform_rg.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
123 <output name="promoters_diff_output" ftype="tabular" file="promoters_diff.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
124 <output name="read_groups_output" ftype="tabular" file="read_groups.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
125 <output name="run_info_output" ftype="tabular" file="run_info.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
126 <output name="splicing_diff_output" ftype="tabular" file="splicing_diff.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
127 <output name="tss_group_exp_output" ftype="tabular" file="tss_group_exp.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
128 <output name="tss_count_tracking_output" ftype="tabular" file="tss_count_tracking.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
129 <output name="tss_fpkm_output" ftype="tabular" file="tss_fpkm.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
130 <output name="tss_rg_output" ftype="tabular" file="tss_rg.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
131 <output name="var_model_output" ftype="tabular" file="var_model.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
132 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
133 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
134 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
135 <param name="tables" value="--tables cds_count" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
136 <output name="cds_count_output" ftype="tabular" file="cds_count.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
137 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
138 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
139 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
140 <param name="tables" value="--tables cds_diff" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
141 <output name="cds_diff_output" ftype="tabular" file="cds_diff.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
142 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
143 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
144 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
145 <param name="tables" value="--tables cds_exp_diff" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
146 <output name="cds_exp_diff_output" ftype="tabular" file="cds_exp_diff.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
147 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
148 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
149 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
150 <param name="tables" value="--tables cds_fpkm" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
151 <output name="cds_fpkm_output" ftype="tabular" file="cds_fpkm.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
152 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
153 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
154 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
155 <param name="tables" value="--tables cds_rg" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
156 <output name="cds_rg_output" ftype="tabular" file="cds_rg.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
157 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
158 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
159 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
160 <param name="tables" value="--tables gene_exp_diff" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
161 <output name="gene_exp_diff_output" ftype="tabular" file="gene_exp_diff.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
162 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
163 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
164 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
165 <param name="tables" value="--tables genes_count" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
166 <output name="genes_count_output" ftype="tabular" file="genes_count.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
167 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
168 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
169 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
170 <param name="tables" value="--tables genes_fpkm" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
171 <output name="genes_fpkm_output" ftype="tabular" file="genes_fpkm.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
172 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
173 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
174 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
175 <param name="tables" value="--tables gene_rg" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
176 <output name="gene_rg_output" ftype="tabular" file="gene_rg.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
177 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
178 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
179 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
180 <param name="tables" value="--tables isoform_exp_diff" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
181 <output name="isoform_exp_diff_output" ftype="tabular" file="isoform_exp_diff.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
182 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
183 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
184 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
185 <param name="tables" value="--tables isoform_count" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
186 <output name="isoform_count_output" ftype="tabular" file="isoform_count.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
187 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
188 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
189 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
190 <param name="tables" value="--tables isoform_fpkm" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
191 <output name="isoform_fpkm_output" ftype="tabular" file="isoform_fpkm.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
192 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
193 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
194 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
195 <param name="tables" value="--tables isoform_rg" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
196 <output name="isoform_rg_output" ftype="tabular" file="isoform_rg.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
197 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
198 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
199 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
200 <param name="tables" value="--tables promoters_diff" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
201 <output name="promoters_diff_output" ftype="tabular" file="promoters_diff.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
202 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
203 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
204 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
205 <param name="tables" value="--tables read_groups" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
206 <output name="read_groups_output" ftype="tabular" file="read_groups.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
207 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
208 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
209 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
210 <param name="tables" value="--tables run_info" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
211 <output name="run_info_output" ftype="tabular" file="run_info.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
212 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
213 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
214 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
215 <param name="tables" value="--tables splicing_diff" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
216 <output name="splicing_diff_output" ftype="tabular" file="splicing_diff.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
217 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
218 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
219 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
220 <param name="tables" value="--tables tss_group_exp" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
221 <output name="tss_group_exp_output" ftype="tabular" file="tss_group_exp.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
222 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
223 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
224 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
225 <param name="tables" value="--tables tss_count_tracking" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
226 <output name="tss_count_tracking_output" ftype="tabular" file="tss_count_tracking.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
227 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
228 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
229 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
230 <param name="tables" value="--tables tss_fpkm" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
231 <output name="tss_fpkm_output" ftype="tabular" file="tss_fpkm.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
232 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
233 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
234 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
235 <param name="tables" value="--tables tss_rg" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
236 <output name="tss_rg_output" ftype="tabular" file="tss_rg.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
237 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
238 <test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
239 <param name="input_database" value="cuffdiff_out.sqlite" ftype="sqlite" />
2
0761bbc0a4e7 Uploaded
devteam
parents: 1
diff changeset
240 <param name="tables" value="--tables var_model" />
0
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
241 <output name="var_model_output" ftype="tabular" file="var_model.tabular" />
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
242 </test>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
243 </tests>
648c27c78eed Initial commit with version 1.0.0 of the tool.
devteam
parents:
diff changeset
244 </tool>