Skip to content

Commit

Permalink
Parser
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Feb 15, 2018
1 parent 3217ba8 commit e648527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JBrowse/Store/SeqFeature/VCFTabix.js
Expand Up @@ -32,7 +32,7 @@ var VCFIndexedFile = declare( TabixIndexedFile, {
parseLine: function() {
var i = this.inherited( arguments );
if( i ) {
var ret = i.fields[7].match(/;END=(\d+)/);
var ret = i.fields[7].match(/END=(\d+)/);
i.start--;
i.end = ret ? +ret[1] : i.start + i.fields[3].length;
}
Expand Down

0 comments on commit e648527

Please sign in to comment.