Name Mode Size
R 040000
data 040000
inst 040000
man 040000
tests 040000
vignettes 040000
DESCRIPTION 100644 1 kb
LICENSE 100644 1 kb
NAMESPACE 100644 0 kb
NEWS.md 100644 0 kb
README.md 100644 1 kb
README.md
# UPDhmm <!-- badges: start --> <!-- badges: end --> We have developed `UPDhmm` R/Bioconductor package. The package provides a tool method to detect, classify and stablish the location of uniparental disomy events. ## Installation You can install the current release version of UPDhmm from [Bioconductor](https://bioconductor.org/) with: ``` r if (!require("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("UPDhmm") ``` You can install the development version of UPDhmm from [GitHub](https://github.com/) with: ``` r # install.packages("devtools") devtools::install_github("martasevilla/UPDhmm") devtools::install_github("martasevilla/UPDhmm") ``` ## Example This is a example which show you how to solve use the package in a trio-vcf file: ``` r library(UPDhmm) library(VariantAnnotation) file <- system.file(package = "UPDhmm", "extdata", "test_het_mat.vcf.gz") vcf <- readVcf(file) processedVcf <- vcfCheck( vcf, proband = "NA19675", mother = "NA19678", father = "NA19679" ) updEvents <- calculateEvents(largecollapsed=processedVcf) ```