Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    my $filename = 'input.txt';
    ...
    while($text =~ m/TATAAT[ACGT]+?(ATG[ACGT]+?(?:TGA|TAG|TAA))/g) {
       print "$1\n";
    }