Skip to content
Snippets Groups Projects
Commit 7439f3d4 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Fix typo

parent fe78d034
No related branches found
No related tags found
No related merge requests found
...@@ -61,12 +61,12 @@ class GatkVariantcalling(val root: Configurable) extends QScript with BiopetQScr ...@@ -61,12 +61,12 @@ class GatkVariantcalling(val root: Configurable) extends QScript with BiopetQScr
if (files.size == 1) return files if (files.size == 1) return files
if (files.isEmpty) throw new IllegalStateException("Files can't be empty") if (files.isEmpty) throw new IllegalStateException("Files can't be empty")
if (!doublePreProces.get) return files if (!doublePreProces.get) return files
val markDub = MarkDuplicates(this, files, new File(outputDir + outputName + ".dedup.bam")) val markDup = MarkDuplicates(this, files, new File(outputDir + outputName + ".dedup.bam"))
add(markDub, isIntermediate = useIndelRealigner) add(markDup, isIntermediate = useIndelRealigner)
if (useIndelRealigner) { if (useIndelRealigner) {
List(addIndelRealign(markDub.output, outputDir, isIntermediate = false)) List(addIndelRealign(markDup.output, outputDir, isIntermediate = false))
} else { } else {
List(markDub.output) List(markDup.output)
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment