getCellBaseResourceHelp {cellbaseR} | R Documentation |
A function to get help about available cellbase resources
getCellBaseResourceHelp(object, subcategory)
object |
a cellBase class object |
subcategory |
a character the subcategory to be queried |
This function retrieves available resources for each generic method like getGene, getRegion, getprotein, etc. It help the user see all possible resources to use with the getGeneric methods
character vector of the available resources to that particular subcategory
cb <- CellBaseR() # Get help about what resources are available to the getGene method getCellBaseResourceHelp(cb, subcategory="gene") # Get help about what resources are available to the getRegion method getCellBaseResourceHelp(cb, subcategory="region") # Get help about what resources are available to the getXref method getCellBaseResourceHelp(cb, subcategory="id")