readCnvnator | R Documentation |
Reading the structural variations predicted by CNVnator, filtering low quality predictions and merging overlapping predictions.
readCnvnator(dataDir=".", regSizeLowerCutoff=100, regSizeUpperCutoff=1000000,
method="CNVnator")
dataDir |
the directory that contain the output files of CNVnator. |
regSizeLowerCutoff |
the minimum size for a structural variation to be read. |
regSizeUpperCutoff |
the maximum size for a structural variation to be read. |
method |
a tag to assign to the result of this function. |
The predicted SVs could be further filtered by the predicted size of SVs to get more reliable SVs. See our paper for more details. The directory that specified by the parameter "dataDir" should only contain the predictions of CNVnator. See the example dataset for more details.
A list with the following components:
del |
the deletions predicted by CNVnator. |
dup |
the duplications predicted by CNVnator. |
Wen Yao
cnvnator <- readCnvnator(system.file("extdata/cnvnator",package="intansv"))
str(cnvnator)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.