| getGeneVals {MEAL} | R Documentation |
Given a ResultSet and a gene name returns the results of the
analysis of all the probes of the gene.
getGeneVals(
object,
gene,
rid = 1,
genecol = "genes",
fNames = c("chromosome", "start"),
...
)
object |
|
gene |
Character with the name of the gene |
rid |
Name of the results: "DiffMean" for mean differences, "DiffVar" for variance differences. (Default: DiffMean) |
genecol |
Character with the column of |
fNames |
Names of the columns of |
... |
Further arguments passed to |
data.frame with the results of the analysis of the probes belonging to the gene
## Not run:
if (require(minfiData)){
set <- ratioConvert(mapToGenome(MsetEx[1:10,]))
methyOneVar <- runPipeline(set, variable_names = "sex")
getGeneVals(methyOneVar, "TSPY4")
}
## End(Not run)