in reply to Creating hash from data extracted from text file in fasta format
Hello reebee3,
Here’s one way to approach this task:
#! perl use strict; use warnings; my (%seqs, $id, $dna); while (my $line = <>) { chomp $line; if ($line =~ / ^ > (.+) /x) { $seqs{$id} = $dna if defined $id; $id = $1; $dna = ''; } else { $dna .= $line; } } $seqs{$id} = $dna if defined $id; for my $key (sort { length $seqs{$a} <=> length $seqs{$b} } keys %seqs) { printf "%s:%d\n", $key, length $seqs{$key}; }
Output:
15:55 >perl 1406_SoPW.pl data.fas SequenceID|9876_Gene2:15 SequenceID|1234_Gene1:16 15:55 >
Notes:
Hope that helps,
| Athanasius <°(((>< contra mundum | Iustus alius egestas vitae, eros Piratica, |
|
|---|