home.social

#codons — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #codons, aggregated by home.social.

fetched live
  1. When optimizing sequences for protein expression, we have to pay attention to preserving stop #codons in alternative frames, as demonstrated by a recent paper:

    pnas.org/doi/full/10.1073/pnas

    This mirrors the relative high levels of AUGs in transcripts with alternative upstream #transcription start sites that we described in yeast. Such AUGs lead to short ORFs followed by long 3' UTR regions, perfect for degradation through #NMD:

    elifesciences.org/articles/067

    #mRNA #RNA #science

  2. Ribosome pausing, ribosome drop-off, an interesting study in the links between codons and translation in S. cerevisiae:

    journals.plos.org/plosgenetics

    #science #ribosome #rna #codons

  3. Short blog post about an R script that allows to optimize codons for reliable heterologous protein expression in various hosts. Requires a table of frequencies for allocation of codons to aminoacids for a given protein sequence.

    cosminribo.eu/posts/2023-03-co

    #translation #mRNA #Rstat #MolecularBiology #codons

  4. The *split-apply-combine* method for data analysis is powerful. It is brilliantly used in the `dplyr` package and all over the `tidyverse` but base #R also works.

    For example, for a table of codon frequencies with column "count" and column "Aa", relative frequencies of codons for each amino acid are calculated by:

    relfreq <- function(v){v/sum(v)}

    1. r1 <- split(mydf$count, f=list(mydf$Aa)

    2. r2 <- lapply(r1, FUN=relfreq)

    3. r3 <- unsplit(r2, f=list(mydf$Aa))

    #DataAnalysis #codons