Skip to content

Commit

Permalink
install respective genome in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AtaJadidAhari committed Jan 13, 2025
1 parent 77b80fd commit 55bb048
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/testthat/test_updateSeqlevelsStyle.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
context("Test updateSeqlevelsStyle function")

test_that("hg38, UCSC to NCBI", {
install("BSgenome.Hsapiens.UCSC.hg38")
genome <- getBSgenome("hg38")
bsgenome <- genome

Expand All @@ -12,6 +13,7 @@ test_that("hg38, UCSC to NCBI", {
})

test_that("hg38, NCBI to UCSC", {
install("BSgenome.Hsapiens.NCBI.GRCh38")
genome <- getBSgenome("GRCh38")
bsgenome <- genome

Expand All @@ -23,6 +25,7 @@ test_that("hg38, NCBI to UCSC", {
})

test_that("hg19, NCBI to UCSC", {
install("BSgenome.Hsapiens.1000genomes.hs37d5")
genome <- getBSgenome("hs37d5")
bsgenome <- genome

Expand All @@ -34,6 +37,7 @@ test_that("hg19, NCBI to UCSC", {
})

test_that("hg19, UCSC to NCBI", {
install("BSgenome.Hsapiens.UCSC.hg19")
genome <- getBSgenome("hg19")
bsgenome <- genome

Expand Down

0 comments on commit 55bb048

Please sign in to comment.