<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#!/usr/bin/perl

use Bio::SeqIO;
my $in = Bio::SeqIO-&gt;newFh(-file=&gt;shift,-format=&gt;'fasta');
my $out = Bio::SeqIO-&gt;newFh(-format=&gt;'fasta');
print $out $_ while &lt;$in&gt;;
</pre></body></html>