Learn R Programming

GEOmetadb (version 1.32.2)

columnDescriptions: Get column descriptions for the GEOmetadb database

Description

Searching the GEOmetadb database requires a bit of knowledge about the structure of the database and column descriptions. This function returns those column descriptions for all columns in all tables in the database.

Usage

columnDescriptions(sqlite_db_name='GEOmetadb.sqlite')

Arguments

sqlite_db_name
The filename of the GEOmetadb sqlite database file

Value

A three-column data.frame including TableName, FieldName, and Description.

References

http://meltzerlab.nci.nih.gov/apps/geo

Examples

Run this code
if(file.exists('GEOmetadb.sqlite')) {
  columnDescriptions()[1:5,]
} else {
  print("You will need to usethe getSQLiteFile() function to get a copy
of the SQLite database file before this example will work")
}

Run the code above in your browser using DataLab