Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • LeonDK
    Member
    • Sep 2014
    • 69

    TMM normalization examplified and explained

    So according to the Robinson's 2010 paper on TMM normalization, the calculation of TMM factors, is given by:

    If we then take this hypothetical count matrix:
    Code:
        1   2   3   4   5
    a 711 662 138 424 604
    b 247 879 547 406 230
    c 390 891 678 919 967
    d  92 567 529 809 605
    e 963 594  87 541 640
    f  11 365 620 108 919
    g 575 358  32 455 148
    h 765 592 462  52 330
    i 874 866 331 759 733
    j  42 681 634  84 681
    Could anyone briefly exemplify how to perform the calculation of the TMM factors manually?

    I realise, that I can the normalization factors like so:
    Code:
    R
    library(edgeR)
    set.seed(13)
    counts = as.data.frame(matrix( floor(runif(10*5,1,1001)), 10, 5))
    rownames(counts) = letters[1:10]
    colnames(counts) = seq(1,5)
    d = DGEList(counts=counts)
    d = calcNormFactors(d,method="TMM”)
    d$samples$norm.factors
    [1] 0.9412422 0.9510114 0.9604313 1.1794450 0.9862088
    But i'd love to do a manual calculation, to understand the details of exactly how the TMM values are calculated

    Cheers,
    Leon
  • dpryan
    Devon Ryan
    • Jul 2011
    • 3478

    #2
    Just look at the code for calcNormFactors. I recall it being fairly short.

    Comment

    Latest Articles

    Collapse

    • GATTACAT
      Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
      by GATTACAT
      Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
      07-01-2026, 11:43 AM
    • SEQadmin2
      Nine Things a Sample Prep Scientist Thinks About Before Sequencing
      by SEQadmin2


      I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.

      Here are nine questions we think about, in roughly the order they matter, before...
      06-18-2026, 07:11 AM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by SEQadmin2, 07-02-2026, 11:08 AM
    0 responses
    17 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 06-30-2026, 05:37 AM
    0 responses
    18 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 06-26-2026, 11:10 AM
    0 responses
    21 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 06-17-2026, 06:09 AM
    0 responses
    54 views
    0 reactions
    Last Post SEQadmin2  
    Working...