Seqanswers Leaderboard Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • shirley47162928
    Member
    • Jan 2015
    • 15

    how to calculate counts per million

    Hi all,
    Could anyone tell how to calculate counts per million (CPM) manually? How it was calculated in edgeR related to RNA-seq data?
  • GenoMax
    Senior Member
    • Feb 2008
    • 7142

    #2
    Discussion of next-gen sequencing related bioinformatics: resources, algorithms, open source efforts, etc

    Comment

    • Gordon Smyth
      Member
      • Apr 2011
      • 91

      #3
      Which edgeR CPM do you mean in particular? Do you mean the column called logCPM in the topTags table? That is computed using the aveLogCPM() function.

      Comment

      • diego diaz
        Member
        • Oct 2013
        • 62

        #4
        To calculate CPM manually in R it would be :

        cpm <- apply(countmatrix,2, function(x) (x/sum(x))*1000000)

        # the 1 added to log function is to avoid log 0 values
        log.cpm <- log(cpm + 1)

        To calculate rpkm you have to know the gene lengths

        Comment

        • Gordon Smyth
          Member
          • Apr 2011
          • 91

          #5
          Originally posted by diego diaz View Post
          # the 1 added to log function is to avoid log 0 values
          log.cpm <- log(cpm + 1)
          That is not quite the same as what edgeR's cpm() function does. It's somewhat better to offset the counts rather than the cpms.

          Comment

          • diego diaz
            Member
            • Oct 2013
            • 62

            #6
            Originally posted by Gordon Smyth View Post
            That is not quite the same as what edgeR's cpm() function does. It's somewhat better to offset the counts rather than the cpms.
            Yes, sorry, my mistake. The offset is added to the counts, not to the cpm.

            Comment

            Latest Articles

            Collapse

            • seqadmin
              Pathogen Surveillance with Advanced Genomic Tools
              by seqadmin




              The COVID-19 pandemic highlighted the need for proactive pathogen surveillance systems. As ongoing threats like avian influenza and newly emerging infections continue to pose risks, researchers are working to improve how quickly and accurately pathogens can be identified and tracked. In a recent SEQanswers webinar, two experts discussed how next-generation sequencing (NGS) and machine learning are shaping efforts to monitor viral variation and trace the origins of infectious...
              03-24-2025, 11:48 AM
            • seqadmin
              New Genomics Tools and Methods Shared at AGBT 2025
              by seqadmin


              This year’s Advances in Genome Biology and Technology (AGBT) General Meeting commemorated the 25th anniversary of the event at its original venue on Marco Island, Florida. While this year’s event didn’t include high-profile musical performances, the industry announcements and cutting-edge research still drew the attention of leading scientists.

              The Headliner
              The biggest announcement was Roche stepping back into the sequencing platform market. In the years since...
              03-03-2025, 01:39 PM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by seqadmin, 03-20-2025, 05:03 AM
            0 responses
            41 views
            0 reactions
            Last Post seqadmin  
            Started by seqadmin, 03-19-2025, 07:27 AM
            0 responses
            49 views
            0 reactions
            Last Post seqadmin  
            Started by seqadmin, 03-18-2025, 12:50 PM
            0 responses
            36 views
            0 reactions
            Last Post seqadmin  
            Started by seqadmin, 03-03-2025, 01:15 PM
            0 responses
            192 views
            0 reactions
            Last Post seqadmin  
            Working...