group_list: A factor with duplicated character or factor
ids: a data.frame with 2 columns,including probe_id and symbol
logFC_cutoff: Cutoff value of logFC,1 by default.
pvalue_cutoff: Cutoff value of pvalue,0.05 by default.
adjust: a logical value, would you like to use adjusted pvalue to draw this plot,FAlSE by default.
species: choose human or mouse, or rat, default: human
entriz: whether convert symbols to entriz ids
Returns
a deg data.frame with 10 columns
Examples
## Not run:if(requireNamespace("Biobase",quietly =TRUE)& requireNamespace("AnnoProbe",quietly =TRUE)){ gse ="GSE474" geo = geo_download(gse,destdir=tempdir()) geo$exp[1:4,1:4] geo$exp=log2(geo$exp+1) group_list=ifelse(stringr::str_detect(geo$pd$title,"MObese"),"MObese",ifelse(stringr::str_detect(geo$pd$title,"NonObese"),"NonObese","Obese")) group_list=factor(group_list,levels = c("NonObese","Obese","MObese")) find_anno(geo$gpl) ids <- AnnoProbe::idmap(geo$gpl,destdir = tempdir()) deg = multi_deg(geo$exp,group_list,ids,adjust =FALSE,entriz =FALSE) names(deg) head(deg[[1]]) head(deg[[2]]) head(deg[[3]])}else{if(!requireNamespace("AnnoProbe",quietly =TRUE)){ warning("Package 'AnnoProbe' needed for this function to work.
Please install it by install.packages('AnnoProbe')",call. =FALSE)}if(!requireNamespace("Biobase",quietly =TRUE)){ warning("Package 'Biobase' needed for this function to work.
Please install it by BiocManager::install('Biobase')",call. =FALSE)}}## End(Not run)