Help for this page

Select Code to Download


  1. or download this
        my $stringfh = new IO::String($sequence_string);
        my $seqio = new Bio::SeqIO(-fh => $stringfh, -format => 'fasta');
    
        my $blaster = Bio::Tools::Run::StandAloneBlast->new(@params);
    
  2. or download this
    while( my $seq = $seqio->next_seq ) {
      my $blast_report = $blaster->blastall($seq);
    ...
        }
      }
    }