dna_to_protein: Translation of a DNA sequence

View source: R/dna_to_protein.R

dna_to_proteinR Documentation

Translation of a DNA sequence

Description

This function takes a DNA sequence as input and translates it in all six reading frames.

Usage

dna_to_protein(sequence)

Arguments

sequence

A character string representing a DNA sequence.

Value

A list of character strings representing the translated protein sequences in all six frames.

Examples

sequence <- "ATCGAGCTAGCTAGCTAGCTAGCT"
dna_to_protein(sequence)
# Returns a list containing the translated protein sequences in all six frames:
# $`Frame F1`
# [1] "IELAS"
#
# $`Frame F2`
# [1] "SS"
#
# $`Frame F3`
# [1] "RAS"
#
# $`Frame R1`
# [1] "S"
#
# $`Frame R2`
# [1] "AS"
#
# $`Frame R3`
# [1] "LAS"

ambu-vijayan/baseq documentation built on May 6, 2023, 10:31 p.m.