Skip to content

Commit

Permalink
fix: cnv track
Browse files Browse the repository at this point in the history
  • Loading branch information
sehilyi committed Mar 5, 2024
1 parent 86a6e51 commit 4c9f8bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,9 +315,9 @@ function getOverviewSpec(option: SpecOption): View[] {
},
tracks.driver(id, driversToTsvUrl(drivers), width, 40, 'top'),
tracks.boundary('driver', 'top'),
cnv ? [tracks.gain(id, cnv, width, 40, 'top', cnFields)] : [],
...(cnv ? [tracks.gain(id, cnv, width, 40, 'top', cnFields)] : []),
tracks.boundary('gain', 'top'),
cnv ? [tracks.loh(id, cnv, width, 40, 'top', cnFields)] : [],
...(cnv ? [tracks.loh(id, cnv, width, 40, 'top', cnFields)] : []),
tracks.boundary('loh', 'top'),
tracks.sv(id, sv, width, 80, 'top', selectedSvId)
]
Expand Down

0 comments on commit 4c9f8bc

Please sign in to comment.