Skip to content

Commit

Permalink
fixed multi read group issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyunmaths authored Sep 16, 2024
1 parent 91ad12e commit 2eb286f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/muse_sump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -410,12 +410,12 @@ void muse_sump(const char *inFile,
// check if the BAM has multiple read group
//
bool isMultiReadGroup = false;
for(i = 0; i < ReadGroupCount.size(); i++) {
if(ReadGroupCount[i] > 1) {
isMultiReadGroup = true;
break;
}
}
//for(i = 0; i < ReadGroupCount.size(); i++) {
// if(ReadGroupCount[i] > 1) {
// isMultiReadGroup = true;
// break;
// }
//}

// process "MuSE call" header information
//
Expand Down

0 comments on commit 2eb286f

Please sign in to comment.