Description Usage Arguments Accessors Author(s) See Also Examples
This class encapsulates anti-profiles. Objects of this
class should be built from
AntiProfileStats
objects using the
buildAntiProfile
method. Anti-profile
scores can be computed for new samples using the
apCount
method.
1 2 3 4 | ## Accessors
getProbesetIds(object)
getNormalRegions(object)
|
object |
Object of class (or inheriting from)
|
In the following code object
is a
AntiProfile
object.
getProbesetIds
:vector of Affymetrix ids for probesets included in the anti-profile (character)
getNormalRegions
:median and upper boundary of normal expression regions (numeric matrix of dimension s-by-2, where s is the size of the anti-profile)
Hector Corrada Bravo hcorrada@gmail.com
AntiProfileStats
for the class of
objects from which anti-profiles are built.
buildAntiProfile for the method used to
construct objects of this class. apCount
for the function used to calculate anti-profile scores
from objects of this class.
1 2 3 4 5 6 7 8 9 | if (require(antiProfilesData)) {
data(apColonData)
colonStats=apStats(exprs(apColonData), pData(apColonData)$Status)
colonAP = buildAntiProfile(colonStats, tissueSpec=FALSE, sigsize=10)
show(colonAP)
head(getProbesetIds(colonAP))
head(getNormalRegions(colonAP))
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.