Thread einen Hash kompakter schreiben
(5 answers)
Opened by hawahe at 2010-06-06 13:49
Ich würde mir mal 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/ |