# HG changeset patch # User iuc # Date 1534950287 14400 # Node ID 02a5f43cd5d171e5d5c8988862b77ffa7f88315b # Parent ce309f4ff17f23048c4976cac5c61b522fe2ece1 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_to_fasta commit 3953b65f6b1c0336e9cadbe0792a5d3b14b5643a diff -r ce309f4ff17f -r 02a5f43cd5d1 fastq_to_fasta.xml --- a/fastq_to_fasta.xml Tue May 08 13:26:51 2018 -0400 +++ b/fastq_to_fasta.xml Wed Aug 22 11:04:47 2018 -0400 @@ -1,4 +1,4 @@ - + converter from FASTX-toolkit macros.xml @@ -10,6 +10,7 @@ $RENAMESEQ -o '$output' -v @FQQUAL@ +@GZIP@ ]]> diff -r ce309f4ff17f -r 02a5f43cd5d1 macros.xml --- a/macros.xml Tue May 08 13:26:51 2018 -0400 +++ b/macros.xml Wed Aug 22 11:04:47 2018 -0400 @@ -2,7 +2,7 @@ #if $input.is_of_type('fasta.gz', 'fastqsanger.gz', 'fastqsolexa.gz', 'fastqillumina.gz'): - zcat -f '$input' | + gunzip -c -f '$input' | #elif $input.is_of_type('fastqsanger.bz2', 'fastqsolexa.bz2', 'fastqillumina.bz2'): bzcat -f '$input' | #else: @@ -18,6 +18,13 @@ #end if ]]> + + + fastx_toolkit