getDataFrame.Annotation {IdMappingRetrieval} | R Documentation |
Get the entire data set available from a particular service in a form of a data frame caching the data in a service directory allowing the fast retrieval of data next time the function is called.
## S3 method for class 'Annotation' getDataFrame(this, arrayType="menu", force=FALSE, graphics=TRUE, verbose=FALSE, ...)
arrayType |
Character string representing the array name. If 'menu', the list of available arrays is displayed allowing to select the array type of interest. |
force |
If |
graphics |
If |
verbose |
|
... |
Not used. |
A data.frame
containing entire data set available from a particular service.
Alex Lisovich, Roger Day
For more information see Annotation
.
## Not run: Annotation$init(); Annotation$setCredentials("Affymetrix",user="alex.lisovich@gmail.com",password="125438",verbose); #create Affymetrix annotation object annObj=AnnotationAffx("Affymetrix"); #retrieve the raw annotation data frame df<-getDataFrame(annObj,verbose=TRUE); ## End(Not run)