Nothing
# detach(package:vcfR, unload=T)
#
library(testthat)
library(vcfR)
context("proc_chromR")
##### ##### ##### ##### #####
# vcfR_gt_to_popsum
test_that("vcfR_gt_to_popsum",{
data("vcfR_test")
gt <- extract.gt(vcfR_test)
var_info <- as.data.frame(vcfR_test@fix[,1:2])
var_info$mask <- TRUE
tmp <- .gt_to_popsum(var_info = var_info, gt = gt)
expect_equal(class(tmp), "data.frame")
expect_equal(nrow(tmp), nrow(gt))
expect_equal(ncol(tmp), 7)
expect_equal(as.character(tmp$Allele_counts[1]), "3,3")
# expect_equal(tmp$Allele_counts, structure(c(3L, 4L, 1L, 5L, 2L), .Label = c("0,2,4", "2,3,1", "3,3", "5,1", "6"), class = "factor"))
})
test_that("vcfR_gt_to_popsum, one variant",{
data("vcfR_test")
vcfR_test <- vcfR_test[1,]
gt <- extract.gt(vcfR_test)
var_info <- as.data.frame(vcfR_test@fix[,1:2, drop = FALSE])
var_info$mask <- TRUE
tmp <- .gt_to_popsum(var_info = var_info, gt = gt)
expect_equal(class(tmp), "data.frame")
expect_equal(nrow(tmp), 1)
})
test_that("vcfR_gt_to_popsum, counts missing alleles",{
data("vcfR_test")
gt <- extract.gt(vcfR_test)
gt[1,] <- "2/2"
gt[2,] <- "0/2"
var_info <- as.data.frame(vcfR_test@fix[,1:2, drop = FALSE])
var_info$mask <- TRUE
tmp <- .gt_to_popsum(var_info = var_info, gt = gt)
expect_identical(as.character(tmp$Allele_counts[1]), "0,0,6")
expect_equal(as.character(tmp$Allele_counts[2]), "3,0,3")
})
test_that("vcfR_gt_to_popsum, handles 0/.",{
data("vcfR_test")
gt <- extract.gt(vcfR_test)
gt[1,2] <- "0/."
gt[2,1] <- ".|0"
var_info <- as.data.frame(vcfR_test@fix[,1:2, drop = FALSE])
var_info$mask <- TRUE
tmp <- .gt_to_popsum(var_info = var_info, gt = gt)
expect_identical(as.character(tmp$Allele_counts[1]), "3,2")
expect_equal(as.character(tmp$Allele_counts[2]), "4,1")
})
test_that("vcfR_gt_to_popsum, haploid loci",{
data("vcfR_test")
gt <- extract.gt(vcfR_test)
gt[1,] <- "2"
gt[2,] <- "0"
var_info <- as.data.frame(vcfR_test@fix[,1:2, drop = FALSE])
var_info$mask <- TRUE
tmp <- .gt_to_popsum(var_info = var_info, gt = gt)
expect_identical(as.character(tmp$Allele_counts[1]), "0,0,3")
expect_equal(as.character(tmp$Allele_counts[2]), "3")
})
test_that("vcfR_gt_to_popsum, haploid samples",{
data("vcfR_test")
gt <- extract.gt(vcfR_test)
gt[,1] <- "2"
gt[,2] <- "0"
var_info <- as.data.frame(vcfR_test@fix[,1:2, drop = FALSE])
var_info$mask <- TRUE
tmp <- .gt_to_popsum(var_info = var_info, gt = gt)
expect_identical(as.character(tmp$Allele_counts[1]), "1,2,1")
expect_equal(as.character(tmp$Allele_counts[2]), "3,0,1")
})
test_that("vcfR_gt_to_popsum, triploid loci",{
data("vcfR_test")
gt <- extract.gt(vcfR_test)
gt[1,] <- "2/2/1"
gt[2,] <- "0/0/0"
var_info <- as.data.frame(vcfR_test@fix[,1:2, drop = FALSE])
var_info$mask <- TRUE
tmp <- .gt_to_popsum(var_info = var_info, gt = gt)
expect_identical(as.character(tmp$Allele_counts[1]), "0,3,6")
expect_equal(as.character(tmp$Allele_counts[2]), "9")
})
test_that("vcfR_gt_to_popsum, triploid samples",{
data("vcfR_test")
gt <- extract.gt(vcfR_test)
gt[,1] <- "2/2/1"
gt[,2] <- "0/0/0"
var_info <- as.data.frame(vcfR_test@fix[,1:2, drop = FALSE])
var_info$mask <- TRUE
tmp <- .gt_to_popsum(var_info = var_info, gt = gt)
expect_identical(as.character(tmp$Allele_counts[1]), "3,3,2")
expect_equal(as.character(tmp$Allele_counts[2]), "5,1,2")
})
##### ##### ##### ##### #####
test_that("vcfR_gt_to_popsum, triploid samples",{
data("vcfR_test")
mySeq <- ape::as.DNAbin(matrix(sample(c('a','c','g','t'), size = 1234567, replace = TRUE), nrow=1))
myChrom <- create.chromR(vcfR_test, seq = mySeq, verbose = FALSE)
suppressMessages(suppressWarnings(myChrom <- proc.chromR(myChrom, verbose = TRUE)))
expect_is(myChrom, "chromR")
})
##### ##### ##### ##### #####
# proc_chromR
test_that("proc_chromR works, no gt",{
data("vcfR_example")
vcf@gt <- matrix(nrow=0, ncol=0)
# class(vcf)
# myChrom <- create.chromR(vcf, verbose = FALSE)
myChrom <- create.chromR(vcf=vcf, seq = dna, ann=gff, verbose = FALSE)
myChrom <- proc.chromR(myChrom, verbose = FALSE)
expect_is(myChrom, "chromR")
})
##### ##### ##### ##### #####
# EOF.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.