Skip to content

Commit

Permalink
Release of version 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mpschr committed Jan 23, 2015
1 parent 8c2038f commit 9243b09
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 9 deletions.
7 changes: 6 additions & 1 deletion build/muts-needle-plot.js

Large diffs are not rendered by default.

Binary file modified build/muts-needle-plot.min.gz.js
Binary file not shown.
2 changes: 1 addition & 1 deletion build/muts-needle-plot.min.js

Large diffs are not rendered by default.

11 changes: 5 additions & 6 deletions how-to-publish.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Make sure you have npm installed.

git pull

2. Check and increment the version in the `package.json` file. E.g. version "0.7.1"
2. Check and increment the version in the `package.json` file. E.g. version "0.7.2"

3. Check if examples are working fine

Expand All @@ -23,8 +23,8 @@ Make sure you have npm installed.

5. Commit all changes, push to repository

git commit -a -m "Release of version 0.7.1"
git tag -a v0.7.1 -m 'version 0.7.1'
git commit -a -m "Release of version 0.7.2"
git tag -a v0.7.2 -m 'version 0.7.2'
git push
git push origin --tags

Expand All @@ -35,7 +35,6 @@ Make sure you have npm installed.
A needle-plot (aka stem-plot or lollipop-plot) plots each data point as a big dot and adds a vertical line that makes it appear like a needle.

Changelog:
v0.7.1
* TP53 EXAMPLE
* Counts in legend
v0.7.2
* Fix: Needle heads on top of regions

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "muts-needle-plot",
"description": "Draws a Needle-Plot for mutation data (stacked).",
"version": "0.7.1",
"version": "0.7.2",
"homepage": "https://github.com/bbglab/muts-needle-plot",
"author": {
"name": "Michael P Schroeder",
Expand Down
5 changes: 5 additions & 0 deletions src/js/MutsNeedlePlot.js
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,11 @@ MutsNeedlePlot.prototype.drawNeedles = function(svg, mutationData, regionData) {
}
self.drawLegend(svg);
self.drawAxes(svg);

/* Bring needle heads in front of regions */
needleHeads.each(function() {
this.parentNode.appendChild(this);
});
}

};
Expand Down

0 comments on commit 9243b09

Please sign in to comment.