Mercurial > repos > iuc > colibread_kissplice
annotate macros.xml @ 0:4acdd256cc12 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
author | iuc |
---|---|
date | Fri, 20 Oct 2017 03:14:17 -0400 |
parents | |
children | d5b4404c4788 |
rev | line source |
---|---|
0
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
1 <macros> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
2 <token name="@discosnp_single_reads@"><![CDATA[ |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
3 #for $input in $input_type_options.list_reads |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
4 #set $filename = str($input) + "." + $input.ext |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
5 ln -sf '${input}' '${filename}' && |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
6 echo '${filename}' >> input.lst && |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
7 #end for |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
8 ]]></token> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
9 <token name="@discosnp_paired_reads@"><![CDATA[ |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
10 #for $i, $paired in enumerate( $input_type_options.list_paired_reads ) |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
11 |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
12 #set $filenameFWD = str($paired.forward) + "." + $paired.forward.ext |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
13 ln -sf '${paired.forward}' '${filenameFWD}' && |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
14 |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
15 #set $filenameREV = str($paired.reverse) + "." + $paired.reverse.ext |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
16 ln -sf '${paired.reverse}' '${filenameREV}' && |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
17 |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
18 echo '${filenameFWD}' > "paired_${i}.lst" && |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
19 echo '${filenameREV}' >> "paired_${i}.lst" && |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
20 echo "paired_${i}.lst" >> input.lst && |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
21 |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
22 #end for |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
23 ]]></token> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
24 <token name="@lordec_inputs@"><![CDATA[ |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
25 -2 "${ ",".join(['%s' % file for file in $program_type_choice.inputs]) }" |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
26 -i '${program_type_choice.i}' |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
27 -k ${program_type_choice.k} |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
28 -s ${program_type_choice.s} |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
29 ]]></token> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
30 <xml name="lordec_inputs"> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
31 <param name="inputs" argument="-2" type="data" format="fasta,fastq.gz,fastq" multiple="true" label="Short read FASTA/Q files" /> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
32 <param argument="-i" type="data" format="fasta,fastq.gz,fastq" label="Long read FASTA/Q file" help="PacBio reads files" /> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
33 <param argument="-k" type="integer" label="Size of kmers" value="31" help="Only uneven number"/> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
34 <param argument="-s" type="integer" label="Solidity abundance threshold for k-mers" value="4" /> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
35 </xml> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
36 <xml name="citations"> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
37 <citations> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
38 <yield/> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
39 <citation type="doi">10.1186/s13742-015-0105-2</citation> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
40 </citations> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
41 </xml> |
4acdd256cc12
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff
changeset
|
42 </macros> |