Mercurial > repos > devteam > cummerbund
annotate cummeRbund_macros.xml @ 6:c3b54a4b7741 draft default tip
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/cummerbund commit f929353ffb0623f2218d7dec459c7da62f3b0d24"
author | devteam |
---|---|
date | Mon, 06 Jul 2020 20:25:47 -0400 |
parents | 78fcfc04fcfe |
children |
rev | line source |
---|---|
0
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
1 <?xml version="1.0"?> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
2 <macros> |
6
c3b54a4b7741
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/cummerbund commit f929353ffb0623f2218d7dec459c7da62f3b0d24"
devteam
parents:
5
diff
changeset
|
3 <token name="@TOOL_VERSION@">2.16.0</token> |
0
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
4 <macro name="replicates_checkbox"> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
5 <param name="replicates" type="boolean" truevalue="--replicates" falsevalue="" checked="True" label="Replicates?"/> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
6 </macro> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
7 <macro name="log10_checkbox"> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
8 <param name="log10" type="boolean" truevalue="--log10" falsevalue="" checked="True" label="Apply log10 transformation on FPKM values?"/> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
9 </macro> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
10 <macro name="xy_selector"> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
11 <param name="x" type="select" label="Sample name for x axis" dynamic_options="get_samples(input_database.dataset.file_name)" /> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
12 <param name="y" type="select" label="Sample name for y axis" dynamic_options="get_samples(input_database.dataset.file_name)" /> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
13 </macro> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
14 <macro name="genes_selector"> |
5
78fcfc04fcfe
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/cummerbund commit f3f0bef4a450aafab3c6b05a27647471f93b22f3
devteam
parents:
0
diff
changeset
|
15 <repeat name="genes" title="Genes" min="2"> |
78fcfc04fcfe
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/cummerbund commit f3f0bef4a450aafab3c6b05a27647471f93b22f3
devteam
parents:
0
diff
changeset
|
16 <!-- Cannot create a heatmap for less than two genes --> |
0
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
17 <param name="gene_id" type="select" label="Gene ID" dynamic_options="get_genes(input_database.dataset.file_name)" /> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
18 </repeat> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
19 </macro> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
20 <macro name="features_selector"> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
21 <param name="features" type="select" label="Expression levels to plot?"> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
22 <option value="gene" selected="true">Genes</option> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
23 <option value="isoforms">Isoforms</option> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
24 <option value="tss">TSS</option> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
25 <option value="cds">CDS</option> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
26 </param> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
27 </macro> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
28 <macro name="multiple_genes_conditional"> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
29 <conditional name="multiple_genes"> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
30 <param name="multiple_genes_selector" type="select" label="Limit plot to genes"> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
31 <option value="no" selected="true">Do not limit</option> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
32 <option value="yes">Select genes</option> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
33 </param> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
34 <when value="yes"> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
35 <expand macro="features_selector" /> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
36 <expand macro="genes_selector" /> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
37 </when> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
38 <when value="no" /> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
39 </conditional> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
40 </macro> |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
41 </macros> |