Description Details Author(s) Examples
The NCBI Gene Expression Omnibus (GEO) represents the largest public repository of microarray data. However, finding data of interest can be challenging using current tools. GEOmetadb is an attempt to make access to the metadata associated with samples, platforms, and datasets much more feasible. This is accomplished by parsing all the NCBI GEO metadata into a SQLite database that can be stored and queried locally. GEOmetadb is simply a thin wrapper around the SQLite database along with associated documentation. Finally, the SQLite database is updated regularly as new data is added to GEO and can be downloaded at will for the most up-to-date metadata.
Package: | GEOmetadb |
Type: | Package |
Version: | 1.1.5 |
Date: | 2008-09-09 |
License: | Artistic-2.0 |
Jack Zhu and Sean Davis
Maintainer: Jack Zhu <zhujack@mail.nih.gov>
1 2 3 4 5 6 7 8 9 10 11 12 | ## Use the demo GEOmetadb database:
if( !file.exists("GEOmetadb.sqlite") ) {
demo_sqlfile <- getSQLiteFile(destdir = getwd(), destfile = "GEOmetadb.sqlite.gz", type = "demo")
} else {
demo_sqlfile <- "GEOmetadb.sqlite"
}
columnDescriptions(demo_sqlfile)[1:5,]
a <- columnDescriptions(demo_sqlfile)[1:5,]
b <- geoConvert('GPL96', out_type='GSM', sqlite_db_name=demo_sqlfile)
## Download the full GEOmetadb database:
## Not run: geometadbfile <- getSQLiteFile()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.