source("http://bioconductor.org/biocLite.R")
biocLite("GEOmetadb")
library(GEOmetadb)
###################################################################################################
# Connect with the DB
###################################################################################################
con <- dbConnect(SQLite(),'GEOmetadb.sqlite')
sql <- paste("SELECT DISTINCT ",
"gpl.ID ",
"gds.platform_technology_type ",
"FROM ",
"gpl ",
"JOIN ","gds_subset ON gds.gds = gds_subset.gds ",
"JOIN ","gpl ON gds.gpl = gpl.gpl ",
"WHERE ",
"gds_subset.type LIKE 'time' ",
"WHERE ",
"gpl.technology LIKE 'high-throughput sequencing' ",sep="" )
It gave me this error:
Error in sqliteSendQuery(con, statement, bind.data) :
error in statement: near ".": syntax error
biocLite("GEOmetadb")
library(GEOmetadb)
###################################################################################################
# Connect with the DB
###################################################################################################
con <- dbConnect(SQLite(),'GEOmetadb.sqlite')
sql <- paste("SELECT DISTINCT ",
"gpl.ID ",
"gds.platform_technology_type ",
"FROM ",
"gpl ",
"JOIN ","gds_subset ON gds.gds = gds_subset.gds ",
"JOIN ","gpl ON gds.gpl = gpl.gpl ",
"WHERE ",
"gds_subset.type LIKE 'time' ",
"WHERE ",
"gpl.technology LIKE 'high-throughput sequencing' ",sep="" )
It gave me this error:
Error in sqliteSendQuery(con, statement, bind.data) :
error in statement: near ".": syntax error
Comment