Help for this page
Select Code to Download
Select
or
download this
my $base = ("A"|"C"|"G"|"T");
Select
or
download this
while (<INPUT>) { print if /^[ATCG]+$/ && length >= $ideal; }
Select
or
download this
print if /^[ATCG]{250,}$/;