# HG changeset patch # User iuc # Date 1534950185 14400 # Node ID 397201fefb9e7d86767943267b5538e696ae3d77 # Parent 410c5d0b638a7d5b921bf4bb9428453ce0e34c16 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_clipper commit 3953b65f6b1c0336e9cadbe0792a5d3b14b5643a diff -r 410c5d0b638a -r 397201fefb9e fastx_clipper.xml --- a/fastx_clipper.xml Tue May 08 12:51:16 2018 -0400 +++ b/fastx_clipper.xml Wed Aug 22 11:03:05 2018 -0400 @@ -1,4 +1,4 @@ - + adapter sequences macros.xml @@ -14,6 +14,7 @@ $KEEP_N $DISCARD_OPTIONS @FQQUAL@ +@GZIP@ ]]> diff -r 410c5d0b638a -r 397201fefb9e macros.xml --- a/macros.xml Tue May 08 12:51:16 2018 -0400 +++ b/macros.xml Wed Aug 22 11:03:05 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