Announcement

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

  • Getting normalized counts

    Hello,

    I've tried to find differential expression with edgeR and DESeq2. These packages normalize my count data first, but they do not automatically provide normalized read counts to the end user. Any ideas how to obtain them through a series of R commands? Where could I look for this?

    Thank you in advance!

  • #2
    For DESeq2, use the counts function, passing as arguments the DESeqDataSet object created by your call to the function DESeq, and the argument, normalized=True.

    The function will return an integer matrix.
    In the following example, I convert the matrix to a data frame.

    Code:
    # Create a DESeqDataSet object, and perform calculattions.
    dds <- DESeqDataSetFromHTSeqCount(sampleTable=sampleTable, directory="../../htseqcount", design= ~ condition)
    dds <- DESeq(dds)
    
    # Calculate and save the annotated normalized counts.
    normalized.counts <- as.data.frame(counts( dds, normalized=TRUE ))
    As to where you can get this information, you should read the DESeq2 vignette.
    It is quite complete, and updated regularly.
    After reading it a dozen times , I have a clearer idea how to use DESeq2, especially for more complex analyses, like multi-factorial analyses.
    Last edited by blancha; 05-31-2014, 08:38 AM.

    Comment


    • #3
      For the edgeR verions, just:
      Code:
      normalized.counts <- 1e6 * cpm(dge)
      where "dge" is a DGEList.

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Advanced Methods for the Detection of Infectious Disease
        by seqadmin




        The recent pandemic caused worldwide health, economic, and social disruptions with its reverberations still felt today. A key takeaway from this event is the need for accurate and accessible tools for detecting and tracking infectious diseases. Timely identification is essential for early intervention, managing outbreaks, and preventing their spread. This article reviews several valuable tools employed in the detection and surveillance of infectious diseases.
        ...
        11-27-2023, 01:15 PM
      • seqadmin
        Strategies for Investigating the Microbiome
        by seqadmin




        Microbiome research has led to the discovery of important connections to human and environmental health. Sequencing has become a core investigational tool in microbiome research, a subject that we covered during a recent webinar. Our expert speakers shared a number of advancements including improved experimental workflows, research involving transmission dynamics, and invaluable analysis resources. This article recaps their informative presentations, offering insights...
        11-09-2023, 07:02 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, 12-05-2023, 02:24 PM
      0 responses
      17 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 12-05-2023, 07:37 AM
      0 responses
      26 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 12-04-2023, 08:23 AM
      0 responses
      12 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 12-01-2023, 09:55 AM
      0 responses
      26 views
      0 likes
      Last Post seqadmin  
      Working...
      X