Skip to content

Commit

Permalink
LGV synteny disolay handle CIGAR X/= operators
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Jun 13, 2024
1 parent 93271bc commit b20ac1c
Show file tree
Hide file tree
Showing 2 changed files with 827 additions and 837 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function findPosInCigar(cigar: string[], startX: number) {
mateX += len
} else if (op === 'D') {
featX += min
} else if (op === 'M') {
} else if (op === 'M' || op === '=' || op === 'X') {
mateX += min
featX += min
}
Expand Down
Loading

0 comments on commit b20ac1c

Please sign in to comment.