Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Added deletion of CSI indices in DeleteBam. #364

Merged
merged 1 commit into from
Aug 22, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tasks/src/main/scala/dagr/tasks/picard/DeleteBam.scala
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ class DeleteBam(val bam: Path*) extends SimpleInJvmTask {
PathUtil.extensionOf(b) match {
case Some(".bam") =>
paths += PathUtil.pathTo(bam.toString + ".bai")
paths += PathUtil.pathTo(bam.toString + ".csi")
paths += PathUtil.replaceExtension(b, ".bai")
case Some(".cram") =>
paths += PathUtil.pathTo(bam.toString + ".crai")
Expand Down