Skip to content

Commit 31faa29

Browse files
changing one formatting detail
1 parent 4fbcc7e commit 31faa29

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/utils/format-reads.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,7 @@ merge_cigar_ops(const size_t n_cigar, uint32_t *cigar) {
287287
auto c_end = c_itr1 + n_cigar;
288288
auto c_itr2 = c_itr1 + 1;
289289
auto op1 = bam_cigar_op(*c_itr1);
290-
while (c_itr2 != c_end)
291-
{
290+
while (c_itr2 != c_end) {
292291
auto op2 = bam_cigar_op(*c_itr2);
293292
if (op1 == op2) {
294293
*c_itr1 = bam_cigar_gen(bam_cigar_oplen(*c_itr1) +

0 commit comments

Comments
 (0)