@gmod/jbrowse
Version:
JBrowse - client-side genome browser
41 lines (35 loc) • 1 kB
JavaScript
define([
'dojo/_base/declare',
'dijit/Destroyable',
'JBrowse/Util'
],
function(
declare,
Destroyable,
Util
) {
return declare( Destroyable, {
constructor: function( args ) {
dojo.mixin( this, args );
var nodeArgs = this.node || {};
delete this.node;
this.domNode = dojo.create( 'div', nodeArgs );
this.domNode.block = this;
},
containsBp: function( bp ) {
return this.startBase <= bp && this.endBase >= bp;
},
bpToX: function( coord ) {
//console.log(coord+" "+this.startBase+" "+this.scale+" "+(coord-this.startBase)*this.scale);
return (coord-this.startBase)*this.scale;
},
toString: function() {
return this.startBase+'..'+this.endBase;
},
destroy: function() {
if( this.domNode )
Util.removeAttribute( this.domNode, 'block' );
this.inherited( arguments );
}
});
});