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
|
# -*-Perl-*- Test Harness script for Bioperl
# $Id: SeqFeatCollection.t 16151 2009-09-22 16:52:29Z cjfields $
use strict;
BEGIN {
use lib '.';
use Bio::Root::Test;
test_begin(-tests => 24,
-requires_module => 'DB_File');
use_ok('Bio::SeqFeature::Collection');
use_ok('Bio::Location::Simple');
use_ok('Bio::Tools::GFF');
use_ok('Bio::SeqIO');
}
my $verbose = test_debug();
#First of all we need to create an flat db
my $simple = Bio::SeqIO->new(-format => 'genbank',
-file => test_input_file('AB077698.gb'));
my @features;
my $seq = $simple->next_seq();
@features = $seq->top_SeqFeatures();
is(scalar @features, 11);
my $col = Bio::SeqFeature::Collection->new(-verbose => $verbose);
ok($col);
is($col->add_features( \@features), 11);
my @feat = $col->features_in_range(-range => ( Bio::Location::Simple->new
(-start => 100,
-end => 300,
-strand => 1) ),
-contain => 0);
is(scalar @feat, 5);
if( $verbose ) {
foreach my $f ( @feat ) {
print "location: ", $f->location->to_FTstring(), "\n";
}
}
is(scalar $col->features_in_range(-range => ( Bio::Location::Simple->new
(-start => 100,
-end => 300,
-strand => -1) ),
-strandmatch => 'ignore',
-contain => 1), 2);
@feat = $col->features_in_range(-start => 79,
-end => 1145,
-strand => 1,
-strandmatch => 'strong',
-contain => 1);
is(scalar @feat, 5);
if( $verbose ) {
foreach my $f ( sort { $a->start <=> $b->start} @feat ) {
print $f->primary_tag, " ", $f->location->to_FTstring(), "\n";
}
}
is($feat[0]->primary_tag, 'CDS');
ok($feat[0]->has_tag('gene'));
$verbose = 0;
# specify input via -fh or -file
my $gffio = Bio::Tools::GFF->new(-file => test_input_file('myco_sites.gff'),
-gff_version => 2);
@features = ();
# loop over the input stream
while(my $feature = $gffio->next_feature()) {
# do something with feature
push @features, $feature;
}
$gffio->close();
is(scalar @features, 412);
$col = Bio::SeqFeature::Collection->new(-verbose => $verbose,
-usefile => 1);
ok($col);
is($col->add_features( \@features), 412);
my $r = Bio::Location::Simple->new(-start => 67700,
-end => 150000,
-strand => 1);
@feat = $col->features_in_range(-range => $r,
-strandmatch => 'ignore',
-contain => 0);
is(scalar @feat, 56);
is($col->feature_count, 412);
my $count = $col->feature_count;
$col->remove_features( [$features[58], $features[60]]);
is( $col->feature_count, 410);
@feat = $col->features_in_range(-range => $r,
-strandmatch => 'ignore',
-contain => 0);
is( scalar @feat, 54);
# add the removed features back in in order to get the collection back to size
$col->add_features([$features[58], $features[60]]);
# let's randomize so we aren't removing and adding in the same order
# and hopefully randomly deal with a bin's expiration
fy_shuffle(\@features);
foreach my $f ( @features ) {
$count--, next unless defined $f;
$col->remove_features([$f]);
# ok( $col->feature_count, --$count);
}
is($col->feature_count, 0);
# explicitly destroy old instances above (should clear out any open filehandles
# w/o -keep flag set)
undef $col;
my $filename = test_output_file();
my $newcollection = Bio::SeqFeature::Collection->new(-verbose => $verbose,
-keep => 1,
-file => $filename);
$newcollection->add_features(\@feat);
is($newcollection->feature_count, 54);
undef $newcollection;
ok(-s $filename);
$newcollection = Bio::SeqFeature::Collection->new(-verbose => $verbose,
-file => $filename);
is($newcollection->feature_count, 54);
undef $newcollection;
ok( ! -e $filename);
# without -keep => 1, $filename was deleted as expected.
# to stop Bio::Root::Test complaining that the temp file was already deleted,
# we'll just create it again
open(TMP, ">", $filename);
print TMP "temp\n";
close(TMP);
if( $verbose ) {
my @fts = sort { $a->start <=> $b->start}
grep { $r->overlaps($_,'ignore') } @features;
if( $verbose ) {
foreach my $f ( @fts ) {
print $f->primary_tag, " ", $f->location->to_FTstring(), "\n";
}
print "\n";
}
my %G = map { ($_,1) } @feat;
my $c = 0;
foreach my $A ( @fts ) {
if( ! $G{$A} ) {
print "missing ", $A->primary_tag, " ", $A->location->to_FTstring(), "\n";
} else {
$c++;
}
}
print "Number of features correctly retrieved $c\n";
foreach my $f ( sort { $a->start <=> $b->start} @feat ) {
print $f->primary_tag, " ", $f->location->to_FTstring(), "\n";
}
}
sub fy_shuffle {
my $array = shift;
my $i;
for( $i = @$array; $i--; ) {
my $j = int rand($i+1);
next if $i==$j;
@$array[$i,$j] = @$array[$j,$i];
}
}
|