Pre-built binary R packages from the Tin Nguyen Lab.
This is a drat archive served via GitHub Pages at https://tinnlab.github.io/drat/. It hosts compiled binaries only — source repositories are private.
| Package | Description |
|---|---|
| PRESS | Perturbation-Resampled Enrichment with Semantic Smoothing |
install.packages("PRESS",
repos = "https://tinnlab.github.io/drat",
type = "binary")
library(PRESS)
?PRESSR will pick the right binary for your platform and R version automatically.
R does not auto-install binary packages on Linux. Install directly from URL.
Example: PRESS 0.9.0 on R 4.6
download.file(
"https://tinnlab.github.io/drat/bin/linux/contrib/4.6/PRESS_0.9.0_R_x86_64-pc-linux-gnu.tar.gz",
"/tmp/PRESS.tar.gz")
install.packages("/tmp/PRESS.tar.gz", repos = NULL)
library(PRESS)
?PRESSNote there is no type = "binary": R rejects that argument on Linux
("type 'binary' is not supported on this platform"). Omit it. The tarball
contains no src/, so R installs the pre-compiled files as they are rather than
trying to build anything.
For other R versions, swap 4.6 in the URL for your major.minor (4.2, 4.3, 4.4, or 4.5). For other PRESS versions, swap 0.9.0 for the version you want. Run getRversion() if you're not sure which R you have.
Each release builds for:
| OS | Architecture | R versions |
|---|---|---|
| Linux | x86_64 | 4.2, 4.3, 4.4, 4.5, 4.6 |
| macOS Apple Silicon | arm64 | 4.3, 4.4, 4.5, 4.6 |
| Windows | x86_64 | 4.2, 4.3, 4.4, 4.5, 4.6 |
Note: macOS Intel (x86_64) binaries are not provided. Intel-Mac users will need to build from source — contact the author for the source tarball.
Phi Bya — phi@wayne.edu