Skip to content

Commit

Permalink
No longer need to force split allele
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettjstevens committed Nov 25, 2018
1 parent b00af45 commit d3b6545
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/JBrowse/View/Track/_VariantDetailMixin.js
Expand Up @@ -146,7 +146,6 @@ return declare( [FeatureDetailMixin, NamedFeatureFiltersMixin], {
else value_parse = values[0];

var splitter = (value_parse.match(/[\|\/]/g)||[])[0]; // only accept | and / splitters since . can mean no call
alt = alt[0].split(','); // force split on alt alleles
var refseq = underlyingRefSeq ? 'ref ('+underlyingRefSeq+')' : 'ref';
values = array.map( splitter ? value_parse.split(splitter) : value_parse, function( gtIndex ) {
gtIndex = parseInt( gtIndex ) || gtIndex;
Expand Down

0 comments on commit d3b6545

Please sign in to comment.