From 9ad9425766843e2706ff440457d6ec1d8b21916b Mon Sep 17 00:00:00 2001
From: JasperBoom <jboom@infernum.nl>
Date: Fri, 7 Aug 2020 13:44:02 +0200
Subject: [PATCH] Correct output naming.

---
 bam2fastx.wdl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bam2fastx.wdl b/bam2fastx.wdl
index 09c5689..21f1c60 100644
--- a/bam2fastx.wdl
+++ b/bam2fastx.wdl
@@ -102,7 +102,7 @@ task Bam2Fastq {
     }
 
     output {
-        File fastaFile = outputPrefix + ".fastq.gz"
+        File fastqFile = outputPrefix + ".fastq.gz"
     }
 
     runtime {
@@ -124,6 +124,6 @@ task Bam2Fastq {
         dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.", category: "advanced"}
 
         # outputs
-        fastaFile: {description: "The fastq output file."}
+        fastqFile: {description: "The fastq output file."}
     }
 }
-- 
GitLab