From 7627c314c98f1d179b5031053d575f13404cc8fc Mon Sep 17 00:00:00 2001
From: JasperBoom <jboom@infernum.nl>
Date: Mon, 20 Apr 2020 16:02:32 +0200
Subject: [PATCH] Fix travis error.

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

diff --git a/samtools.wdl b/samtools.wdl
index 9198119..20f7ef0 100644
--- a/samtools.wdl
+++ b/samtools.wdl
@@ -211,7 +211,7 @@ task Sort {
 
     parameter_meta {
         # inputs
-        inputFile: {description: "The input SAM file.", category: "required"}
+        inputBam: {description: "The input SAM file.", category: "required"}
         outputPrefix: {description: "Output directory path + output file prefix.", category: "required"}
         sortByName: {description: "Sort the inputBam by read name instead of position.", category: "advanced"}
         cores: {description: "The number of cores to be used.", category: "advanced"}
@@ -219,7 +219,7 @@ task Sort {
         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
-        outputSortedBAM: {description: "Sorted BAM file."}
+        outputSortedBam: {description: "Sorted BAM file."}
     }
 }
 
-- 
GitLab