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
|
# -*-Perl-*- Test Harness script for Bioperl
# $Id: Unflattener2.t 15112 2008-12-08 18:12:38Z sendu $
use strict;
BEGIN {
use lib '.';
use Bio::Root::Test;
test_begin(-tests => 12);
use_ok('Bio::SeqIO');
use_ok('Bio::SeqFeature::Tools::Unflattener');
}
my $verbosity = test_debug();
my ($seq, @sfs);
my $unflattener = Bio::SeqFeature::Tools::Unflattener->new;
$unflattener->verbose($verbosity);
if (1) {
# this is an arabidopsise gbk record. it has no mRNA features.
# it has explicit exon/intron records
my @path = ("ATF14F8.gbk");
$seq = getseq(@path);
is ($seq->accession_number, 'AL391144');
my @topsfs = $seq->get_SeqFeatures;
my @cdss = grep {$_->primary_tag eq 'CDS'} @topsfs;
my $n = scalar(@topsfs);
if( $verbosity > 0 ) {
warn sprintf "TOP:%d\n", scalar(@topsfs);
write_hier(@topsfs);
}
# UNFLATTEN
@sfs = $unflattener->unflatten_seq(-seq=>$seq,
-use_magic=>1,
);
@sfs = $seq->get_SeqFeatures;
if( $verbosity > 0 ) {
warn "\n\nPOST PROCESSING:\n";
write_hier(@sfs);
warn sprintf "PROCESSED/TOP:%d\n", scalar(@sfs);
}
is(@sfs,28);
my @allsfs = $seq->get_all_SeqFeatures;
is(@allsfs,202);
my @mrnas = grep {$_->primary_tag eq 'mRNA'} @allsfs;
if( $verbosity > 0 ) {
warn sprintf "ALL:%d\n", scalar(@allsfs);
warn sprintf "mRNAs:%d\n", scalar(@mrnas);
}
# relationship between mRNA and CDS should be one-one
is(@mrnas,@cdss);
}
if (1) {
# this is a record from FlyBase
# it has mRNA features, and explicit exon/intron records
my @path = ("AnnIX-v003.gbk");
$seq = getseq(@path);
my @topsfs = $seq->get_SeqFeatures;
if( $verbosity > 0 ) {
warn sprintf "TOP:%d\n", scalar(@topsfs);
write_hier(@topsfs);
}
# UNFLATTEN
@sfs = $unflattener->unflatten_seq(-seq=>$seq,
-use_magic=>1,
);
@sfs = $seq->get_SeqFeatures;
if( $verbosity > 0 ) {
warn "\n\nPOST PROCESSING:\n";
write_hier(@sfs);
warn sprintf "PROCESSED/TOP:%d\n", scalar(@sfs);
}
is scalar(@sfs), 1;
my @exons = grep {$_->primary_tag eq 'exon'} $seq->get_all_SeqFeatures;
is scalar(@exons), 6; # total number of exons per splice
my %numberh = map {$_->get_tag_values("number") => 1} @exons;
my @numbers = keys %numberh;
if( $verbosity > 0 ) {
warn sprintf "DISTINCT EXONS: %d [@numbers]\n", scalar(@numbers);
}
is scalar(@numbers), 6; # distinct exons
}
if (1) {
# example of a BAD genbank entry
my @path = ("dmel_2Lchunk.gb");
$seq = getseq(@path);
my @topsfs = $seq->get_SeqFeatures;
if( $verbosity > 0 ) {
warn sprintf "TOP:%d\n", scalar(@topsfs);
write_hier(@topsfs);
}
# UNFLATTEN
#
# we EXPECT problems with this erroneous record
$unflattener->error_threshold(2);
@sfs = $unflattener->unflatten_seq(-seq=>$seq,
-use_magic=>1,
);
my @probs = $unflattener->get_problems;
$unflattener->report_problems(\*STDERR) if $verbosity > 0;
$unflattener->clear_problems;
@sfs = $seq->get_SeqFeatures;
if( $verbosity > 0 ) {
warn "\n\nPOST PROCESSING:\n";
write_hier(@sfs);
warn sprintf "PROCESSED/TOP:%d\n", scalar(@sfs);
}
is scalar(@sfs), 2;
my @exons = grep {$_->primary_tag eq 'exon'} $seq->get_all_SeqFeatures;
is scalar(@exons), 2; # total number of exons per splice
if( $verbosity > 0 ) {
warn sprintf "PROBLEMS ENCOUNTERED: %d (EXPECTED: 6)\n", scalar(@probs);
}
is scalar(@probs), 6;
}
sub write_hier {
my @sfs = @_;
_write_hier(0, @sfs);
}
sub _write_hier {
my $indent = shift;
my @sfs = @_;
foreach my $sf (@sfs) {
my $label = '?';
if ($sf->has_tag('gene')) {
($label) = $sf->get_tag_values('gene');
}
if ($sf->has_tag('product')) {
($label) = $sf->get_tag_values('product');
}
if ($sf->has_tag('number')) {
$label = join("; ", $sf->get_tag_values('number'));
}
printf "%s%s $label\n", ' ' x $indent, $sf->primary_tag;
my @sub_sfs = $sf->sub_SeqFeature;
_write_hier($indent+1, @sub_sfs);
}
}
sub getseq {
my @path = @_;
my $seqio =
Bio::SeqIO->new('-file'=> test_input_file(@path),
'-format' => 'GenBank');
$seqio->verbose($verbosity);
my $seq = $seqio->next_seq();
return $seq;
}
|