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