From c2e67f103e2b83fd0fb9757ea6b75984d4fd9b64 Mon Sep 17 00:00:00 2001 From: Marius van den Beek Date: Mon, 25 Mar 2024 15:56:56 +0100 Subject: [PATCH] Fix bam2fastx outputs (#5907) * Fix bam2fastx outputs The outputs were never going to be produced. Together with https://github.com/galaxyproject/galaxy/issues/17829 we ended up with passing tests when they should have failed. * Bump version --- tools/pbtk/bam2fastx.xml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tools/pbtk/bam2fastx.xml b/tools/pbtk/bam2fastx.xml index d9a12646c05..7a894848690 100644 --- a/tools/pbtk/bam2fastx.xml +++ b/tools/pbtk/bam2fastx.xml @@ -2,7 +2,7 @@ PacBio BAM to Fastx 3.1.1 - 0 + 1 pbtk @@ -18,9 +18,9 @@ pbindex input.bam && #end if input.bam --num-threads "\${GALAXY_SLOTS:-1}" && -#if $output_format == "fasta": +#if $output_format == "fasta_gz": mv output.fasta.gz '$output_fasta_gz' -#elif $output_format == "fastq": +#elif $output_format == "fastq_gz": mv output.fastq.gz '$output_fastq_gz' #end if ]]> @@ -33,28 +33,28 @@ input.bam - output_format == "fasta" + output_format == "fasta_gz" - output_format == "fastq" + output_format == "fastq_gz" - - + + - + - - + + - +