ccdf
ccdf
is a package for performing single-cell RNA-seq
differential expression analysis and more generally complex
hypothesis testing.
The main function of the package is ccdf_testing()
. It
allows to use either an asymptotic test for large sample size or a
permutation test for small sample size with the argument
method
.
The methods implemented in this package are detailed in the following article:
Gauthier M, Agniel D, Thiébaut R & Hejblum BP (2020). Distribution-free complex hypothesis testing for single-cell RNA-seq differential expression analysis, BioRxiv DOI:10.1101/2021.05.21.445165
To install ccdf
, you can download the
development version on GitHub.
#install.packages("devtools")
::install_github("Mgauth/ccdf") devtools
Here is a basic example which shows how to use ccdf
with
simple generated data.
## Data Generation
<- rbinom(n=100, size = 1, prob = 0.5)
X <- t(replicate(10, ((X==1)*rnorm(n = 50,0,1)) + ((X==0)*rnorm(n = 50,0.5,1)))) Y
# Hypothesis testing
<- ccdf_testing(exprmat=data.frame(Y=Y), variable2test=data.frame(X=as.factor(X)), test="asymptotic")$pvals # asymptotic test
res_asymp <- ccdf_testing(exprmat=Y, variable2test=X, test="permutations",
res_perm adaptive=TRUE)$pvals # adaptive permutation test
– Marine Gauthier, Denis Agniel, Rodolphe Thiébaut & Boris Hejblum