Skip to content

Commit

Permalink
Include BiocStyle in Suggests
Browse files Browse the repository at this point in the history
  • Loading branch information
jleechung committed Jan 10, 2024
1 parent 0356b74 commit 18e8f92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
5 changes: 3 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: Banksy
Title: Spatial transcriptomic clustering
Version: 0.99.5
Version: 0.99.6
Authors@R: c(
person(given = "Vipul",
family = "Singhal",
Expand Down Expand Up @@ -56,7 +56,8 @@ Suggests:
harmony,
Seurat,
ExperimentHub,
spatialLIBD
spatialLIBD,
BiocStyle
VignetteBuilder: knitr
Config/testthat/edition: 3
biocViews:
Expand Down
8 changes: 1 addition & 7 deletions R/cluster.R
Original file line number Diff line number Diff line change
Expand Up @@ -607,13 +607,7 @@ compareClusters <-
),
digits = 3) {
if (length(func) > 1) func <- func[1]
func <- match.arg(
arg = func,
choices = c(
"ARI", "AMI", "MARI", "MARIraw", "RI",
"NID", "NMI", "NVI"
)
)
func <- match.arg(arg = func)
measure_func <- get(func, mode = "function")

clust_nm <- colnames(colData(se))
Expand Down

0 comments on commit 18e8f92

Please sign in to comment.