Thread my richtig setzen (18 answers)
Opened by Byonik at 2010-06-24 10:28

renee
 2010-06-24 11:59
#138912 #138912
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Ich würde das so machen:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl

use strict;
use warnings;
use Bio::Perl;

print "Bitte geben Sie einen Dateinamen ein: ";
chomp( my $file = <STDIN> );

die "Can't read file $file" unless -r $file;

my $sequence = do{ local( @ARGV,$/ ) = $file; <> };

my $amino_acids = translate_as_string( $sequence );
print "Proteinstrang: ", $amino_acids, "\n";
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 my richtig setzen