Re: Simple HASH query

2005-03-17 Thread perlmails
- Original Message - From: "SG Edwards" <[EMAIL PROTECTED]> To: Sent: Wednesday, March 16, 2005 10:10 AM Subject: Simple HASH query Hi, I am using bioperl to get the primary id of a protein out of a flat file as follows: while ($seq_obj = $seqio_obj->next_s

Re: Simple HASH query

2005-03-16 Thread Jenda Krynicky
From: SG Edwards <[EMAIL PROTECTED]> > I am using bioperl to get the primary id of a protein out of a flat > file as follows: > > > while ($seq_obj = $seqio_obj->next_seq){ > my $primary_id = $seq_obj->primary_id; > print $primary_id; > } > > exit; > > However, this returns: > > Bio::Seq::Rich

Simple HASH query

2005-03-16 Thread SG Edwards
Hi, I am using bioperl to get the primary id of a protein out of a flat file as follows: while ($seq_obj = $seqio_obj->next_seq){ my $primary_id = $seq_obj->primary_id; print $primary_id; } exit; However, this returns: Bio::Seq::RichSeq=HASH(0xa1a1b7c) How do I get the actual value I want ou