Skip to content

Commit

Permalink
cleaned up main js file
Browse files Browse the repository at this point in the history
  • Loading branch information
bhofmei committed Nov 10, 2016
1 parent e8aa9b0 commit b7be680
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions js/main.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
define([
'dojo/_base/declare',
'JBrowse/Plugin',
'NucleotideDensityPlugin/Store/Util'
'JBrowse/Plugin'
],
function(
declare,
JBrowsePlugin,
storeUtil
JBrowsePlugin
) {
return declare( JBrowsePlugin,
{
Expand All @@ -19,18 +17,8 @@ return declare( JBrowsePlugin,

browser.registerTrackType({
label: 'NucDensity',
type: 'NucleotideDensityPlugin/View/Track/NucDensityMulti'
type: 'NucleotideDensityPlugin/View/Track/NucleotideDensity'
});
/*var p = new ndstore({context:['CG'], windowDelta: 100, windowSize: 500, browser: browser, refSeq: 'stuff'});
console.log(p);*/
/*var m = 'chg';
var t = storeUtil._transformNuc(m);
//console.log(m,t);
m='whh';
var t = storeUtil._transformNuc(m);
//console.log(m,t);
//console.log('jls', storeUtil._reverseComplement('jls'));
console.log('chh',storeUtil.getPossibilities('chh'));*/
}
});
});

0 comments on commit b7be680

Please sign in to comment.