annotate macros.xml @ 6:61b4cedc8934 draft

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