get_tai | R Documentation |
get_tai
calculates tRNA Adaptation Index (TAI) of each CDS
get_tai(cf, trna_w)
cf |
matrix of codon frequencies as calculated by |
trna_w |
tRNA weight for each codon, can be generated with |
a named vector of TAI values
dos Reis M, Savva R, Wernisch L. 2004. Solving the riddle of codon usage preferences: a test for translational selection. Nucleic Acids Res 32:5036-5044.
# calculate TAI of yeast genes based on genomic tRNA copy numbers
w <- est_trna_weight(yeast_trna_gcn)
cf_all <- count_codons(yeast_cds)
tai <- get_tai(cf_all, w)
head(tai)
hist(tai)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.