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