Thread Wie kann ich in die Matrix schreiben? (9 answers)
Opened by crackbrained at 2005-01-14 14:05

renee
 2005-01-14 16:49
#50739 #50739
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Dann probier mal:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
my @sec_dotplot;                            # Deklaration des Arrays(@) sec_dotplot

for (my $i=1; $i<=$seqlen; $i++) {
for (my $j=1; $j<=$seqlen; $j++) {
if($j < $i){
$sec_dotplot[$i][$j] = '-';
next;
}
my $nukl_i = substr($seq, $i-1, 1);
my $nukl_j = substr($seq, $j-1, 1);
my $res = defined $sec_dotplot[$i][$j-1] ? $sec_dotplot[$i][$j-1] : 0;
if (basepair($nukl_i, $nukl_j)) {
# basenpaar möglich dann 1 speichern
$sec_dotplot[$i][$j]= $res + 1;
}
else {
$sec_dotplot[$i][$j] = $res;
}
}
}
print "\n#########\nsec_dotplot\n##############\n";
print_matrix($seq, @sec_dotplot);
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 Wie kann ich in die Matrix schreiben?