Help for this page

Select Code to Download


  1. or download this
    >sequence1_name
    ATGACTGTTGG...etc.
    generally some fixed number of letters per line
    
  2. or download this
    my $seq_name;
    my %seqs_hash;
    ...
        $seqs_hash{$seq_name} .= $line;
      }
    }
    
  3. or download this
    my $seq_name;
    my %seqs_hash;
    ...
    foreach my $key (keys %temp_hash) {
      $seqs_hash{$key} = join("", @{$temp_hash{$key}});
    }