[Bioperl-l] bug in SeqIO.pm

Wang, Kai Wang.Kai@mayo.edu
Wed, 21 Nov 2001 14:28:52 -0600


sub new {
         ......
         if ($class =~ /Bio::SeqIO::(\S+)/) {
                 ......
                 return $self;
         } else {
                 ......
                 if ($class eq 'Bio::SeqIO::MultiFile') {
                         return $class->new(%param);
                 }
                 ......
                 return "Bio::SeqIO::$format"->new(@args);
         }
}

The Second "if" statement will never be executed.