# HG changeset patch
# User iuc
# Date 1687887448 0
# Node ID 8979c288aefbbc70724d97bf262343dfa96e1a8c
# Parent e282bc27be9ad6e7221f522c62778f207ff8179c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_to_fasta commit 415a5c5de30530910f3039e5fc66aa15103c6f20
diff -r e282bc27be9a -r 8979c288aefb fastq_to_fasta.xml
--- a/fastq_to_fasta.xml Thu Jan 30 13:29:38 2020 -0500
+++ b/fastq_to_fasta.xml Tue Jun 27 17:37:28 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 e282bc27be9a -r 8979c288aefb test-data/fastq_to_fasta-in2.fastq.gz
Binary file test-data/fastq_to_fasta-in2.fastq.gz has changed
diff -r e282bc27be9a -r 8979c288aefb test-data/fastq_to_fasta-out2.out.gz
Binary file test-data/fastq_to_fasta-out2.out.gz has changed