in reply to Retrieving Search Results from a Bio::DB::GenBank Query
What version of Bioperl? What specific keywords did you use and db? Do you want to join your keywords together with an AND instead of space?
I can run things fine on the following query which gets barley ESTs. I am using bioperl-live code from CVS but I also tested it with the bioperl 1.4 release as well and it worked great.
And I also made your loop actually do something&search('nucleotide','txid4512[orgn] AND gbdiv_est[PROP]');
my $i; while ( my $seq = $seqio->next_seq() ) { # do something with the data print $seq->display_id, "\n"; last if $i++ > 5; }
|
|---|