annotate macros.xml @ 4:e17b8c3957a8 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit 17bcf78f445b2e515122330caccb591d8de2a5b4
author iuc
date Wed, 23 Apr 2025 05:17:47 +0000
parents ee0f7c04ad36
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
1 <?xml version="1.0"?>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
2 <macros>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
3 <token name="@CATS@">
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
4 #if $input.is_of_type('fasta.gz', 'fastqsanger.gz', 'fastqsolexa.gz', 'fastqillumina.gz'):
3
ee0f7c04ad36 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit fd099d17eceaa319fbfe429f4725328d88b18c9f
iuc
parents: 2
diff changeset
5 gunzip -c -f '$input' |
2
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
6 #elif $input.is_of_type('fastqsanger.bz2', 'fastqsolexa.bz2', 'fastqillumina.bz2'):
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
7 bzcat -f '$input' |
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
8 #else:
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
9 cat '$input' |
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
10 #end if
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
11 </token>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
12 <token name="@FQQUAL@">
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
13 <![CDATA[
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
14 #if $input.is_of_type('fastqsanger', 'fastqsanger.gz', 'fastqsanger.bz2'):
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
15 -Q 33
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
16 #elif $input.is_of_type('fastqsolexa', 'fastqsolexa.gz', 'fastqsolexa.bz2', 'fastqillumina', 'fastqillumina.gz', 'fastqillumina.bz2'):
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
17 -Q 64
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
18 #end if
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
19 ]]>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
20 </token>
3
ee0f7c04ad36 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit fd099d17eceaa319fbfe429f4725328d88b18c9f
iuc
parents: 2
diff changeset
21 <token name="@GZIP@">
ee0f7c04ad36 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit fd099d17eceaa319fbfe429f4725328d88b18c9f
iuc
parents: 2
diff changeset
22 <![CDATA[
ee0f7c04ad36 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit fd099d17eceaa319fbfe429f4725328d88b18c9f
iuc
parents: 2
diff changeset
23 #if $input.is_of_type('fasta.gz', 'fastqsanger.gz', 'fastqsolexa.gz', 'fastqillumina.gz'):
ee0f7c04ad36 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit fd099d17eceaa319fbfe429f4725328d88b18c9f
iuc
parents: 2
diff changeset
24 | gzip -c
ee0f7c04ad36 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit fd099d17eceaa319fbfe429f4725328d88b18c9f
iuc
parents: 2
diff changeset
25 #elif $input.is_of_type('fastqsanger.bz2', 'fastqsolexa.bz2', 'fastqillumina.bz2'):
ee0f7c04ad36 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit fd099d17eceaa319fbfe429f4725328d88b18c9f
iuc
parents: 2
diff changeset
26 | bzip2 -c
ee0f7c04ad36 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit fd099d17eceaa319fbfe429f4725328d88b18c9f
iuc
parents: 2
diff changeset
27 #end if
ee0f7c04ad36 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit fd099d17eceaa319fbfe429f4725328d88b18c9f
iuc
parents: 2
diff changeset
28 ]]>
ee0f7c04ad36 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit fd099d17eceaa319fbfe429f4725328d88b18c9f
iuc
parents: 2
diff changeset
29 </token>
2
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
30 <xml name="requirements">
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
31 <requirements>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
32 <requirement type="package" version="@VERSION@">fastx_toolkit</requirement>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
33 <yield />
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
34 </requirements>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
35 </xml>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
36 <token name="@VERSION@">0.0.14</token>
3
ee0f7c04ad36 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit fd099d17eceaa319fbfe429f4725328d88b18c9f
iuc
parents: 2
diff changeset
37 <token name="@VERSION_SUFFIX@">2</token>
2
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
38 <token name="@SANGER@">fastqsanger,fastqsanger.gz,fastqsanger.bz2</token>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
39 <token name="@SOLEXA@">fastqsolexa,fastqsolexa.gz,fastqsolexa.bz2</token>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
40 <token name="@ILLUMINA@">fastqillumina,fastqillumina.gz,fastqillumina.bz2</token>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
41 <token name="@FASTQS@">@SANGER@,@SOLEXA@,@ILLUMINA@</token>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
42 <token name="@FASTAS@">fasta,fasta.gz</token>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
43 <xml name="citations">
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
44 <citations>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
45 <citation type="bibtex">
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
46 @UNPUBLISHED{agordon,
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
47 author = "Assaf Gordon",
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
48 title = "FASTQ/A short-reads pre-processing tools",
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
49 year = "2010",
4
e17b8c3957a8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit 17bcf78f445b2e515122330caccb591d8de2a5b4
iuc
parents: 3
diff changeset
50 note = "https://github.com/agordon/fastx_toolkit",
e17b8c3957a8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit 17bcf78f445b2e515122330caccb591d8de2a5b4
iuc
parents: 3
diff changeset
51 url = "https://github.com/agordon/fastx_toolkit"}
2
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
52 </citation>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
53 </citations>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
54 </xml>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
55 <xml name="fasta_input">
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
56 <param name="input" type="data" format="@FASTAS@" label="Input FASTA file" />
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
57 </xml>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
58 <xml name="fastq_input">
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
59 <param name="input" type="data" format="@FASTQS@" label="Input FASTQ file" />
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
60 </xml>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
61 <xml name="fastx_input">
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
62 <param name="input" type="data" format="@FASTAS@,@FASTQS@" label="Input file in FASTA or FASTQ format" />
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
63 </xml>
0b7eccecaa34 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
iuc
parents:
diff changeset
64 </macros>