View source: R/preprocess_matrixs.R
| preprocess_matrixs | R Documentation |
Process matrixs from GEO
preprocess_matrixs( dataset = expmat, metadata = sample_post, annotation = probe2gene, method.probe = "median" )
dataset |
Expression matrixs |
metadata |
sample metadata |
annotation |
probe annotaion file |
method.probe |
one of "medain","mean","max","min", default is "median" |
preprocessed expression matrixs
library(Dbio)
# make file structure
initial_file("GSE54566", "./")
# get sample data
sample <- get_sample("GSE54566", "./")
# process sample
sample_post <- preprocess_sample(sample)
# get expression data
expmat <- get_matrixs("GSE54566", "./")
# get probe annotation data
annotation <- get_probe2symbol("GPL570", "GSE54566", "./")
preprocess_matrixs(
dataset = expmat,
metadata = sample_post,
annotation = annotation
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.