Skip to content

campbio/decontX

Folders and files

NameName
Last commit message
Last commit date
Oct 21, 2023
Dec 5, 2023
Jan 19, 2024
Dec 5, 2023
Dec 5, 2024
Mar 10, 2023
Feb 10, 2025
Mar 1, 2023
Aug 18, 2023
Dec 5, 2024
Jan 26, 2023
Aug 18, 2023
Oct 19, 2023
Oct 23, 2023
Nov 29, 2023
Feb 16, 2023
Feb 16, 2023

Repository files navigation

decontX

R-CMD-check codecov

Methods for decontamination of single cell data. This package implements both DecontX (Yang et al., 2020) for single-cell RNA-seq data and DecontPro (Yin et al., 2023) for single-cell protein expression data.

Installation Instructions

You can install the package through Bioconductor with:

if (!require("BiocManager", quietly = TRUE))
    install.packages("BiocManager")

BiocManager::install("decontX")

Alternatively, install the development version through GitHub using devtools package:

# install.packages("devtools")
devtools::install_github("campbio/decontX")

Vignettes

Vignettes are available on Bioconductor.

To build vignette when installing from GitHub, add the flag build_vignettes = TRUE:

library(devtools)
install_github("campbio/decontX", build_vignettes = TRUE)

Then vignettes can be accessed through:

vignette('decontX', package = 'decontX')
vignette('decontPro', package = 'decontX')