[Bioperl-l] Primary seq primary_id?
Wiepert, Mathieu
Wiepert.Mathieu@mayo.edu
Thu, 7 Nov 2002 12:41:34 -0600
Hi,
I am pretty sure that something is messed up for me. When I call Bio::Seq to get the primary_id of a sequence, I no longer get a string...
my $seq = Bio::SeqIO->new(-file=>'amino.fa' , '-format' => 'fasta' );
my $input = $seq->next_seq();
my $primary_id = $input->primary_id;
print $primary_id;
gives me
Bio::Seq=HASH(0x82d88d4)
Is there something really silly that I missed somewhere? I used to get strings...
-Mat