Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • argument "dispersion" is missing, with no default

    Hi!

    I am trying to perform DEG analysis on two treatment groups using edgeR. I originally planned to keep the analysis similar to what was used for another purpose previously. To prepare the data, I used the following functions/code:

    Code:
        y <- DGEList(counts=countTable, group=listGroups)
        keep <- rowSums(cpm(y)>1) >= 2*nRep #Filtering rows
        y <- y[keep, keep.lib.sizes=FALSE] #Filtering rows
        y <- cpm(y, TRUE, TRUE) # Option 2 (edgeR)
        y <- betweenLaneNormalization(y, which="full", round=FALSE)
    This seems to work fine, and leads to an object y with the following structure:

    Code:
    > head(y)
                                    N.1      N.2      N.3      P.1      P.2      P.3
    G1093 2.643383 2.624754 2.643383 2.800242 2.687257 2.258823
    G3412 2.689673 3.302018 3.402223 4.290321 4.294549 4.354116
    G4872 4.115490 4.412357 4.427337 4.526043 4.074346 4.037426
    G2856 3.271944 2.946745 3.467242 2.643383 2.687257 3.043792
    G3810 3.043792 3.501425 3.286707 3.547066 3.493566 3.429753
    G4756 3.949146 3.653455 4.189536 4.132336 4.205552 4.074346
    I planned on running the next sequence of edgeR functions as follows:

    Code:
        y = estimateCommonDisp(y)
        y = estimateTagwiseDisp(y)
        de = exactTest(y, pair=c(group1,group2))
        tt = topTags(de, n=nrow(y))
        nc = cpm(y, normalized.lib.sizes=TRUE)
    However, I receive an error upon running estimateTagwiseDisp() as follows:

    Code:
    Error in aveLogCPM.default(y, lib.size = lib.size, dispersion = dispersion) : 
      argument "dispersion" is missing, with no default
    I am not too confident in what I have here. Everything before estimateCommonDisp() was intended to be consistent with previous work done on this data. However, I am concerned about what we may be missing here.

    Any suggestions would be greatly appreciated!

Latest Articles

Collapse

  • seqadmin
    Recent Advances in Sequencing Analysis Tools
    by seqadmin


    The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
    Today, 07:48 AM
  • 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

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, Today, 07:17 AM
0 responses
3 views
0 likes
Last Post seqadmin  
Started by seqadmin, 05-02-2024, 08:06 AM
0 responses
19 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-30-2024, 12:17 PM
0 responses
20 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-29-2024, 10:49 AM
0 responses
28 views
0 likes
Last Post seqadmin  
Working...
X