# please note: i always miss some punctuation mark or some other oversight # so this may/may not work, but you get the idea... print "The annotated sequence is given below along with the digested sequence
"; print "Annotated:$anotate
"; print "Digested:"; my $printcounter = 1; foreach $_(@cut){ print "$_"; $printcounter++; # you can put whatever number you want in here and substitute for
# if you like (maybe use $printcounter of 4 with or something) if ($printcounter==16){ print "
"; $printcounter=1;}} print "";