Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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

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

    Comment

    Latest Articles

    Collapse

    • seqadmin
      Essential Discoveries and Tools in Epitranscriptomics
      by seqadmin




      The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
      04-22-2024, 07:01 AM
    • seqadmin
      Current Approaches to Protein Sequencing
      by seqadmin


      Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
      04-04-2024, 04:25 PM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, 04-11-2024, 12:08 PM
    0 responses
    59 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 10:19 PM
    0 responses
    57 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 09:21 AM
    0 responses
    53 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-04-2024, 09:00 AM
    0 responses
    56 views
    0 likes
    Last Post seqadmin  
    Working...
    X