Skip to content

Commit

Permalink
Update Tabix query to query_full. Allows GRCh38 contig names to b…
Browse files Browse the repository at this point in the history
…e handled.
  • Loading branch information
David Jones committed Mar 26, 2018
1 parent 3336c05 commit 462b996
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ sub _getTranscriptsFromCache {
} else {
$min = ($gp->getMinPos - $SEARCH_BUFFER);
}
my $iter = $self->{_cache_tbx}->query(sprintf '%s:%d-%d', $gp->getChr(),$min,$max);
my $iter = $self->{_cache_tbx}->query_full($gp->getChr(),$min,$max);
return undef unless defined $iter;
my $out = undef;
while(my $ret = $iter->next){
Expand Down

0 comments on commit 462b996

Please sign in to comment.