Help for this page

Select Code to Download


  1. or download this
    ...
    print $fh ">$description\n";
    print $fh "$_\n" foreach ($seq =~ /.{1,50}/g);
    ...
    
  2. or download this
    ...
    print $fh ">$description\n";
    print $fh substr($seq,0,50,'') . "\n" while ($seq);
    ...