Use of uninitialized value in concatenation (.) or string at P:\Perl\scripts2\PCR_BA~1\56_PLU~1.PL line 208.
J'aimerais trouver l'erreur mais quand je fais
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
        my $retour_fonct = (print $FO ">".$acc."\n".$h_seq{$acc}."\n");  # 208
        $i++;
        if ($retour_fonct != 1){
            print "==> erreur pour $acc\n";
        }
ou même simplement print "==> erreur\n"; aucun message n'est écrit à l'écran.


J'ai également essayé
Code : Sélectionner tout - Visualiser dans une fenêtre à part
print $FO ">".$acc."\n".$h_seq{$acc}."\n" or print "==> erreur\n";
mais sans résultat.

merci,