# HG changeset patch # User iuc # Date 1534950329 14400 # Node ID 3599f5451ee240ca196a4c923cb1d43d185aca81 # Parent d8a3d31554d7d89a9e31a89539051f15e3198372 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_renamer commit 3953b65f6b1c0336e9cadbe0792a5d3b14b5643a diff -r d8a3d31554d7 -r 3599f5451ee2 fastx_renamer.xml --- a/fastx_renamer.xml Tue May 08 13:28:10 2018 -0400 +++ b/fastx_renamer.xml Wed Aug 22 11:05:29 2018 -0400 @@ -10,6 +10,7 @@ -o '$output' -v @FQQUAL@ +@GZIP@ ]]> diff -r d8a3d31554d7 -r 3599f5451ee2 macros.xml --- a/macros.xml Tue May 08 13:28:10 2018 -0400 +++ b/macros.xml Wed Aug 22 11:05:29 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