1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
|
=head1 LICENSE
Copyright [2015-2018] EMBL-European Bioinformatics Institute
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
=cut
package Bio::DB::HTS::Tabix;
use Bio::DB::HTS;
use Bio::DB::HTS::Tabix::Iterator;
$Bio::DB::HTS::Tabix::VERSION = '3.01';
use strict;
use warnings;
use Scalar::Util qw/reftype/;
use File::Spec;
use Cwd;
sub new {
my $class = shift;
my (%args) = @_;
my $filename = $args{filename};
my $warnings = $args{warnings};
my $use_tmp_dir = $args{use_tmp_dir};
# filename checks
die "Tabix region lookup requires a gzipped, tabixed bedfile" unless $filename =~ /gz$/;
my $pdir = getcwd;
my $tmpdir = File::Spec->tmpdir;
#change to the tmp dir to allow the C library to download remote index files
if( Bio::DB::HTSfile->is_remote($filename) && ( !defined $use_tmp_dir || $use_tmp_dir != 0) )
{
chdir($tmpdir);
}
my $htsfile = Bio::DB::HTSfile->open($filename);
my $tabix_index = tbx_open($filename);
# use Data::Dumper; print $tabix_index; die;
die "Couldn't find index for file " . $filename unless $tabix_index;
my $header = tbx_header($htsfile, $tabix_index);
if( $header ) {
$header = join "\n", @{ $header } ;
} else {
$header = '';
}
chdir($pdir);
my $self = bless {
_htsfile => $htsfile,
_filename => $filename,
_tabix_index => $tabix_index,
_header => $header,
}, ref $class || $class;
return $self;
}
sub query_full {
my ($self, $chr, $start, $end) = @_;
my $region = $chr;
$region .= ':'; #trailing ':' required for odd chr containing ':'
if(defined $start) {
$region .= $start;
$region .= '-'.$end if(defined $end);
}
my $iter = tbx_query( $self->{_tabix_index}, $region );
unless ( $iter ) {
# this likely means the chromosome wasn't found in the tabix index, or it couldn't parse the provided region.
my $seqnames_hash = { map { $_ => 1 } @{ $self->seqnames } };
if ( not exists $seqnames_hash->{ $chr } ) {
# warn("Specified chromosome '$chr' does not exist in file " . $self->{_filename});
return undef;
} else {
die "Unable to get iterator for region '$region' in file ". $self->{_filename} . " -- htslib couldn't parse your region string";
}
}
return Bio::DB::HTS::Tabix::Iterator->new( _tabix_iter => $iter, _htsfile => $self->{_htsfile}, _tabix_index => $self->{_tabix_index} );
}
sub query {
my ( $self, $region ) = @_;
die "Please provide a region" unless defined $region;
my ( $chr, $start, $end ) = $region =~ /^([^:]+)(?::(\d+))?(?:-(\d+))?$/;
unless ( defined $chr ) {
die "You must specify a region in the format chr, chr:start or chr:start-end";
}
if ( defined $end ) {
die "End in $region is less than the start" if $end < $start;
}
else {
if ( defined $start ) {
#$self->log->warn("You have not specified an end, which actually means chr:start-end_of_chromosome");
}
}
return $self->query_full($chr, $start, $end);
}
sub seqnames {
my $self = shift;
return tbx_seqnames($self->{_tabix_index});
}
sub header {
my $self = shift;
return $self->{_header};
}
sub header_array {
my $self = shift;
if( $self->{_header} )
{
my @lines = split(/\n/,$self->{_header});
return @lines ;
}
return ;
}
#free up memory allocated in XS code
sub close {
my $self = shift;
if ( $self->{_tabix_index} ) {
tbx_close($self->{_tabix_index});
delete $self->{_tabix_index};
}
}
sub DESTROY {
my $self = shift;
return if reftype($self) ne 'HASH';
$self->close();
return;
}
1;
__END__
=head1 NAME
Bio::DB::HTS::Tabix - Object oriented access to the underlying tbx C methods
=head1 SYNOPSIS
use feature qw( say );
use Bio::DB::HTS::Tabix;
my $tabix = Bio::DB::HTS::Tabix->new( filename => "gerp_plus_plus_31July2014.gz" );
say $tabix->header;
my $iter = $tabix->query("1:4000005-4000009");
while ( my $n = $iter->next ) {
say $n;
}
$tabix->close;
=head1 DESCRIPTION
A high level object oriented interface to the htslib tabix (tbx.h) api. Currently it only supports
retrieving regions from a tabixed file, because that's all I needed it for.
=head2 Attributes
=over 12
=item C<filename>
The gzipped file you want to query. Must have a filename.tbi (the index is not created automatically)
=back
=head2 Methods
=over 12
=item C<header>
Returns all the header lines as a single scalar from the tabixed file
=item C<query>
Takes a single region like: '1:4000005-4000009' or '12:5000000'. The coordinate format is 0 or 1-based for start and stop positions depending on how the Tabix index file was created - by default this is 1.
The index for remote files will be downloaded to the system temporary directory by default. Set use_tmp_dir to 0 to download to the current working directory instead.
Here are some examples showing Tabix.
use Bio::DB::HTS::Tabix;
my $tabix = Bio::DB::HTS::Tabix->new(filename => $file, use_tmp_dir => 1);
# Calling region 1
$iter = $tabix->query("1");
printf("Calling region 1\n" );
while(my $l = $iter->next) {
print $l, "\n";
}
Gives:
1 4000000 4000000 -0.972
1 4000001 4000001 -0.153
1 4000002 4000002 -2.15
1 4000003 4000003 -1.17
1 4000003 4000006 -3.6
1 4000006 4000007 -6.7
1 4000007 4000009 -7.9
#Calling a range
$iter = $tabix->query("1:4000003-4000006");
gives
1 4000003 4000003 -1.17
1 4000003 4000006 -3.6
1 4000006 4000007 -6.7
#Calling region 1:4000003 to end of region 1
$iter = $tabix->query("1:4000003");
gives
1 4000003 4000003 -1.17
1 4000003 4000006 -3.6
1 4000006 4000007 -6.7
1 4000007 4000009 -7.9
#Calling single location 1:4000002
$iter = $tabix->query("1:4000002-4000002");
gives
1 4000002 4000002 -2.15
Returns a L<Bio::DB::HTS::Tabix::Iterator> for the specified region
=item C<seqnames>
Returns an array ref of chromosomes that are in the indexed file
=back
=head1 AUTHOR
Alex Hodgkins
Rishi Nag E<lt>rishi@ebi.ac.ukE<gt>
=cut
|