Skip to content
Snippets Groups Projects

fix regex in slitNCigarReads

Merged Ruben Vorderman requested to merge fix_splitNCigarReads into develop
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -373,7 +373,7 @@ task SplitNCigarReads {
output {
File bam = outputBam
File bamIndex = sub(outputBam, "\\.bam$", ".bai")
File bamIndex = sub(outputBam, "\.bam$", ".bai")
}
runtime {
Loading