Results for "palindromes"

Bio-Scripts

  • Raku script to find palindrome in genomes !

    .../; # remove any spaces return $str eq $str.flip; } sub find-palindromes(Str $dna, Int $min-length, In...le usage my $dna = "GGATCCATGGCCTAGG"; # example DNA sequence find-palindromes($dna, 3, 8); # find palindrom...

    435 days ago