knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  dpi=300,
  out.width = "100%"
)

iCodon: designing "ideal" coding (iCodon) sequences for customized expression level

DOI Travis build status Codecov test coverage

knitr::include_graphics("https://media.springernature.com/full/springer-static/image/art%3A10.1038%2Fs41598-022-15526-7/MediaObjects/41598_2022_15526_Fig7_HTML.png?as=webp")

Messenger RNA (mRNA) stability substantially impacts steady-state gene expression levels in a cell. mRNA stability is strongly affected by codon composition in a translation-dependent manner across species, through a mechanism termed codon optimality. We have developed iCodon, an algorithm for customizing mRNA expression through the introduction of synonymous codon substitutions into the coding sequence. iCodon is optimized for four vertebrate transcriptomes: mouse, human, frog, and fish. Users can predict the mRNA stability of any coding sequence based on its codon composition and subsequently generate more stable (optimized) or unstable (deoptimized) variants encoding for the same protein. Further, we show that codon optimality predictions correlate with both mRNA stability using a massive reporter library and expression levels using fluorescent reporters and analysis of endogenous gene expression in zebrafish embryos and/or human cells. Therefore, iCodon will benefit basic biological research, as well as a wide range of applications for biotechnology and biomedicine.

iCodon web-application!

Check the iCodon paper.

:arrow_double_down: Installation

You can install the released version of iCodon from GitHub with:

# install.packages("devtools")
devtools::install_github("santiago1234/iCodon")

:book: Example

This is a basic example which shows you how to optimize the gene expression of the following gene:

library(iCodon)
cat(test_seq)
sequence <- test_seq
result <- optimizer(sequence, specie = "mouse", n_iterations = 10, make_more_optimal = T)

Visualizing the results

visualize_evolution(result)

To see what else can be accomplished with this package see the help with:

browseVignettes("iCodon")


santiago1234/iCodon documentation built on Nov. 2, 2023, 2:03 p.m.