Skip to content
This repository has been archived by the owner on Apr 27, 2023. It is now read-only.

Commit

Permalink
fix problem in test; v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Yu Sun committed Oct 23, 2019
1 parent 81e3216 commit 83bb2fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: CrossICC
Type: Package
Title: An Interactive Consensus Clustering Framework for Multi-platform Data Analysis
Version: 0.99.26
Version: 1.0.0
Description: CrossICC utilizes an iterative strategy to derive the optimal gene set and cluster number from consensus similarity matrix generated by consensus clustering and it is able to deal with multiple cross platform datasets so that requires no between-dataset normalizations. This package also provides abundant functions for visualization and identifying subtypes of cancer. Specially, many cancer-related analysis methods are embedded to facilitate the clinical translation of the identified cancer subtypes.
Authors@R: c(
person('Yu', 'Sun', email = "[email protected]", role = c('aut', 'cre'), comment = c(ORCID = '0000-0003-4269-7187')),
Expand Down
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Changes in version 1.0.0 (2019-10-22)
* Use tempdir() in test to avoid using home dir of bioconductor build machine

Changes in version 0.99.26 (2019-09-23)
* Use tempdir() in examples and vignette to prevent from contaminating Bioc and users' machine

Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-crossicc.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
context("test-crossicc")

data("demo.platforms")
CrossICC.obj <- CrossICC(demo.platforms, skip.mfs = TRUE, max.iter = 100, use.shiny = FALSE, cross = "cluster", overwrite = TRUE)
CrossICC.obj <- CrossICC(demo.platforms, skip.mfs = TRUE, max.iter = 100, use.shiny = FALSE, cross = "cluster", overwrite = TRUE, output.dir = tempdir())
test_that("CrossICC works", {
expect_equal(length(CrossICC.obj), 10)
})

0 comments on commit 83bb2fe

Please sign in to comment.