# HG changeset patch # User iuc # Date 1534950348 14400 # Node ID 0c2907307ba4af3892354fabfc3e226eafec1439 # Parent 3f1017d3f7858b31e324609e93570b1e51b22bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_reverse_complement commit 3953b65f6b1c0336e9cadbe0792a5d3b14b5643a diff -r 3f1017d3f785 -r 0c2907307ba4 fastx_reverse_complement.xml --- a/fastx_reverse_complement.xml Tue May 08 13:28:22 2018 -0400 +++ b/fastx_reverse_complement.xml Wed Aug 22 11:05:48 2018 -0400 @@ -1,4 +1,4 @@ - + macros.xml @@ -8,6 +8,7 @@ @CATS@ fastx_reverse_complement -v -o '$output' @FQQUAL@ +@GZIP@ ]]> diff -r 3f1017d3f785 -r 0c2907307ba4 macros.xml --- a/macros.xml Tue May 08 13:28:22 2018 -0400 +++ b/macros.xml Wed Aug 22 11:05:48 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