Skip to content
Open
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
5 changes: 2 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: Rclusterpp
Type: Package
Title: Linkable C++ Clustering
Title: Linkable 'C++' Hierarchical Clustering
Version: 0.2.6
VignetteBuilder: knitr
Date: 2022-08-02
Expand All @@ -10,8 +10,7 @@ Authors@R: c(person("Michael Linderman",role="aut",email="michael.d.linderman@gm
person("Robert Tibshirani",role="ctb",email="tibs@stanford.edu"),
person("Balasubramanian Narasimhan",role="cre",email="naras@stanford.edu"),
person("Justin Landis",role = "ctb",email = "jtlandis314@gmail.com"))
Description: Provide flexible native clustering routines that can be
linked against in downstream packages.
Description: Space efficient "stored data" implementations for common hierarchical clustering routines (simple, complex, average and Ward's linkage)that scale to hundreds of thousands of observations. Rclusterpp provides flexible native clustering functions that can be linked against in downstream packages.
License: MIT + file LICENSE
Depends: R (>= 2.12.0), Rcpp (>= 0.10.4)
LinkingTo: Rcpp, RcppEigen
Expand Down
2 changes: 1 addition & 1 deletion R/Rclusterpp.package.skeleton.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Adapted from Rclusterpp.package.skeleton.R in Rclusterpp package
# Adapted from RcppEigen.package.skeleton.R in the RcppEigen package

Rclusterpp.package.skeleton <- function(
name = "anRpackage", list = character(), environment = .GlobalEnv,
Expand Down
3 changes: 2 additions & 1 deletion tests/doRUnit.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ if( identical( .Platform$OS.type, "windows" ) && identical( .Platform$r_arch, "x
} else {
path <- system.file(package=pkg, "unit_tests")
}
oldwd <- getwd()
setwd(path)
cat("\nRunning unit tests:\n")
print(list(pkg=pkg, getwd=getwd(), pathToUnitTests=path))
Expand Down Expand Up @@ -37,7 +38,7 @@ if( identical( .Platform$OS.type, "windows" ) && identical( .Platform$r_arch, "x

# Report to HTML file
#printHTMLProtocol(tests, fileName=paste(pathReport, ".html", sep=""))
setwd(oldwd)
# Return stop() to cause R CMD check stop in case of
# - failures i.e. FALSE to unit tests or
# - errors i.e. R errors
Expand Down