Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • RockChalkJayhawk
    Senior Member
    • Mar 2009
    • 192

    glmnb.fit in DEXSeq

    Does anyone else have this problem?
    Code:
    library(DEXSeq)
    annotationfile = file.path("/TN_RNA-Seq/Alt_SPlicing/DEXSeq/hg19.prepared.gtf")
    samples=read.table("Targets/Samples.txt",row.names=1)
    inDir=file.path("/TN_RNA-Seq/Alt_SPlicing/DEXSeq/Targets")
    
    ecs = read.HTSeqCounts(countfiles = file.path(inDir, paste(rownames(samples))),design = samples,flattenedfile = annotationfile)
    
    ecs <- makeCompleteDEUAnalysis(ecs)
    Dispersion estimation. (Progress report: one dot per 100 genes)
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    In addition: Warning message:
    In .local(object, ...) :
      Exons with less than 11 counts will be discarded. For more details read the documentation, parameter minCount
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    Error in fitted.values(glmnb.fit(mm, y, initialGuess, mf$offset, start = start)) :
      could not find function "glmnb.fit"
    
    Error in fitDispersionFunction(ecs) :
      no CR dispersion estimations found, please first call estimateDispersions function
    In addition: There were 22 warnings (use warnings() to see them)
    or else does anyone know what the function glmnb.fit is supposed to be?

    I updated my statmod library, but I don't see the function.
  • Simon Anders
    Senior Member
    • Feb 2010
    • 995

    #2
    Could you please post the output of 'sessionInfo()'?

    As you correctly noticed, 'glmnb.fit' comes with 'statmod' and at least in the current version, 1.4.14, it is available.

    Comment

    • RockChalkJayhawk
      Senior Member
      • Mar 2009
      • 192

      #3
      Code:
      > sessionInfo()
      R version 2.12.0 (2010-10-15)
      Platform: x86_64-unknown-linux-gnu (64-bit)
      
      locale:
       [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C
       [3] LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8
       [5] LC_MONETARY=C              LC_MESSAGES=en_US.UTF-8
       [7] LC_PAPER=en_US.UTF-8       LC_NAME=C
       [9] LC_ADDRESS=C               LC_TELEPHONE=C
      [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
      
      attached base packages:
      [1] stats     graphics  grDevices utils     datasets  methods   base
      
      other attached packages:
      [1] stringr_0.5    statmod_1.4.6  MASS_7.3-8     pasilla_0.2.10 DEXSeq_1.0.1
      [6] Biobase_2.14.0
      
      loaded via a namespace (and not attached):
      [1] hwriter_1.3  plyr_1.6     tools_2.12.0

      Comment

      • Simon Anders
        Senior Member
        • Feb 2010
        • 995

        #4
        The current version of statmod is 1.4.14 but you have 1.4.6. This is your problem.

        If you install Bioconductor packages, please use the biocLite script as explained here. However, note that Bioconductor versions are tied to R versions: If you use R 2.12, you will get packages from Bioconductor 2.7. DEXSeq is only available since the current Bioconductor release, Bioconductor 2.9, which biocLite will only use if you have the current R version, namely R 2.14.

        Comment

        • RockChalkJayhawk
          Senior Member
          • Mar 2009
          • 192

          #5
          Got it Simon. I'll post just to make sure this takes care of it.

          Comment

          • RockChalkJayhawk
            Senior Member
            • Mar 2009
            • 192

            #6
            That did it. Thanks again.

            Comment

            Latest Articles

            Collapse

            • SEQadmin2
              Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
              by SEQadmin2


              Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

              The systematic characterization of the human proteome has
              ...
              07-20-2026, 11:48 AM
            • SEQadmin2
              Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
              by SEQadmin2



              Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
              ...
              07-09-2026, 11:10 AM
            • SEQadmin2
              Cancer Drug Resistance: The Lingering Barrier to Rising Survival
              by SEQadmin2



              Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

              There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
              07-08-2026, 05:17 AM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by SEQadmin2, 07-24-2026, 12:17 PM
            0 responses
            34 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-23-2026, 11:41 AM
            0 responses
            25 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-20-2026, 11:10 AM
            0 responses
            217 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-13-2026, 10:26 AM
            0 responses
            81 views
            0 reactions
            Last Post SEQadmin2  
            Working...