Thread einen Hash kompakter schreiben (5 answers)
Opened by hawahe at 2010-06-06 13:49

renee
 2010-06-06 16:36
#138034 #138034
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Ich würde mir mal CPAN:BioPerl anschauen. Damit kannst Du die Umwandlung ganz einfach machen:

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
use Bio::Perl;

my $sequence = 'GCUGCCGGAGCAUGCGCG';
my %hash     = (
  A => 'Ala',
  C => 'Cys',
  G => 'Gly',
);
 
my $amino_acids = translate_as_string( $sequence );
my $string = join ' ', map{ $hash{$_} }split //, $amino_acids;
print $string;
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread einen Hash kompakter schreiben