in reply to Re^2: NCBI sequence fetching
in thread NCBI sequence fetching

Hmmmmm, Do you mean after the error it continues trying to get the same sequence?
It's in a for loop so should only try each one the entries once unless they appear multiple times in the array "@entries".
Forgot to change this when I wrote the code but the for loop should be:
for my $i ( 0 ... scalar @entries - 1 ) { }
J,

Replies are listed 'Best First'.
Re^4: NCBI sequence fetching
by capemaster (Initiate) on May 12, 2009 at 15:50 UTC
    thank you, I'll test it as soon as possible...
    Happy hour time now :)

    Stefano