View source: R/createNormalDatabase.R
calculateTangentNormal | R Documentation |
Reimplementation of GATK4 denoising. Please cite the relevant GATK publication if you use this in a publication.
calculateTangentNormal(
tumor.coverage.file,
normalDB,
num.eigen = 20,
ignore.sex = FALSE,
sex = NULL
)
tumor.coverage.file |
Coverage file or data of a tumor sample. |
normalDB |
Database of normal samples, created with
|
num.eigen |
Number of eigen vectors used. |
ignore.sex |
If |
sex |
Sex of sample. If |
Markus Riester
createNormalDatabase
tumor.coverage.file <- system.file('extdata', 'example_tumor.txt.gz',
package = 'PureCN')
normal.coverage.file <- system.file("extdata", "example_normal.txt.gz",
package = "PureCN")
normal2.coverage.file <- system.file("extdata", "example_normal2.txt.gz",
package = "PureCN")
normal.coverage.files <- c(normal.coverage.file, normal2.coverage.file)
normalDB <- createNormalDatabase(normal.coverage.files)
pool <- calculateTangentNormal(tumor.coverage.file, normalDB)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.