Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    use warnings;
    ...
        my @codons = /[ACGT]{3}/g;
        say join '', map GENETIC_CODE->{$_}, @codons;
    }
    
  2. or download this
    use v6;
    constant DNA-codon = Hash.new: <
        TTT F      CTT L      ATT I      GTT V
    ...
    }
    
    .say for orf open('rosalind_orf.txt').get;