Nothing
#################################################################################
## getBiocPlatformMap function:
## query and get mappings betwen GPL accessions and bioc_package names
## Usage of getBiocPlatformMap:
## arguments: getBiocPlatformMap (con, bioc='all')
################################################################################
getBiocPlatformMap <-
function(con, bioc='all') {
bioc=tolower(bioc)
if( any(bioc %in% 'all')) {
biocmap = dbGetQuery(con,'select title,gpl,bioc_package,manufacturer,organism,data_row_count from gpl where bioc_package is not NULL ORDER by bioc_package')
} else {
biocmap = dbGetQuery(con, paste("select title,gpl,bioc_package,manufacturer,organism,data_row_count from gpl where bioc_package IN ('", paste(bioc, sep='', collapse="','"), "') AND bioc_package IS NOT NULL ORDER by bioc_package", sep=''))
}
return(biocmap);
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.