Description Usage Arguments Value Examples
View source: R/getFeatureDataFromMatList.R
Extract from a list of matrices the data associated with a set of features.
1 2 3 4 5 | getFeatureDataFromMatList(
featureSet,
dataMatList,
excludeMissingFeatures = TRUE
)
|
featureSet |
a character vector of feature names. |
dataMatList |
a list of matrices with feature data organized along the rows, and feature names accessible via rownames(dataMatList). |
excludeMissingFeatures |
a logical value indicating whether features whose data cannot be found in any matrices in dataMatList should be excluded in the output. (default=TRUE). |
a single matrix containing data for all features in featureSet.
1 2 3 | featureSet <- c("expSLFN11", "mutSLX4")
molDataMats <- getMolDataMatrices()
featureData <- getFeatureDataFromMatList(featureSet, molDataMats)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.