# HG changeset patch # User iuc # Date 1534950126 14400 # Node ID a55430a1c754f632b97d8acdf890f41e7fa8461a # Parent 7b6a748e438fdff7fd8417150e1cc6d55fd04e31 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_filter commit 3953b65f6b1c0336e9cadbe0792a5d3b14b5643a diff -r 7b6a748e438f -r a55430a1c754 fastq_quality_filter.xml --- a/fastq_quality_filter.xml Tue May 08 12:50:05 2018 -0400 +++ b/fastq_quality_filter.xml Wed Aug 22 11:02:06 2018 -0400 @@ -1,4 +1,4 @@ - + macros.xml @@ -11,6 +11,7 @@ -v -o '$output' @FQQUAL@ +@GZIP@ ]]> diff -r 7b6a748e438f -r a55430a1c754 macros.xml --- a/macros.xml Tue May 08 12:50:05 2018 -0400 +++ b/macros.xml Wed Aug 22 11:02:06 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