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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
|
# -*-Perl-*- Test Harness script for Bioperl
# $Id$
use strict;
use constant TEST_COUNT => 116;
BEGIN {
use lib '.','..','./t/lib';
use Bio::Root::Test;
test_begin(-tests => TEST_COUNT,
-requires_module => 'DB_File');
$ENV{ORACLE_HOME} ||= '/home/oracle/Home';
use_ok('Bio::SeqFeature::Generic');
use_ok('Bio::DB::SeqFeature::Store');
use_ok('Bio::DB::SeqFeature::Store::GFF3Loader');
use_ok('Bio::Root::IO');
use_ok('Bio::DB::Fasta');
use_ok('File::Copy');
}
my $DEBUG = test_debug();
my $gff_file = test_input_file('test.gff3');
my (@f,$f,$f2,$sf1,$sf2,$sf3,@s,$s,$seq1,$seq2,$count,$new_features);
my @args = @ARGV;
@args = (-adaptor => 'memory') unless @args;
SKIP: {
my $db = eval { Bio::DB::SeqFeature::Store->new(@args) };
skip "DB load failed? Skipping all! $@", (TEST_COUNT - 6) if $@;
ok($db);
is( $db->isa('Bio::SeqFeature::CollectionI'), 1 );
my $loader = eval { Bio::DB::SeqFeature::Store::GFF3Loader->new(-store=>$db) };
skip "GFF3 loader failed? Skipping all! $@", (TEST_COUNT - 6) if $@;
ok($loader);
$new_features = 0;
SKIP: {
# skip("skipping memory adaptor-specific tests",27)
# unless $db->isa('Bio::DB::SeqFeature::Store::memory');
# test adding
my $n = Bio::SeqFeature::Generic->new(
# -primary_id => '_some_id', # you're not allowed to do this!!
-primary => 'repeat_123',
-start => 23,
-end => 512,
-strand => '+',
-display_name => 'My favorite feature'
);
ok( my $id = $db->add_features([$n]), 'adding a feature' );
ok( @f = $db->fetch($n->primary_id));
is( scalar @f, 1 );
$f = $f[0];
is( $f->primary_id, $n->primary_id);
$f2 = Bio::SeqFeature::Generic->new(
-start => 10,
-end => 100,
-strand => -1,
-primary => 'repeat_123', # -primary_tag is a synonym
-source_tag => 'repeatmasker',
-display_name => 'alu family',
-score => 1000,
-tag => { new => 1,
author => 'someone',
sillytag => 'this is silly!' }
);
ok( $db->store($f2) , 'adding a feature with no primary_id' );
ok( $f2->primary_id );
# test fetching features
is( $db->fetch('-1'), undef, 'searching for a feature that shouldnt exist');
is( $db->get_features_by_type('repeat_123:repeatmasker'), 1, 'simple type' );
is( $db->get_features_by_type('repeat_123:'), 2, 'base type with colon' );
is( $db->get_features_by_type('repeat_123'), 2, 'base type alone' );
is( $db->get_features_by_type('rep.*'), 0, 'queried types are not interpolated' );
ok( @f = $db->types );
is( @f, 2 );
isa_ok($f[0], 'Bio::DB::GFF::Typename');
# test removing features
ok( $db->delete( $f ), 'feature deletion' );
is( $db->fetch( $f->primary_id ), undef );
$db->delete( $f2 );
ok( $db->store($f, $f2) );
# test adding seqfeatures
$sf1 = Bio::SeqFeature::Generic->new( -primary=>'seqfeat1', -start=>23, -end=>512 );
$sf2 = Bio::SeqFeature::Generic->new( -primary=>'seqfeat2', -start=>23, -end=>512 );
$sf3 = Bio::SeqFeature::Generic->new( -primary=>'seqfeat1', -start=>23, -end=>512, source_tag => 'dna' );
ok $db->add_features([$sf1, $sf2, $sf3]), 'adding subfeatures';
is $db->add_SeqFeature($f, $sf1), 1;
is $db->add_SeqFeature($f, $sf2, $sf3), 2;
is $db->add_SeqFeature($f, $sf1, $sf2, $sf3), 3;
# test fetching seqfeatures
is $db->fetch_SeqFeatures($f), 3;
is $db->fetch_SeqFeatures($f, 'seqfeat2'), 1;
is $db->fetch_SeqFeatures($f, 'seqfeat1:dna'), 1;
is $db->fetch_SeqFeatures($f, 'seqfeat1'), 2;
is $db->fetch_SeqFeatures($f, 'seqfeat1', 'seqfeat2'), 3;
is $db->fetch_SeqFeatures($f, 'seqfeat4'), 0;
$new_features = scalar $db->features;
}
# exercise the loader
ok($loader->load($gff_file));
# there should be one gene named 'abc-1'
@f = $db->get_features_by_name('abc-1');
is(@f,1);
$f = $f[0];
# there should be three subfeatures of type "exon" and three of type "CDS"
is($f->get_SeqFeatures('exon'),3);
is($f->get_SeqFeatures('CDS'),3);
# the sequence of feature abc-1 should match the sequence of the first exon at the beginning
$seq1 = $f->seq->seq;
$seq2 = (sort {$a->start<=>$b->start} $f->get_SeqFeatures('exon'))[0]->seq->seq;
is(substr($seq1,0,length $seq2),$seq2);
# sequence lengths should match
is(length $seq1, $f->length);
# if we pull out abc-1 again we should get the same object
($s) = $db->get_features_by_name('abc-1');
is($s, $f);
# test case-sensitivity
($s) = $db->get_features_by_name('Abc-1');
is($s, $f, 'feature names should be case insensitive');
# we should get two objects when we ask for abc-1 using get_features_by_alias
# this also depends on selective subfeature indexing
@f = $db->get_features_by_alias('abc-1');
is(@f,2);
# the two features should be different
isnt($f[0], $f[1]);
# test that targets are working
($f) = $db->get_features_by_name('match1');
ok(defined $f);
$s = $f->target;
ok(defined $s);
ok($s->seq_id eq 'CEESC13F');
$seq1 = $s->seq->seq;
is(substr($seq1,0,10), 'ttgcgttcgg');
# can we fetch subfeatures?
# gene3.a has the Index=1 attribute, so we should fetch it
($f) = $db->get_features_by_name('gene3.a');
ok($f);
# gene 3.b doesn't have an index, so we shouldn't get it
($f) = $db->get_features_by_name('gene3.b');
ok(!$f);
# test three-tiered genes
($f) = $db->get_features_by_name('gene3');
ok($f);
my @transcripts = $f->get_SeqFeatures;
is(@transcripts, 2);
is($transcripts[0]->method,'mRNA');
is($transcripts[0]->source,'confirmed');
# test that exon #2 is shared between the two transcripts
my @exons1 = $transcripts[0]->get_SeqFeatures('CDS');
is(@exons1, 3);
my @exons2 = $transcripts[1]->get_SeqFeatures('CDS');
my ($shared1) = grep {$_->display_name||'' eq 'shared_exon'} @exons1;
my ($shared2) = grep {$_->display_name||'' eq 'shared_exon'} @exons2;
ok($shared1 && $shared2);
is($shared1, $shared2);
is($shared1->primary_id, $shared2->primary_id);
# test attributes
is($shared1->phase, 0);
is($shared1->strand, +1);
is(($f->attributes('expressed'))[0], 'yes');
# test type getting
is (scalar $db->get_features_by_type('transcript'), 4, 'base type');
is (scalar $db->get_features_by_type('transcript:confirmed'), 2, 'base:source type');
# test autoloading
my ($gene3a) = grep { $_->display_name eq 'gene3.a'} @transcripts;
my ($gene3b) = grep { $_->display_name eq 'gene3.b'} @transcripts;
ok($gene3a);
ok($gene3b);
ok($gene3a->Is_expressed);
ok(!$gene3b->Is_expressed);
# the representation of the 3'-UTR in the two transcripts a and b is
# different (not recommended but supported by the GFF3 spec). In the
# first case, there are two 3'UTRs existing as independent
# features. In the second, there is one UTR with a split location.
is($gene3a->Three_prime_UTR, 2);
is($gene3b->Three_prime_UTR, 1);
my ($utr) = $gene3b->Three_prime_UTR;
is($utr->segments, 2);
my $location = $utr->location;
isa_ok($location, 'Bio::Location::Split');
is($location->sub_Location,2);
# ok, test that queries are working properly.
# find all features with the attribute "expressed"
@f = $db->get_features_by_attribute({expressed=>'yes'});
is(@f, 2);
# find all top-level features on Contig3 -- there should be two
@f = $db->get_features_by_location(-seq_id=>'Contig3');
is(@f, 2);
# find all top-level features on Contig3 that overlap a range -- only one
@f = $db->get_features_by_location(-seq_id=>'Contig3',-start=>40000,-end=>50000);
is(@f,1);
# find all top-level features on Contig3 of type 'assembly_component'
@f = $db->features(-seq_id=>'Contig3',-type=>'assembly_component');
is(@f, 1);
# test iteration
@f = $db->features;
is(scalar @f, 27+$new_features);
my $i = $db->get_seq_stream;
ok($i);
my $feature_count = @f;
while ($i->next_seq) { $count++ }
is($feature_count,$count);
# regression test on bug in which get_SeqFeatures('type') did not filter inline segments
@f = $db->get_features_by_name('agt830.3');
ok(@f && !$f[0]->get_SeqFeatures('exon'));
ok(@f && $f[0]->get_SeqFeatures('EST_match'));
# regression test on bug in which the load_id disappeared
is(@f && $f[0]->load_id, 'Match2');
# regress on proper handling of multiple ID features
my ($alignment) = $db->get_features_by_name('agt830.5');
ok($alignment);
is($alignment->target->start,1);
is($alignment->target->end, 654);
is($alignment->get_SeqFeatures, 2);
my $gff3 = $alignment->gff3_string(1);
my @lines = split "\n",$gff3;
is (@lines, 2);
ok("@lines" !~ /Parent=/s);
ok("@lines" =~ /ID=/s);
# regress on multiple parentage
my ($gp) = $db->get_features_by_name('gparent1');
my ($p1,$p2) = $gp->get_SeqFeatures;
my @c = sort {$a->start<=>$b->start} $p1->get_SeqFeatures;
is(scalar @c,2);
is($c[0]->phase,0);
is($c[1]->phase,1);
@c = sort {$a->start<=>$b->start} $p2->get_SeqFeatures;
is(scalar @c,2);
is($c[0]->phase,0);
is($c[1]->phase,1);
SKIP: {
test_skip(-tests => 2, -excludes_os => 'mswin');
if (my $child = open(F,"-|")) { # parent reads from child
cmp_ok(scalar <F>,'>',0);
close F;
# The challenge is to make sure that the handle
# still works in the parent!
my @f = $db->features();
cmp_ok(scalar @f,'>',0);
}
else { # in child
$db->clone;
my @f = $db->features();
my $feature_count = @f;
print $feature_count;
exit 0;
}
}
# test the -ignore_seqregion flag
# the original should have a single feature named 'Contig1'
my @f = $db->get_features_by_name('Contig1');
is(scalar @f,1);
$db = eval { Bio::DB::SeqFeature::Store->new(@args) };
$loader = eval { Bio::DB::SeqFeature::Store::GFF3Loader->new(-store=>$db,
-ignore_seqregion=>1)
};
$loader->load($gff_file);
@f = $db->get_features_by_name('Contig1');
is(scalar @f,0);
# test keyword search
my @results = $db->search_notes('interesting');
is(scalar @results,2,'keyword search; 1 term');
@results = $db->search_notes('terribly interesting');
is(scalar @results,2,'keyword search; 2 terms');
# test our ability to substitute a FASTA file for the database
my $fasta_dir = make_fasta_testdir();
my $dbfa = Bio::DB::Fasta->new($fasta_dir, -reindex => 1);
ok($dbfa);
ok(my $contig1=$dbfa->seq('Contig1'));
$db = Bio::DB::SeqFeature::Store->new(@args,-fasta=>$dbfa);
$loader = Bio::DB::SeqFeature::Store::GFF3Loader->new(-store=>$db);
ok($loader->load($gff_file));
ok($db->dna_accessor);
my $f = $db->segment('Contig1');
ok($f->dna eq $contig1);
ok(my $contig2 = $dbfa->seq('Contig2'));
($f) = $db->get_feature_by_name('match4');
my $length = $f->length;
ok(substr($contig2,0,$length) eq $f->dna);
# DESTROY for $dbfa sometimes is not being called at script end,
# so call it explicitly to close temporal filehandles
# and allow their deletion
$dbfa->DESTROY;
# Remove temporal database file used for SQLite tests
if ($db->isa('Bio::DB::SeqFeature::Store::DBI::SQLite')) {
$db->DESTROY;
unlink $db->{dbh_file};
}
# testing namespaces for mysql and Pg adaptor
SKIP: {
my $adaptor;
for (my $i=0; $i < @args; $i++) {
if ($args[$i] eq '-adaptor') {
$adaptor = $args[$i+1];
last;
}
}
skip "Namespaces only supported for DBI::mysql and DBI::Pg adaptors", 6, if ($adaptor ne 'DBI::mysql' && $adaptor ne 'DBI::Pg');
push(@args, ('-namespace', 'bioperl_seqfeature_t_test_schema'));
$db = eval { Bio::DB::SeqFeature::Store->new(@args) };
ok($db);
$loader = eval { Bio::DB::SeqFeature::Store::GFF3Loader->new(-store=>$db) };
ok($loader);
$loader->load($gff_file);
# there should be one gene named 'abc-1'
ok( @f = $db->get_features_by_name('abc-1') );
is(@f,1);
$f = $f[0];
# there should be three subfeatures of type "exon" and three of type "CDS"
is($f->get_SeqFeatures('exon'),3);
is($f->get_SeqFeatures('CDS'),3);
$db->remove_namespace();
}
sub make_fasta_testdir {
# this obfuscation is to deal with lockfiles by GDBM_File which can
# only be created on local filesystems apparently so will cause test
# to block and then fail when the testdir is on an NFS mounted system
my $io = Bio::Root::IO->new(-verbose => $DEBUG);
my $tempdir = test_output_dir();
my $test_dbdir = $io->catfile($tempdir, 'dbfa');
mkdir($test_dbdir); # make the directory
my $indir = test_input_file('dbfa');
opendir(INDIR,$indir) || die("cannot open dir $indir");
# effectively do a cp -r but only copy the files that are in there, no subdirs
for my $file ( map { $io->catfile($indir,$_) } readdir(INDIR) ) {
next unless (-f $file );
copy($file, $test_dbdir);
}
closedir(INDIR);
return $test_dbdir;
}
} # SKIP
|