filterEM | R Documentation |
filterEM
will annotate the probes in expression matrix and remove the duplicated gene symbols.
because there will be many probes mapped to same genes, we will only keep the max value one.
filterEM(probes_expr, probe2gene)
probes_expr |
is an expression matrix which rownames are probes of probe2gene and each column is a sample |
probe2gene |
the first column is probes and the second column is corresponding gene symbols |
a expression matrix which has been filtered duplicated gene symbols
attach(GSE95166) # head(probes_expr) # head(probe2gene) genes_expr <- filterEM(probes_expr,probe2gene) # head(genes_expr)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.