Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • BrianU
    Member
    • Oct 2012
    • 20

    #31
    Originally posted by gopher View Post
    Yeah the most recent package must no longer have that function. Hope that helped, and thank y'all for further clarifying the download process.

    Also Brian, the Bioconductor 3.0 version is the current one, no? It at least appears so on the website. So I think your inability to update just means you have the latest version available, the R output just phrases it like an error.
    You're right about the weird error output. I am up to date.

    By the way, I just got a reply about the error from the guys working on CummeRbund. Apparently RSQLite just had a huge overhaul to v1.0 last Saturday the 25th. It explains why the SQL function is missing. They are on it.

    Comment

    • lgoff
      Member
      • Feb 2008
      • 82

      #32
      Thanks again BrianU...

      Comment

      • blancha
        Senior Member
        • May 2013
        • 367

        #33
        So, just to confirm what has already been posted.

        RSQLite was updated to version 1.0.0 on October 25th, 2014.
        This version of the package no longer contains the function used by cummeRbund, "sqliteQuickSQL".

        Downgrading to the previous version of RSQLite, 0.11.4 immediately fixes the problem.

        So either the cummeRbund or the RSQLite maintainers should fix this problem, whichever one is at fault.

        In the meantime, downgrading the package is a quick and easy fix.

        Comment

        • lgoff
          Member
          • Feb 2008
          • 82

          #34
          Confirmed...and yes..the cummeRbund developers (me and ONLY me) are working on it. It's not just the sqliteQuickSQL method however, there were a number of major changes in RSQLite that have implications for how the cummeRbund backend database is built, but also how it's queried, which is at the heart of how cummeRbund works. So it may take a bit to get cummeRbund working with the new version. I will keep you guys posted.

          -Loyal

          Comment

          • lgoff
            Member
            • Feb 2008
            • 82

            #35
            Ooo! Also a good time to point out that the cummeRbund code is now on github (http://www.github.com/gofflab/cummeRbund), should anyone be interested in taking a peek or patching it themselves. I'm happy to take pull requests.

            Cheers,
            Loyal

            Comment

            • axa9070
              Member
              • Oct 2014
              • 11

              #36
              Solution

              You CAN have your cake and eat it too!

              The latest RSQLite has deprecated the sqliteQuickSQL function! However, has been essentially renamed to dbGetQuery! So by simply loading the cummeRbund library, then assiging that function you're good to go!

              library(cummeRbund)

              sqliteQuickSQL<-dbGetQuery

              dbBeginTransaction<-dbBegin

              cuff<-readCufflinks(gtfFile="/blah/blah/blah.gtf", rebuild=T)

              Last edited by axa9070; 11-01-2014, 08:21 PM.

              Comment

              • lgoff
                Member
                • Feb 2008
                • 82

                #37
                Great work around! Thanks for the tip.

                -Loyal

                Comment

                • homeuser1
                  Junior Member
                  • Oct 2014
                  • 3

                  #38
                  Hi, I also faced the similar problem.

                  > library(cummeRbund)
                  Loading required package: RSQLite
                  Error: package ‘RSQLite’ was built before R 3.0.0: please re-install it
                  In addition: Warning message:
                  package ‘cummeRbund’ was built under R version 3.1.1

                  any tips to solve it? RSQlite 0.11.4 not working too - not compatible with R >=3.0

                  Thanks

                  Comment

                  • spzhangmit
                    Junior Member
                    • Aug 2014
                    • 5

                    #39
                    lgoff, thanks a lot! We are expecting your good work to fix it.

                    Also, thanks a lot for all the guys who responded to this problem. Now I can work with cummeRbund!

                    Originally posted by lgoff View Post
                    Confirmed...and yes..the cummeRbund developers (me and ONLY me) are working on it. It's not just the sqliteQuickSQL method however, there were a number of major changes in RSQLite that have implications for how the cummeRbund backend database is built, but also how it's queried, which is at the heart of how cummeRbund works. So it may take a bit to get cummeRbund working with the new version. I will keep you guys posted.

                    -Loyal

                    Comment

                    • spzhangmit
                      Junior Member
                      • Aug 2014
                      • 5

                      #40
                      If you don't want to remove and reinstall RSQLite, you can use axa9070's way. It works!

                      Originally posted by axa9070 View Post
                      You CAN have your cake and eat it too!

                      The latest RSQLite has deprecated the sqliteQuickSQL function! However, has been essentially renamed to dbGetQuery! So by simply loading the cummeRbund library, then assiging that function you're good to go!

                      library(cummeRbund)

                      sqliteQuickSQL<-dbGetQuery

                      cuff<-readCufflinks(gtfFile="/blah/blah/blah.gtf", rebuild=T)

                      Comment

                      • mahesh.sangrithi
                        Junior Member
                        • Apr 2013
                        • 1

                        #41
                        Hi,

                        I'm having the same problem described here. This started after I'd upgraded to MacOSX Yosemite. I've also updated R to v3.1.2, and I've removed and re-installed RSQLite as well as cummeRbund as suggested, and the error still persists when executing readCufflinks(...).

                        I've emailed Loyal Goff, who might be able to suggest a solution...

                        Best,
                        Mahesh

                        Comment

                        • lgoff
                          Member
                          • Feb 2008
                          • 82

                          #42
                          Hi all,
                          I think i've patched cummeRbund for RSQLite 1.0.0 compatibility. It now builds and runs on my machine. I pushed it up to BioC, but it may take a few days to get through the nightly build system.

                          If you would like to try and build it yourself, you can find the patched version (and the current development version) here:

                          This is a read-only mirror of the Bioconductor SVN repository. Package Homepage: http://bioconductor.org/packages/devel/bioc/html/cummeRbund.html Bug Reports: https://support.bioconductor.org/p/new...


                          You will have to:
                          1) clone the repository
                          2) R CMD BUILD cummeRbund
                          3) R CMD INSTALL cummeRbund

                          Please make sure that you have all the required dependencies installed (including RSQLite 1.0.0). The BioC installer checks this for you, but if you build yourself, it will fail if you do not have all the dependencies installed.

                          Also, please let me know if you continue to have errors. I don't check seqanswers all that often anymore due to time constraints, but I'll try to keep up on this specific thread.

                          Cheers,
                          Loyal

                          Comment

                          • axa9070
                            Member
                            • Oct 2014
                            • 11

                            #43
                            Thanks Loyal!

                            We appreciate your time and hard work!

                            ^_^

                            Comment

                            • Gonza
                              Member
                              • Mar 2013
                              • 78

                              #44
                              Hi All,

                              is not working for me either. is other way to fix this other than uninstalling and reinstalling?

                              > cuff_data <-readCufflinks()
                              Creating database /Users/gonzalovillarino/Desktop/05Cuffdiff_novelgenes/cuffData.db
                              Error in FUN(c("\n-- Creator: MySQL Workbench 5.2.33/ExportSQLite plugin 2009.12.02\n-- Author: Loyal Goff\n-- Caption: New Model\n-- Project: Name of the project\n-- Changed: 2012-04-30 22:21\n-- Created: 2011-05-02 12:52\nPRAGMA foreign_keys = OFF", :
                              could not find function "sqliteQuickSQL"
                              > cuff_data <-readCufflinks()
                              > cuff_data
                              Error in sqliteSendQuery(con, statement, bind.data) :
                              error in statement: no such table: genes

                              Comment

                              • DonDolowy
                                Member
                                • Oct 2012
                                • 56

                                #45
                                Thanks a lot for the help, guys! Working here again.

                                Comment

                                Latest Articles

                                Collapse

                                • 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.
                                  ...
                                  Yesterday, 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
                                • GATTACAT
                                  Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
                                  by GATTACAT
                                  Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
                                  07-01-2026, 11:43 AM

                                ad_right_rmr

                                Collapse

                                News

                                Collapse

                                Topics Statistics Last Post
                                Started by SEQadmin2, Yesterday, 10:04 AM
                                0 responses
                                10 views
                                0 reactions
                                Last Post SEQadmin2  
                                Started by SEQadmin2, 07-08-2026, 10:08 AM
                                0 responses
                                7 views
                                0 reactions
                                Last Post SEQadmin2  
                                Started by SEQadmin2, 07-07-2026, 11:05 AM
                                0 responses
                                15 views
                                0 reactions
                                Last Post SEQadmin2  
                                Started by SEQadmin2, 07-02-2026, 11:08 AM
                                0 responses
                                31 views
                                0 reactions
                                Last Post SEQadmin2  
                                Working...