Help for this page

Select Code to Download


  1. or download this
    while (<DATA>) {
        chomp;
        my ($head, $seq) = split / /;
    
  2. or download this
    while ( <DATA> ) {
        my ($head, $seq ) = split;
    
  3. or download this
    my @file_ends = qw{./ .fasta};
    ...
                    open my $fh, q{>>}, join($ko, @file_ends);
    
  4. or download this
    my file_end = '.fasta';
    ...
                    open my $fh, '>>', "$ko$file_end" or die "Cannot open 
    +'$ko$file_end' because: $!";