get_cscg | R Documentation |
get_cscg
calculates Mean Codon Stabilization Coefficients of each CDS.
get_cscg(cf, csc)
cf |
matrix of codon frequencies as calculated by |
csc |
table of Codon Stabilization Coefficients as calculated by |
a named vector of cscg values.
Presnyak V, Alhusaini N, Chen YH, Martin S, Morris N, Kline N, Olson S, Weinberg D, Baker KE, Graveley BR, et al. 2015. Codon optimality is a major determinant of mRNA stability. Cell 160:1111-1124.
# estimate CSCg of yeast genes
yeast_csc <- est_csc(yeast_cds, yeast_half_life)
cf_all <- count_codons(yeast_cds)
cscg <- get_cscg(cf_all, csc = yeast_csc)
head(cscg)
hist(cscg)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.