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
|
# This is -*-Perl-*- code
## Bioperl Test Harness Script for Modules
##
# $Id: SeqFeatCollection.t,v 1.8 2003/02/26 15:59:26 jason Exp $
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl test.t'
use strict;
use vars qw($NUMTESTS);
my $error;
BEGIN {
# to handle systems with no installed Test module
# we include the t dir (where a copy of Test.pm is located)
# as a fallback
eval { require Test; };
$error = 0;
if( $@ ) {
use lib 't';
}
use Test;
$NUMTESTS = 432;
plan tests => $NUMTESTS;
eval { require DB_File; };
if( $@ ) {
print STDERR "DB_File not installed. This means the SeqFeatCollection wont work\n";
for( 1..$NUMTESTS ) {
skip("DB_File",1);
}
$error = 1;
}
}
if( $error == 1 ) {
exit(0);
}
my $testnum;
my $verbose = $ENV{'BIOPERLDEBUG'} || 0;
## End of black magic.
##
## Insert additional test code below but remember to change
## the print "1..x\n" in the BEGIN block to reflect the
## total number of tests that will be run.
#First of all we need to create an flat db
require Bio::SeqFeature::Collection;
use Bio::Root::IO;
use Bio::Location::Simple;
use Bio::Tools::GFF;
use Bio::SeqIO;
my $simple = new Bio::SeqIO(-format => 'genbank',
-file => Bio::Root::IO->catfile
("t","data","AB077698.gb"));
my @features;
my $seq = $simple->next_seq();
@features = $seq->top_SeqFeatures();
ok(scalar @features, 11);
my $col = new Bio::SeqFeature::Collection(-verbose => $verbose);
ok($col);
ok($col->add_features( \@features), 11);
my @feat = $col->features_in_range(-range => ( new Bio::Location::Simple
(-start => 100,
-end => 300,
-strand => 1) ),
-contain => 0);
ok(scalar @feat, 5);
if( $verbose ) {
foreach my $f ( @feat ) {
print $f->location->to_FTstring(), "\n";
}
}
ok(scalar $col->features_in_range(-range => ( new Bio::Location::Simple
(-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);
ok(scalar @feat, 5);
if( $verbose ) {
foreach my $f ( sort { $a->start <=> $b->start} @feat ) {
print $f->primary_tag, " ", $f->location->to_FTstring(), "\n";
}
}
ok($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 => Bio::Root::IO->catfile
("t","data","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();
ok(scalar @features, 412);
$col = new Bio::SeqFeature::Collection(-verbose => $verbose,
-usefile => 1);
ok($col);
ok($col->add_features( \@features), 412);
my $r = new Bio::Location::Simple(-start => 67700,
-end => 150000,
-strand => 1);
@feat = $col->features_in_range(-range => $r,
-strandmatch => 'ignore',
-contain => 0);
ok(scalar @feat, 56);
ok($col->feature_count, 412);
my $count = $col->feature_count;
$col->remove_features( [$features[58], $features[60]]);
ok( $col->feature_count, 410);
@feat = $col->features_in_range(-range => $r,
-strandmatch => 'ignore',
-contain => 0);
ok( 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 ) {
next unless defined $f;
$col->remove_features([$f]);
ok( $col->feature_count, --$count);
}
ok($col->feature_count, 0);
my $filename = 'featcol.idx';
my $newcollection = new Bio::SeqFeature::Collection(-verbose => $verbose,
-keep => 1,
-file => $filename);
$newcollection->add_features(\@feat);
ok($newcollection->feature_count, 54);
undef $newcollection;
ok(-e $filename);
$newcollection = new Bio::SeqFeature::Collection(-verbose => $verbose,
-file => $filename);
ok($newcollection->feature_count, 54);
undef $newcollection;
ok( ! -e $filename);
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];
}
}
|