Description Usage Arguments Value Author(s) See Also Examples
View source: R/createNormalDatabase.R
Function to create a database of normal samples, used to normalize tumor coverages.
1 2 3 4 5 6 7 8 9 10 |
normal.coverage.files |
Vector with file names pointing to coverage files of normal samples. |
sex |
|
coverage.outliers |
Exclude samples with coverages below or above the specified cutoffs (fractions of the normal sample coverages median). Only for databases with more than 5 samples. |
min.coverage |
Exclude intervals with coverage lower than the specified fraction of the chromosome median in the pool of normals. |
max.missing |
Exclude intervals with zero coverage in the specified fraction of normal samples. |
low.coverage |
Specifies the maximum number of total reads (NOT average coverage) to call a target low coverage. |
plot |
Diagnostics plot, useful to tune parameters. |
... |
Arguments passed to the |
A normal database that can be used in the
calculateTangentNormal
function to retrieve a coverage
normalization sample for a given tumor sample.
Markus Riester
1 2 3 4 5 6 | normal.coverage.file <- system.file("extdata", "example_normal.txt",
package="PureCN")
normal2.coverage.file <- system.file("extdata", "example_normal2.txt",
package="PureCN")
normal.coverage.files <- c(normal.coverage.file, normal2.coverage.file)
normalDB <- createNormalDatabase(normal.coverage.files)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.