create_codon_table: Create custom codon table from amino acid-codon mapping
Description
create_codon_table generates a codon table from a user-defined data
frame that maps codons to their corresponding amino acids. This function
enables analysis of non-standard or artificial genetic codes not available
in the NCBI genetic code collection.
# View the example amino acid to codon mappinghead(aa2codon)
# Create a custom codon tablecustom_table <- create_codon_table(aa2codon = aa2codon)
head(custom_table)