- or download this
my $outfile = "$accession_$biotype";
- or download this
my $outfile = '$accession_$biotype';
- or download this
$outfile = "${accession}_${biotype}";
- or download this
$outfile = $accession . '_' . $biotype;
- or download this
use strict;
use warnings;
...
print $OUT, ">$outfile/n^^/n$sequence");
}
}