NULISAseqR is an R package designed for comprehensive analysis of proteomic data from the NULISAseq platform (Alamar Biosciences). NULISAseq is a high-multiplexed proteomic assay that uses nucleic acid-linked immunosandwich assays to measure hundreds of proteins simultaneously.
Important: Before installing NULISAseqR on macOS, you need to install Xcode Command Line Tools:
Important: Before installing NULISAseqR on Windows, you need to install Rtools:
# 1. Install devtools
if (!requireNamespace("devtools", quietly = TRUE))
install.packages("devtools")
# 2. Install BiocManager for Bioconductor packages
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
# 3. Install ComplexHeatmap from Bioconductor
BiocManager::install("ComplexHeatmap")
# 4. Install ggalt from CRAN snapshot
install.packages('ggalt', repos = "http://packagemanager.posit.co/cran/2025-08-02")
# 5. Install PCAtools (Alamar fork)
devtools::install_github('Alamar-Biosciences/PCAtools')
# 6. Install NULISAseqR
devtools::install_github('Alamar-Biosciences/NULISAseqR')Note: If you encounter issues installing packages from source, you may need to restart R (Cmd/Ctrl + Shift + F10 in RStudio) between major installation steps.
Load the package:
?function_name in R (e.g., ?importNULISAseq)