Skip to content

Commit

Permalink
parse interact file start and end as numbers (#1670)
Browse files Browse the repository at this point in the history
  • Loading branch information
SchwarzMarek authored Aug 13, 2023
1 parent e4141fe commit 2a12406
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/feature/decode/interact.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ function decodeInteract(tokens, header) {

var feature = {
chr: tokens[0],
start: tokens[1],
end: tokens[2],
start: Number.parseInt(tokens[1]),
end: Number.parseInt(tokens[2]),

chr1: tokens[8],
start1: Number.parseInt(tokens[9]),
Expand Down

0 comments on commit 2a12406

Please sign in to comment.