Skip to content

Commit

Permalink
updated v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bhofmei committed Aug 22, 2017
1 parent eff5964 commit c153240
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 19 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
node_modules
npm-debug.log
npm-debug.log
built
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,5 +114,4 @@ Additional parameters that can be specified for the track configuration.
## Future Plans
- "Loading" screen when recomputing after changing a track setting
- Ability to add track locally by adding option to menu bar, "File"
- Possibly improved score view (currently works fine but is not visually appealing)
- SVG-based track (compared to current canvas-based) for improved screenshots
- Possibly improved score view (currently works fine but is not visually appealing)
30 changes: 15 additions & 15 deletions js/main.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
define([
'dojo/_base/declare',
'JBrowse/Plugin'
'dojo/_base/declare',
'JBrowse/Plugin'
],
function(
declare,
JBrowsePlugin
) {
return declare( JBrowsePlugin,
{
constructor: function( args ) {
function (
declare,
JBrowsePlugin
) {
return declare(JBrowsePlugin, {
constructor: function (args) {
var browser = args.browser;

// do anything you need to initialize your plugin here
console.log( "NucleotideDensityPlugin starting" );
console.log("NucleotideDensityPlugin starting");
// register new track type
this.config.version = 'v1.1.0';

browser.registerTrackType({
label: 'NucDensity',
type: 'NucleotideDensityPlugin/View/Track/NucleotideDensity'
label: 'NucDensity',
type: 'NucleotideDensityPlugin/View/Track/NucleotideDensity'
});
}
});
});
}
});
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jbplugin-nucdens",
"version": "1.0.4",
"version": "1.1.0",
"description": "Multiple heatmap-style plots for user-specified sequence contexts",
"main": "js/main.js",
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Release notes

v1.1.0 - Aug 22, 2017
- SVG density tracks (useful for screenshots)

v1.0.4 - Jul 17, 2017
- show/hide track sublabels (the contexts) without redrawing entire track

Expand Down

0 comments on commit c153240

Please sign in to comment.