callCopyNeutralRegions.PairedPSCBS | R Documentation |
Calls regions that are copy neutral from the allele B fractions (BAF).
## S3 method for class 'PairedPSCBS'
callCopyNeutralRegions(fit, ...)
fit |
A |
... |
Additional arguments passed to
|
Returns a PairedPSCBS
fit object
where a column with the copy-neutral call.
Henrik Bengtsson
if (Sys.getenv("_R_CHECK_FULL_") != "" && require("PSCBS")) {
# Load example ASCN data
data <- PSCBS::exampleData("paired.chr01");
# PSCBS segmentation
fit <- segmentByPairedPSCBS(data, verbose=-10);
fit <- bootstrapTCNandDHByRegion(fit, verbose=-10);
fitC <- callCopyNeutralRegions(fit, verbose=-10);
print(fitC);
# Normalize
fitN <- normalizeBAFsByRegions(fitC, verbose=-10);
} # if (require("PSCBS"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.