View source: R/Get_Keyword_Meta.R
Get_Keyword_Meta | R Documentation |
Filter the meta database to obtain the study using single cell RNAseq data and containing the key information provided by user
Get_Keyword_Meta(
GeoDataBase = GeoDataBase,
Organism = "Homo sapiens",
InputSearchList = list(kw1 = "single"),
Platform = "scRNAseq"
)
GeoDataBase |
The object returned by getGeoMetaDatabase function. Required |
Organism |
The organisms to search for. One or multiple organisms can be provided. Optional. Default: c("Homo sapiens") |
InputSearchList |
The list of keywords which are described in GEO database. Multiple keywords can be provided and the keywords should be in a list. Required. Default: c("single") |
Platform |
The platform of single cell sequencing. Currently only support single cell RNAseq(scRNAseq) and single cell ATACseq(scATACseq). Options: scRNAseq, scATACseq. Default: "scRNAseq" |
The filtered meta data
library(singleGEO)
MyDataBase<-GetGeoMetaDatabase(Sqlfile=NULL,Demo=TRUE)
MyOrganism<-c("Mus musculus","Homo sapiens")
search_kw1<-c("lung","pulmonary")
search_kw2<-c("fibrosis")
KeyList<-list(kw1=search_kw1,kw2=search_kw2)
MySearch<-Get_Keyword_Meta(GeoDataBase=MyDataBase,Organism=MyOrganism, InputSearchList=KeyList)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.