We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f276bf commit 1e73b88Copy full SHA for 1e73b88
alignment/seqregions.h
@@ -2360,9 +2360,9 @@ auto cmaple::SeqRegions::containAtLeastNMuts(const int min_mut) const
2360
// loop over the vector of regions
2361
for (auto i = 0; i < size(); ++i)
2362
{
2363
- const auto* const seq_region = &(at(i));
+ const SeqRegion& seq_region = at(i);
2364
2365
- if (seq_region->type < num_states)
+ if (seq_region.type < num_states)
2366
2367
++count_mutations;
2368
0 commit comments