Description Usage Arguments Value Examples
Impute a GReX for each gene for which a model was generated
1 | affiXcanImpute(tbaPaths, affiXcanTraining, scale = TRUE, BPPARAM = bpparam())
|
tbaPaths |
A vector of strings, which are the paths to MultiAssayExperiment RDS files containing the tba values |
affiXcanTraining |
The returning object from affiXcanTrain() |
scale |
A logical; if scale=FALSE the TBA values will be only centered, not scaled before performing PCA; default is TRUE |
BPPARAM |
A BiocParallelParam object. Default is bpparam(). For details on BiocParallelParam virtual base class see browseVignettes("BiocParallel") |
A SummarizedExperiment object containing imputed GReX values
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | trainingTbaPaths <- system.file("extdata","training.tba.toydata.rds",
package="AffiXcan")
data(exprMatrix)
data(regionAssoc)
data(trainingCovariates)
assay <- "values"
training <- affiXcanTrain(exprMatrix=exprMatrix, assay=assay,
tbaPaths=trainingTbaPaths, regionAssoc=regionAssoc,
varExplained=80, scale=TRUE)
testingTbaPaths <- system.file("extdata","testing.tba.toydata.rds",
package="AffiXcan")
exprmatrix <- affiXcanImpute(tbaPaths=testingTbaPaths,
affiXcanTraining=training, scale=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.