Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • fatakias
    Member
    • Apr 2011
    • 11

    DESeq upgrade

    Dear R experts and / or DESeq expert(s),

    I am using DESeq v1.8.2 and would like to upgrade. The current version available is v1.9.4.

    From an R session, I am using the update.packages() command .. (please see below for details), but it does not work.

    Q1- Can you please suggest a fix. Which R command / series of commands would work?
    Q2 - Would this be a general fix for upgrading to other such R packages, such as edgeR.

    Thanks in advance.
    Best,
    sarosh


    Code:
    > require(DESeq);
    > sessionInfo();
    
    
    R version 2.15.0 (2012-03-30)
    Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit)
    
    locale:
    [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
    
    attached base packages:
    [1] stats     graphics  grDevices utils     datasets  methods   base
    
    other attached packages:
    [1] BiocInstaller_1.4.4 DESeq_1.8.2         locfit_1.5-8
    [4] Biobase_2.16.0      BiocGenerics_0.2.0
    
    loaded via a namespace (and not attached):
     [1] annotate_1.34.0      AnnotationDbi_1.18.0 DBI_0.2-5
     [4] genefilter_1.38.0    geneplotter_1.34.0   grid_2.15.0
     [7] IRanges_1.14.2       lattice_0.20-6       RColorBrewer_1.0-5
    [10] RSQLite_0.11.1       splines_2.15.0       stats4_2.15.0
    [13] survival_2.36-14     tcltk_2.15.0         tools_2.15.0
    [16] xtable_1.7-0
    >
    --------------------------------------------------------------
    
    > update.packages("DESeq");
    >
    
    --------------------------------------------------------------
    --------------------------------------------------------------
    > sessionInfo();
    R version 2.15.0 (2012-03-30)
    Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit)
    
    locale:
    [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
    
    attached base packages:
    [1] stats     graphics  grDevices utils     datasets  methods   base
    
    other attached packages:
    [1] BiocInstaller_1.4.4 DESeq_1.8.2         locfit_1.5-8
    [4] Biobase_2.16.0      BiocGenerics_0.2.0
    
    loaded via a namespace (and not attached):
     [1] annotate_1.34.0      AnnotationDbi_1.18.0 DBI_0.2-5
     [4] genefilter_1.38.0    geneplotter_1.34.0   grid_2.15.0
     [7] IRanges_1.14.2       lattice_0.20-6       RColorBrewer_1.0-5
    [10] RSQLite_0.11.1       splines_2.15.0       stats4_2.15.0
    [13] survival_2.36-14     tcltk_2.15.0         tools_2.15.0
    [16] xtable_1.7-0
    
    --------------------------------------------------------------
  • ramouz87
    Member
    • Oct 2009
    • 35

    #2
    Hi
    run the following to update all existing bioconductor packages:
    Code:
    source("http://bioconductor.org/biocLite.R")
    pkgs <- rownames(installed.packages())
    biocLite(pkgs)
    Best,
    Ramzi
    Research Scientist - Bioinformatics
    Sidra Medical and Research Center

    Comment

    • fatakias
      Member
      • Apr 2011
      • 11

      #3
      Thanks Ramzi,
      The DESeq version remains unchanged at 1.8.2. This is the sessionInfo() output after the command is run in an R session. It seems to me that other packages retain the previous version (compare with that in previous post)... does not mean that all versions are new and need updates though. I am aware DESeq has a new version and that is not updated in an R session. Maybe this is not the way to update .. hope other experts can please help.
      Best,
      sarosh


      Code:
      > sessionInfo();
      R version 2.15.0 (2012-03-30)
      Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit)
      
      locale:
      [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
      
      attached base packages:
      [1] stats     graphics  grDevices utils     datasets  methods   base     
      
      other attached packages:
      [1] edgeR_2.6.1         limma_3.12.0        DESeq_1.8.2        
      [4] locfit_1.5-8        Biobase_2.16.0      BiocGenerics_0.2.0 
      [7] BiocInstaller_1.4.4
      
      loaded via a namespace (and not attached):
       [1] annotate_1.34.0      AnnotationDbi_1.18.0 DBI_0.2-5           
       [4] genefilter_1.38.0    geneplotter_1.34.0   grid_2.15.0         
       [7] IRanges_1.14.2       lattice_0.20-6       RColorBrewer_1.0-5  
      [10] RSQLite_0.11.1       splines_2.15.0       stats4_2.15.0       
      [13] survival_2.36-14     tools_2.15.0         xtable_1.7-0        
      >
      Last edited by fatakias; 04-30-2012, 03:42 PM.

      Comment

      • arvid
        Senior Member
        • Jul 2011
        • 156

        #4
        The latest stable version of DESeq is v1.8.2, which is the current version in Bioconductor 2.10 for R 2.15. So everything is working as expected for your setup.
        DESeq 1.9.4 is a development (and thus unstable) version, which you can install from the Bioconductor devel version, under the R devel version. See "Installing packages from the development repository" in http://www.bioconductor.org/help/faq...l-packages-faq...

        Comment

        • HvDeut
          Junior Member
          • Jun 2013
          • 1

          #5
          I tried to update DESeq and DEXSeq using:

          Code:
          source("http://bioconductor.org/biocLite.R")
          pkgs <- rownames(installed.packages())
          biocLite(pkgs)

          but my packages remain the older ones.

          My question now is, how do I go from DEXSeq 1.6.0 to 1.8.0 ??

          Comment

          • bruce01
            Senior Member
            • Mar 2011
            • 160

            #6
            To update DEXseq to current version, follow instructions from: this page

            If you cannot update it may be that you are not able to connect to internet through your R. Test via: this page

            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
            21 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-23-2026, 11:41 AM
            0 responses
            19 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-20-2026, 11:10 AM
            0 responses
            26 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-13-2026, 10:26 AM
            0 responses
            38 views
            0 reactions
            Last Post SEQadmin2  
            Working...