in reply to Re^2: Parse DNA fasta file
in thread Parse DNA fasta file
Check the return value from the constructor invocations and see what that tells you:
my $in = Bio::SeqIO->new(-file => "test.fa" , '-format' => 'Fasta') or die "Failed to open input file: $!";
|
|---|