Help for this page

Select Code to Download


  1. or download this
    while( my $seq = $in->next_seq  ) {
          print $i++, " : ", $seq->seq(), "\n";
       }
    
  2. or download this
    my @seqs; 
    while(my $s = $in->next_seq ) { push @seqs, $s; }
    # now do your loop of trials