Mercurial > repos > devteam > cufflinks
annotate cuff_macros.xml @ 11:e04dbae2abe0 draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cufflinks commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
author | devteam |
---|---|
date | Sun, 19 Feb 2017 12:12:28 -0500 |
parents | 83bec71c5c9f |
children | d080005cffe1 |
rev | line source |
---|---|
7 | 1 <macros> |
2 <token name="@VERSION@">2.2.1</token> | |
10
83bec71c5c9f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cufflinks commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
9
diff
changeset
|
3 |
7 | 4 <xml name="requirements"> |
5 <requirements> | |
6 <requirement type="package" version="2.2.1">cufflinks</requirement> | |
7 <yield /> | |
8 </requirements> | |
9 </xml> | |
10
83bec71c5c9f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cufflinks commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
9
diff
changeset
|
10 |
7 | 11 <xml name="condition_inputs"> |
12 <!-- DEFAULT : use BAM/SAM files --> | |
13 <conditional name="in_type"> | |
14 <param name="set_in_type" type="select" label="Input data type" | |
15 help="CuffNorm supports either CXB (from cuffquant) or SAM/BAM input files. Mixing is not supported. Default: SAM/BAM"> | |
16 <option value="BAM">SAM/BAM</option> | |
17 <option value="CXB">Cuffquant (CXB)</option> | |
18 <option value="CONDITION_LIST">List of single replicate conditions</option> | |
19 <option value="CONDITION_REPLICATE_LIST">List of multiple replicate conditions</option> | |
20 </param> | |
21 <when value="BAM"> | |
22 <repeat name="conditions" title="Condition" min="2"> | |
10
83bec71c5c9f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cufflinks commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
9
diff
changeset
|
23 <param name="name" label="Condition name" type="text"/> |
7 | 24 <param name="samples" label="Replicates" type="data" format="sam,bam" multiple="true"/> |
25 </repeat> | |
26 </when> | |
27 <when value="CXB"> | |
28 <repeat name="conditions" title="Condition" min="2"> | |
10
83bec71c5c9f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cufflinks commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
9
diff
changeset
|
29 <param name="name" label="Condition name" type="text"/> |
7 | 30 <param name="samples" label="Replicates" type="data" format="cxb" multiple="true"/> |
31 </repeat> | |
32 </when> | |
33 <when value="CONDITION_LIST"> | |
10
83bec71c5c9f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cufflinks commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
9
diff
changeset
|
34 <param name="conditions" label="List of Conditions" type="data_collection" collection_type="list" /> |
7 | 35 </when> |
36 <when value="CONDITION_REPLICATE_LIST"> | |
10
83bec71c5c9f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cufflinks commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
9
diff
changeset
|
37 <param name="conditions" label="List of Conditions" type="data_collection" collection_type="list:list" /> |
7 | 38 </when> |
39 </conditional> | |
40 </xml> | |
41 <token name="@CONDITION_SAMPLES@"> | |
42 #if $in_type.set_in_type in ['BAM', 'CXB'] | |
43 #for $condition in $in_type.conditions: | |
44 #set samples = ','.join( [ str( $sample ) for $sample in $condition.samples ] ) | |
10
83bec71c5c9f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cufflinks commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
9
diff
changeset
|
45 '$samples' |
7 | 46 #end for |
47 #elif $in_type.set_in_type == 'CONDITION_LIST' | |
48 #for $sample in $in_type.conditions: | |
10
83bec71c5c9f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cufflinks commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
9
diff
changeset
|
49 '$sample' |
7 | 50 #end for |
51 #elif $in_type.set_in_type == 'CONDITION_REPLICATE_LIST' | |
52 #for $condition_list in $in_type.conditions: | |
53 #set samples = ','.join( [ str( $sample ) for $sample in $condition_list ] ) | |
10
83bec71c5c9f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cufflinks commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
9
diff
changeset
|
54 '$samples' |
7 | 55 #end for |
56 #end if | |
57 </token> | |
58 <token name="@CONDITION_LABELS@"> | |
59 #import re | |
60 #if $in_type.set_in_type in ['BAM', 'CXB'] | |
61 #set labels = '\'' + '\',\''.join( [ str( $condition.name ) for $condition in $in_type.conditions ] ) + '\'' | |
62 #elif $in_type.set_in_type in ['CONDITION_LIST', 'CONDITION_REPLICATE_LIST'] | |
63 #set labels = '\'' + '\',\''.join( map(lambda x: re.sub('[^\w\-_]', '_', x), $in_type.conditions.keys() ) ) + '\'' | |
64 #end if | |
65 --labels $labels | |
66 </token> | |
67 <xml name="cufflinks_gtf_inputs"> | |
68 <param format="gtf" name="inputs" type="data" label="GTF file(s) produced by Cufflinks" help="" multiple="true" /> | |
69 <repeat name="additional_inputs" title="Additional GTF Inputs (Lists)"> | |
70 <param format="gtf" name="additional_inputs" type="data_collection" label="GTF file(s) produced by Cufflinks" help="" /> | |
71 </repeat> | |
72 </xml> | |
73 <token name="@CUFFLINKS_GTF_INPUTS@"> | |
74 ## Inputs. | |
75 #for $input_file in $inputs: | |
10
83bec71c5c9f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cufflinks commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
9
diff
changeset
|
76 '${input_file}' |
7 | 77 #end for |
78 #for $additional_input in $additional_inputs: | |
79 #for $input_file in $additional_input.additional_inputs: | |
10
83bec71c5c9f
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cufflinks commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
9
diff
changeset
|
80 '${input_file}' |
7 | 81 #end for |
82 #end for | |
83 </token> | |
84 <token name="@HAS_MULTIPLE_INPUTS@">getattr(inputs, "__len__", [].__len__)() >= 2</token> | |
9
a1ea9af8d5f4
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cufflinks commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents:
7
diff
changeset
|
85 </macros> |