Title: | Marker Gene Finder in Microarray gene expression data |
---|---|
Description: | The package is designed to detect marker genes from Microarray gene expression data sets |
Authors: | Khadija El Amrani |
Maintainer: | Khadija El Amrani <[email protected]> |
License: | GPL-3 |
Version: | 1.41.0 |
Built: | 2024-10-30 08:20:19 UTC |
Source: | https://github.com/bioc/MGFM |
The package is designed to detect marker genes from microarray gene expression data sets
Package: | MGFM |
Type: | Package |
Version: | 1.2.0 |
Date: | 2014-08-13 |
License: | GPL-3 |
Khadija El Amrani Maintainer: Khadija El Amrani <[email protected]>
microarray expression data set derived from 5 tissue types (lung, liver, heart, kidney, and brain) from two GEO Series GSE1133 and GSE2361. Each tissue type is represented by 3 replicates.
data(ds2.mat)
data(ds2.mat)
A matrix
with 22283 probe sets and 15 samples.
The data consist of the following samples: GSM44702, GSM18953, GSM18954, GSM44704, GSM18949, GSM18950, GSM44690, GSM18921, GSM18922, GSM44675, GSM18955, GSM18956, GSM44671, GSM18951, GSM18952
microarray data matrix
data(ds2.mat)
data(ds2.mat)
Function to build HTML pages to show marker genes
getHtmlpage(markers.list,chip, directory=getwd())
getHtmlpage(markers.list,chip, directory=getwd())
markers.list |
List of marker genes, returned by the function |
chip |
Chip name. |
directory |
Path to the directory where to save the html pages. |
This function is based on the function htmlpage from the R-package 'annotate'.
This function is used only for the side effect of creating HTML tables.
Khadija El Amrani <[email protected]>
data("ds2.mat") res.list <- getMarkerGenes(ds2.mat, samples2compare="all", annotate=TRUE, chip="hgu133a", score.cutoff=1) getHtmlpage(res.list, chip="hgu133a",directory=getwd())
data("ds2.mat") res.list <- getMarkerGenes(ds2.mat, samples2compare="all", annotate=TRUE, chip="hgu133a", score.cutoff=1) getHtmlpage(res.list, chip="hgu133a",directory=getwd())
Function to detect marker genes using microarray gene expression data sets
getMarkerGenes(data.mat, samples2compare="all", annotate=TRUE, chip=NULL, score.cutoff=1)
getMarkerGenes(data.mat, samples2compare="all", annotate=TRUE, chip=NULL, score.cutoff=1)
data.mat |
The microarray data matrix with probe sets corresponding to rows and samples corresponding to columns. |
samples2compare |
A character vector with the sample names to be compared (e.g. c("liver", "lung", "brain")). By default all samples are used. |
annotate |
A boolean value. If TRUE the gene symbol and the entrez gene id are shown. |
chip |
Chip name. |
score.cutoff |
A value in the interval [0,1] to filter the markers according to the specificity score. The default value is 1 (no filtering). |
For each marker in the output list, the probe set and the corresponding score are shown. If annotate is TRUE, the gene symbol and the entrez gene id are shown. The score is used to rank the markers according to their specificity. The score values range from 0 to 1. Values near 0 would indicate high specificity and large values closer to 1 would indicate low specificity.
A list with marker genes associated with each sample type.
Khadija El Amrani <[email protected]>
data("ds2.mat") res.list <- getMarkerGenes(ds2.mat, samples2compare="all", annotate=TRUE, chip="hgu133a", score.cutoff=1) names(res.list) ## show the first 20 markers of liver res.list[["liver_markers"]][1:20]
data("ds2.mat") res.list <- getMarkerGenes(ds2.mat, samples2compare="all", annotate=TRUE, chip="hgu133a", score.cutoff=1) names(res.list) ## show the first 20 markers of liver res.list[["liver_markers"]][1:20]