Name Mode Size
.github 040000
R 040000
inst 040000
man 040000
src 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitignore 100644 1 kb
DESCRIPTION 100644 2 kb
LICENSE 100644 1 kb
NAMESPACE 100644 1 kb
NEWS.md 100644 0 kb
README.Rmd 100644 1 kb
README.md 100644 2 kb
configure 100755 0 kb
configure.win 100755 0 kb
README.md
<!-- README.md is generated from README.Rmd. Please edit that file --> # decontX <!-- badges: start --> [![R-CMD-check](https://github.com/campbio/decontX/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/campbio/decontX/actions/workflows/R-CMD-check.yaml) [![codecov](https://codecov.io/gh/campbio/decontX/graph/badge.svg?token=z5YnsXuWqh)](https://codecov.io/gh/campbio/decontX) <!-- badges: end --> Methods for decontamination of single cell data. This package implements both DecontX (Yang et al., [2020](https://genomebiology.biomedcentral.com/articles/10.1186/s13059-020-1950-6)) for single-cell RNA-seq data and DecontPro (Yin et al., [2023](https://www.biorxiv.org/content/10.1101/2023.01.27.525964v2)) for single-cell protein expression data. ## Installation Instructions You can install the package through [Bioconductor](https://bioconductor.org/packages/decontX) with: ``` r if (!require("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("decontX") ``` Alternatively, install the development version through [GitHub](https://github.com/campbio/decontX) using `devtools` package: ``` r # install.packages("devtools") devtools::install_github("campbio/decontX") ``` ## Vignettes Vignettes are available on [Bioconductor](https://bioconductor.org/packages/decontX). To build vignette when installing from GitHub, add the flag `build_vignettes = TRUE`: ``` r library(devtools) install_github("campbio/decontX", build_vignettes = TRUE) ``` Then vignettes can be accessed through: ``` r vignette('decontX', package = 'decontX') vignette('decontPro', package = 'decontX') ```