# HG changeset patch # User iuc # Date 1687887436 0 # Node ID b8e3c0a52f335d7b1b059f9f95df81299df7ab3a # Parent 5dbca5fbdc45459c30a216e8e71de0dc31359907 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_to_fasta commit 415a5c5de30530910f3039e5fc66aa15103c6f20 diff -r 5dbca5fbdc45 -r b8e3c0a52f33 fastq_to_fasta.xml --- a/fastq_to_fasta.xml Thu Jan 30 18:26:18 2020 +0000 +++ b/fastq_to_fasta.xml Tue Jun 27 17:37:16 2023 +0000 @@ -9,7 +9,11 @@ $SKIPN $RENAMESEQ -v @FQQUAL@ -@GZIP@ > '$output' +#if $compress_output == 'yes' or ($compress_output == 'infer' and ($input.ext.endswith('.gz') or $input.ext.endswith('.bz2'))): + | gzip -c > '$output_gz' +#else: + > '$output' +#end if ]]> @@ -21,32 +25,70 @@ + + + + + - + + + compress_output == 'no' or compress_output == 'infer' and not (input.ext.endswith('.gz') or input.ext.endswith('.bz2')) + + + + + compress_output == 'yes' or compress_output == 'infer' and input.ext.endswith('.gz') or input.ext.endswith('.bz2') + + - - + + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - fastx_toolkit @@ -51,13 +42,7 @@ - - - - - - diff -r 5dbca5fbdc45 -r b8e3c0a52f33 test-data/fastq_to_fasta-in2.fastq.gz Binary file test-data/fastq_to_fasta-in2.fastq.gz has changed diff -r 5dbca5fbdc45 -r b8e3c0a52f33 test-data/fastq_to_fasta-out2.out.gz Binary file test-data/fastq_to_fasta-out2.out.gz has changed