Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ..Rcheck/00check.log
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
* using log directory ‘/home/veit/devel/Bioinformatics/DataAnalysis/ShinyApps/vsclust/..Rcheck’
* using R version 4.4.2 (2024-10-31)
* using R version 4.5.0 (2025-04-11)
* using platform: x86_64-pc-linux-gnu
* R was compiled by
gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
* running under: Ubuntu 24.04.1 LTS
gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0
GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0
* running under: Ubuntu 24.04.2 LTS
* using session charset: UTF-8
* checking for file ‘./DESCRIPTION’ ... ERROR
Required fields missing or empty:
Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Package: vsclust
Encoding: UTF-8
Type: Package
Title: Feature-based variance-sensitive quantitative clustering
Version: 1.11.2
Version: 1.13.1
Date: 2022-03-23
Authors@R:
person(
Expand Down Expand Up @@ -45,4 +45,4 @@ VignetteBuilder: knitr
Depends: R (>= 4.2.0)
Config/testthat/edition: 3
LazyData: false
RoxygenNote: 7.3.2
RoxygenNote: 7.3.3
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ importFrom(matrixStats,rowSds)
importFrom(qvalue,qvalue)
importFrom(shiny,getDefaultReactiveDomain)
importFrom(shiny,incProgress)
importFrom(shiny,isRunning)
importFrom(shiny,need)
importFrom(shiny,validate)
useDynLib(vsclust, .registration = TRUE)
4 changes: 2 additions & 2 deletions R/EvaluateClustering.R
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ mfuzz.plot <-
colorseq <- seq(0, 1, length = length(colo))
for (j in seq_len(max(clusterindex))) {
if (sum(clusterindex == j) > 0) {
tmp <- dat[clusterindex == j,]
# keep matrices in place even if a cluster has just one member
tmp <- dat[clusterindex == j,, drop = FALSE]
tmpmem <- memship[clusterindex == j, j]
if (((j - 1) %% (mfrow[1] * mfrow[2])) == 0) {
if (!is.na(filename)) {
Expand Down Expand Up @@ -375,4 +376,3 @@ estimClust.plot <- function(ClustInd) {
# finally plot
p <- recordPlot()
}

Loading
Loading