Skip to content

Commit c0eac05

Browse files
committed
Added dynseq track and updated the CHANGELOG
1 parent 78d5c4c commit c0eac05

File tree

5 files changed

+434
-260
lines changed

5 files changed

+434
-260
lines changed

CHANGELOG.md

Lines changed: 2 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,4 @@
1-
v1.2.0
2-
3-
- Soft and hard clipped regions are now included in the calculation of an appropriate row for a read. Without that, clipped regions would often overlap with other reads
4-
- New option `maxTileWidth` that controls when the "Zoom to see details" message is shown
5-
- New option `collapseWhenMaxTileWidthReached`. When this is set, the track height will be set to 20 when `maxTileWidth` is reached. This can be useful when there are a lot of tracks and you want to zoom out. With this option the pileup track will only take minimal space as long as you are zoomed out, so that it is easier to look at the other tracks.
6-
- Resolved some issues with a flickering "Zoom to see details" message.
7-
8-
v1.0.1
9-
10-
- Render BAM file tiles returned by resgen server
11-
12-
v1.0.0
13-
14-
- Added small example files to check non-standard reads (deletions, soft/hard clipping)
15-
- Build out `es` modules when `npm run build` is executed
16-
- Add option `workerScriptLocation`. This is needed when the worker script is not in the same folder as the pileup script
17-
- The client side data fetcher now accepts `bamUrl` and `baiUrl`. `url` is still supported
18-
- Added options `plusStrandColor` and `minusStrandColor`. When set, the reads are colored according to their strand.
19-
- Added the option `showCoverage` and `coverageHeight`, which displays read coverage information on top of the track
20-
- Improved mouseovers for reads and coverage
21-
- Bumped version of GMOD/bam-js. New version allows to retrieve the read sequence
22-
- Variants are now correctly colored based on the read sequence.
23-
- Added visualization of reads that contain hard clipping
24-
- Fixed a bug where MD strings would not be correctly parsed, when a deletion is present, e.g., `85^A16`
25-
- Added vertical stripes to represent deletions.
26-
- When there is soft clipping at the beginning of a read, substitutions that are following are now correctly extracted
27-
- Reads have been shifted by one. It now lines up with the sequence track and the bam file
28-
29-
v0.4.0
30-
31-
- Added customizeable color scheme
32-
33-
v0.3.5
34-
35-
- Added label position options
36-
37-
v0.3.4
38-
39-
- Highlight reads on mouseOver
40-
- Show nearest mismatch in mouseover popup
41-
- Enabled the showMousePosition option
42-
43-
v0.2.2
44-
45-
- Implemented exportAsSvg
46-
47-
v0.2.1
48-
49-
- Column higlass server format
50-
- Warning when zoomed out beyond `max_tile_width`
51-
521
v0.2.0
532

54-
- Support for higlass server-served tiles
55-
56-
v0.1.1
57-
58-
- Upgraded threads.js and added getThisScriptLocation so that the worker is pulled from the same location as the main script
59-
60-
v0.1.0
61-
62-
- First working version
3+
- Added dynseq track
4+
- Fixed higlass-pileup import

package-lock.json

Lines changed: 155 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,14 @@
4040
"eslint-plugin-jsx-a11y": "^6.0.3",
4141
"eslint-plugin-react": "^7.7.0",
4242
"file-loader": "^1.1.11",
43-
"higlass": "^1.10.1",
43+
"higlass": "^1.11.7",
4444
"html-loader": "^0.5.5",
4545
"html-webpack-plugin": "^3.1.0",
4646
"node-sass": "^4.8.3",
4747
"optimize-css-assets-webpack-plugin": "^4.0.0",
4848
"postcss-flexbugs-fixes": "^3.3.0",
4949
"postcss-loader": "^2.1.3",
50+
"prettier": "^2.4.1",
5051
"sass-loader": "^7.0.1",
5152
"string-replace-loader": "^2.2.0",
5253
"style-loader": "^0.20.3",
@@ -73,13 +74,14 @@
7374
"d3-request": "^1.0.6",
7475
"d3-scale": "^3.0.1",
7576
"higlass-arcs": "^0.3.3",
77+
"higlass-dynseq": "^0.1.5",
7678
"higlass-labelled-points-track": "^0.1.16",
79+
"higlass-multi-tileset": "^0.1.1",
7780
"higlass-multivec": "^0.2.10",
78-
"higlass-pileup": "^1.2.0",
81+
"higlass-pileup": "^1.3.1",
7982
"higlass-register": "^0.1.0",
8083
"higlass-transcripts": "^0.3.4",
8184
"lru-cache": "^6.0.0",
82-
"prettier": "^2.1.2",
8385
"raw-loader": "^4.0.2",
8486
"threads": "v1.6.3"
8587
}

0 commit comments

Comments
 (0)