File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -501,8 +501,8 @@ bool SplitTool::SplitToolPrivate::SplitListTagImpl(BamAlignment& al) {
501
501
else {
502
502
// make list label from tag data
503
503
stringstream listTagLabelStream;
504
- typename TagValueType::const_iterator tagValueIter = currentValue.cbegin ();
505
- typename TagValueType::const_iterator tagValueEnd = currentValue.cend ();
504
+ typename TagValueType::const_iterator tagValueIter = currentValue.begin ();
505
+ typename TagValueType::const_iterator tagValueEnd = currentValue.end ();
506
506
for (; tagValueIter != tagValueEnd; ++tagValueIter)
507
507
listTagLabelStream << (*tagValueIter) << m_settings->ListTagDelimiter ;
508
508
listTagLabel = listTagLabelStream.str ();
@@ -514,7 +514,7 @@ bool SplitTool::SplitToolPrivate::SplitListTagImpl(BamAlignment& al) {
514
514
writerIter = outputFiles.find (listTagLabel);
515
515
516
516
// if not found, create one
517
- if (writerIter == outputFiles.cend ()) {
517
+ if (writerIter == outputFiles.end ()) {
518
518
519
519
// open new BamWriter, save first alignment
520
520
stringstream outputFilenameStream;
You can’t perform that action at this time.
0 commit comments