Last updated: 2020-02-12

Checks: 7 0

Knit directory: misc/

This reproducible R Markdown analysis was created with workflowr (version 1.5.0). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.


Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.

Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.

The command set.seed(20191122) was run prior to running the code in the R Markdown file. Setting a seed ensures that any results that rely on randomness, e.g. subsampling or permutations, are reproducible.

Great job! Recording the operating system, R version, and package versions is critical for reproducibility.

Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.

Great job! Using relative paths to the files within your workflowr project makes it easier to run your code on other machines.

Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility. The version displayed above was the version of the Git repository at the time these results were generated.

Note that you need to be careful to ensure that all relevant files for the analysis have been committed to Git prior to generating the results (you can use wflow_publish or wflow_git_commit). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated:


Ignored files:
    Ignored:    .DS_Store
    Ignored:    .Rhistory
    Ignored:    .Rproj.user/
    Ignored:    analysis/figure/

Untracked files:
    Untracked:  data/ROTS_results.RData
    Untracked:  data/ROTS_results2.RData
    Untracked:  data/cate_cate_high.RData
    Untracked:  data/cate_cate_low.RData
    Untracked:  data/cate_cate_mid.RData
    Untracked:  data/cate_cate_null.RData
    Untracked:  data/mout_high.RData
    Untracked:  data/mout_low.RData
    Untracked:  data/mout_mid.RData
    Untracked:  data/mout_null.RData
    Untracked:  data/pbmc.rds
    Untracked:  data/pbmc_counts.rds
    Untracked:  data/sva_sva_high.RData
    Untracked:  data/sva_sva_low.RData
    Untracked:  data/sva_sva_mid.RData
    Untracked:  data/sva_sva_null.RData

Unstaged changes:
    Modified:   analysis/deconvolution.Rmd
    Modified:   analysis/index.Rmd

Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.


These are the previous versions of the R Markdown and HTML files. If you’ve configured a remote Git repository (see ?wflow_git_remote), click on the hyperlinks in the table below to view them.

File Version Author Date Message
Rmd 02f0022 Dongyue Xie 2020-02-12 wflow_publish(“analysis/scdePBMC.Rmd”)
html 14a0144 Dongyue Xie 2020-01-16 Build site.
Rmd 3b6f80d Dongyue Xie 2020-01-16 wflow_publish(“analysis/scdePBMC.Rmd”)

Introduction

In my previous analysis, I tried RUV methods on single-cell RNA-Seq data. I only tried top 1000 expressed genes from the dataset. So only a few of gene expressions are 0. This is not what typically scRNA-Seq data are. Also, I tried only 50 cells.

This time, I’m going to try PBMC data prepared by Satjia Lab.

library(MAST)
library(Seurat)
datax = readRDS('data/pbmc_counts.rds')@assays$RNA
datax = datax[rowSums(datax)>0,]
clusters = readRDS('data/pbmc.rds')

cell_cluster = clusters@colData$seurat

How many zeros are there? A lot

sum(datax==0)/(dim(datax)[1]*dim(datax)[2])
[1] 0.9381137

Let’s only use the Naive CD4+ T cells, which corresponds to the first cluster. Total 709 cells.

CDT_idx = which(cell_cluster == 1)
CDT = datax[,CDT_idx]

set.seed(12345)
group1_idx = sample(1:ncol(CDT),ncol(CDT)/2)
group1 = CDT[,group1_idx]
group2 = CDT[,-group1_idx]
## for each gene, run a two-sample t test

p_values1 = c()
for(i in 1:nrow(CDT)){
  p_values1[i] = t.test(log(group1[i,]+1),log(group2[i,]+1),alternative='two.sided')$p.value
}
hist(p_values1,breaks = 15)

summary(p_values1)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max.    NA's 
 0.0001  0.2539  0.4368  0.4842  0.7154  0.9997    1225 

There are 1225 genes that have no expression in any Naive CD4+ T cells. Remove these genes.

CDT = CDT[-which((rowSums(CDT)==0)),]

Again, t-test does not apply here since for a lot of genes, only one cell has non-zero read counts among two groups.

How about apply TMM then t-test?

library(edgeR)
tmm = calcNormFactors(CDT,method='TMM')
CDTnorm = cpm(CDT,tmm)
group1 = CDTnorm[,group1_idx]
group2 = CDTnorm[,-group1_idx]
## for each gene, run a two-sample t test

p_values1 = c()
for(i in 1:nrow(CDT)){
  p_values1[i] = t.test(log(group1[i,]+1),log(group2[i,]+1),alternative='two.sided')$p.value
}
hist(p_values1,breaks = 15)

Version Author Date
14a0144 Dongyue Xie 2020-01-16
summary(p_values1)
     Min.   1st Qu.    Median      Mean   3rd Qu.      Max. 
0.0001423 0.2534142 0.4427949 0.4865154 0.7256823 0.9999975 

Now let’s apply ROTS method for scDE, which is one of the best performance method tested in Sonenson and Delorenzi.

First Normalize the counts by Trimmed Mean of M-values as required by ROTS. Then apply ROTS.

group = rep(0,ncol(CDT))
group[group1_idx] = 1
library(ROTS)
#ROTS_results = ROTS(data = CDTnorm, groups = group , B = 100 , K = 500 , seed = 1234)
load('data/ROTS_results.RData')
summary(ROTS_results, fdr = 0.05)
ROTS results: 

Number of resamplings:  100 

a1:                     4.6 
a2:                     1 
Top list size:          390 
Reproducibility value:  0.1662051 
Z-score:                5.651558 

0 rows satisfy the condition.
     Row ROTS-statistic pvalue FDR
hist(ROTS_results$pvalue,breaks = 15)

Version Author Date
14a0144 Dongyue Xie 2020-01-16

Let’s reduce the number of cells in each group. Reudce from 355 to 50.

n_cell = 100
set.seed(1234)
CDT_subset = CDT[,sample(1:ncol(CDT),n_cell)]
tmm = calcNormFactors(CDT_subset,method='TMM')
CDTnorm_subset = cpm(CDT_subset,tmm)
group = rep(0,ncol(CDTnorm_subset))
group1_idx = sample(1:n_cell,n_cell/2)
group[group1_idx] = 1
#ROTS_results2 = ROTS(data = CDTnorm_subset, groups = group , B = 100 , K = 500 , seed = 1234)
load('data/ROTS_results2.RData')
summary(ROTS_results2, fdr = 0.05)
ROTS results: 

Number of resamplings:  100 

a1:                     4.8 
a2:                     1 
Top list size:          350 
Reproducibility value:  0.2001143 
Z-score:                2.900302 

1 rows satisfy the condition.
        Row ROTS-statistic       pvalue FDR
MRPL18 4436      -3.618599 4.043882e-05   0
hist(ROTS_results2$pvalue,breaks = 15)

One false discovery. Lots of p-values concentrate at 1.

RUV methods

First apply on NULL data then add signals to genes using Poisson thinning.

Randomly split 709 cells to two groups.

library(vicar)

set.seed(12345)
group1_idx = sample(1:ncol(CDT),ncol(CDT)/2)
group1 = CDT[,group1_idx]
group2 = CDT[,-group1_idx]

group_indicator = rep(0,ncol(CDT))
group_indicator[group1_idx] = 1

X = model.matrix(~group_indicator)
CDT = as.matrix(CDT)

Y = t(CDT)

#num_sv     <- sva::num.sv(dat = t(Y), mod = X, method = "be")
#num_sv_l   <- sva::num.sv(dat = t(Y), mod = X, method = "leek")

num_sv = 3
#num_sv_l

The number of estimated surrogate variables is 3.

#mout = mouthwash(Y,X,k=num_sv,cov_of_interest = 2,include_intercept = FALSE)
#save(mout,file = 'data/mout_null.RData')
load('data/mout_null.RData')
mout$pi0
[1] 0.9999172
library(cate)
#library(leapp)

#cate_cate   <- cate::cate.fit(X.primary = X[, 2, drop = FALSE], X.nuis = X[, -2, drop = FALSE],
#                              Y = Y, r = num_sv, adj.method = "rr")
#save(cate_cate,file = 'data/cate_cate_null.RData')
load('data/cate_cate_null.RData')
# this method is vey slow!
#leapp_leapp <- leapp::leapp(data = t(Y), pred.prim = X[, 2, drop = FALSE], 
#                            pred.covar = X[, -2, drop = FALSE], num.fac = num_sv)

#sva_sva     <- sva::sva(dat = t(Y), mod = X, mod0 = X[, -2, drop = FALSE], n.sv = num_sv)
#save(sva_sva,file = 'data/sva_sva_null.RData')
load('data/sva_sva_null.RData')
X.sva <- cbind(X, sva_sva$sv)
lmout <- limma::lmFit(object = t(Y), design = X.sva)
eout  <- limma::eBayes(lmout)
svaout           <- list()
svaout$betahat   <- lmout$coefficients[, 2]
svaout$sebetahat <- lmout$stdev.unscaled[, 2] * sqrt(eout$s2.post)
svaout$pvalues   <- eout$p.value[, 2]

hist(svaout$pvalues,breaks=15)

ks.test(svaout$pvalues,'punif',0,1)

    One-sample Kolmogorov-Smirnov test

data:  svaout$pvalues
D = 0.075746, p-value < 2.2e-16
alternative hypothesis: two-sided
hist(cate_cate$beta.p.value,breaks = 15)

ks.test(cate_cate$beta.p.value,'punif',0,1)

    One-sample Kolmogorov-Smirnov test

data:  cate_cate$beta.p.value
D = 0.094454, p-value < 2.2e-16
alternative hypothesis: two-sided

Add some signal to the NULL dataset.

library(seqgendiff)
#tt = thin_diff(round(cell16), design_fixed = X[,2,drop=FALSE])
set.seed(12345)
thinout = thin_2group(round(CDT),0.9,signal_fun = stats::rexp,signal_params = list(rate=0.5))

#check null groups

group1 = CDT[,which(thinout$designmat==1)]
group2 = CDT[,which(thinout$designmat==0)]
## for each gene, run a two-sample t test

p_values1 = c()
for(i in 1:nrow(CDT)){
  p_values1[i] = t.test(group1[i,],group2[i,],alternative='two.sided')$p.value
}
ks.test(p_values1,'punif',0,1)

    One-sample Kolmogorov-Smirnov test

data:  p_values1
D = 0.10457, p-value < 2.2e-16
alternative hypothesis: two-sided
hist(p_values1,breaks = 15)

Y = t(thinout$mat)

remove.idx = which(colSums(Y)==0)

Y = Y[,-remove.idx]

X = model.matrix(~thinout$designmat)

#num_sv     <- sva::num.sv(dat = t(Y), mod = X, method = "be")
#num_sv_l   <- sva::num.sv(dat = t(Y), mod = X, method = "leek")

num_sv = 3
#num_sv_l

mean(abs(thinout$coef) < 10^-6)
[1] 0.899984
#mout = mouthwash(Y,X,k=num_sv,cov_of_interest = 2,include_intercept = FALSE)
#save(mout,file = 'data/mout_mid.RData')
#mout$pi0

load('data/mout_mid.RData')

#bout <- backwash(Y = Y, X = X, k = num_sv, cov_of_interest = 2, include_intercept = FALSE)
#save(bout,file = 'data/bout_mid.RData')
#bout$pi0


#cate_cate = cate::cate.fit(X.primary = X[, 2, drop = FALSE], X.nuis = X[, -2, drop = FALSE],
#                              Y = Y, r = num_sv, adj.method = "rr")
#save(cate_cate,file = 'data/cate_cate_mid.RData')
load('data/cate_cate_mid.RData')
#sva_sva     <- sva::sva(dat = t(Y), mod = X, mod0 = X[, -2, drop = FALSE], n.sv = num_sv)
#save(sva_sva,file = 'data/sva_sva_mid.RData')
load('data/sva_sva_mid.RData')
X.sva <- cbind(X, sva_sva$sv)
lmout <- limma::lmFit(object = t(Y), design = X.sva)
eout  <- limma::eBayes(lmout)
svaout           <- list()
svaout$betahat   <- lmout$coefficients[, 2]
svaout$sebetahat <- lmout$stdev.unscaled[, 2] * sqrt(eout$s2.post)
svaout$pvalues   <- eout$p.value[, 2]

which_null = c(1*(abs(thinout$coef[-remove.idx]) < 10^-6))



# plot ROC curve
roc_out <- list(
  pROC::roc(response = which_null, predictor = c(mout$result$lfdr)),
  #pROC::roc(response = which_null, predictor = c(bout$result$lfdr)),
  pROC::roc(response = which_null, predictor = c(cate_cate$beta.p.value)),
  pROC::roc(response = which_null, predictor = c(svaout$pvalues)))
name_vec <- c("MOUTHWASH", "CATErr", "SVA")
names(roc_out) <- name_vec

sout <- lapply(roc_out, function(x) { data.frame(TPR = x$sensitivities, FPR = 1 - x$specificities)})
for (index in 1:length(sout)) {
  sout[[index]]$Method <- name_vec[index]
}
longdat <- do.call(rbind, sout)

shortdat <- dplyr::filter(longdat, Method == "MOUTHWASH" |
                            Method == "CATErr" | Method == "SVA" | Method == "LEAPP")
library(ggplot2)
ggplot(data = shortdat, mapping = aes(x = FPR, y = TPR, col = Method)) +
  geom_path() + theme_bw() + ggtitle("ROC Curves")

auc_vec <- sapply(roc_out, FUN = function(x) { x$auc })
knitr::kable(sort(auc_vec, decreasing = TRUE), col.names = "AUC", digits = 3)
AUC
SVA 0.739
CATErr 0.710
MOUTHWASH 0.622
# estimate pi0
method_list <- list()
method_list$CATErr           <- list()
method_list$CATErr$betahat   <- c(cate_cate$beta)
method_list$CATErr$sebetahat <- c(sqrt(cate_cate$beta.cov.row * c(cate_cate$beta.cov.col)) / sqrt(nrow(X)))

method_list$SVA             <- list()
method_list$SVA$betahat     <- c(svaout$betahat)
method_list$SVA$sebetahat   <- c(svaout$sebetahat)

ashfit <- lapply(method_list, FUN = function(x) { ashr::ash(x$betahat, x$sebetahat)})
api0 <- sapply(ashfit, FUN = ashr::get_pi0)
api0 <- c(api0, MOUTHWASH = mout$pi0)
#api0 <- c(api0, BACKWASH = bout$pi0)

knitr::kable(sort(api0, decreasing = TRUE), col.names = "Estimate of Pi0")
E stimate of Pi0
MOUTHWASH 0.9842729
CATErr 0.8818215
SVA 0.8546489

Weaker signal: rexp(,rate=1)

set.seed(12345)
thinout = thin_2group(round(CDT),0.9,signal_fun = stats::rexp,signal_params = list(rate=1))

Y = t(thinout$mat)

remove.idx = which(colSums(Y)==0)

Y = Y[,-remove.idx]

X = model.matrix(~thinout$designmat)


mout = mouthwash(Y,X,k=num_sv,cov_of_interest = 2,include_intercept = FALSE)
Running mouthwash on 709 x 2 matrix X and 709 x 12467 matrix Y.
 - Computing independent basis using QR decomposition.
 - Computation took 21.178 seconds.
 - Running additional preprocessing steps.
 - Computation took 0.002 seconds.
 - Running second step of mouthwash:
    + Estimating model parameters using EM.
    + Computation took 133.457 seconds.
    + Generating adaptive shrinkage (ash) output.
    + Computation took 1.646 seconds.
 - Second step took 136.034 seconds.
 - Estimating additional hidden confounders.
 - Computation took 2.243 seconds.
save(mout,file = 'data/mout_low.RData')
mout$pi0
[1] 0.9936696
#bout <- backwash(Y = Y, X = X, k = num_sv, cov_of_interest = 2, include_intercept = FALSE)
#save(bout,file = 'data/bout_low.RData')
#bout$pi0


cate_cate = cate::cate.fit(X.primary = X[, 2, drop = FALSE], X.nuis = X[, -2, drop = FALSE],
                              Y = Y, r = num_sv, adj.method = "rr")
save(cate_cate,file = 'data/cate_cate_low.RData')
sva_sva     <- sva::sva(dat = t(Y), mod = X, mod0 = X[, -2, drop = FALSE], n.sv = num_sv)
Number of significant surrogate variables is:  3 
Iteration (out of 5 ):1  2  3  4  5  
save(sva_sva,file = 'data/sva_sva_low.RData')
X.sva <- cbind(X, sva_sva$sv)
lmout <- limma::lmFit(object = t(Y), design = X.sva)
eout  <- limma::eBayes(lmout)
svaout           <- list()
svaout$betahat   <- lmout$coefficients[, 2]
svaout$sebetahat <- lmout$stdev.unscaled[, 2] * sqrt(eout$s2.post)
svaout$pvalues   <- eout$p.value[, 2]

which_null = c(1*(abs(thinout$coef[-remove.idx]) < 10^-6))

roc_out <- list(
  pROC::roc(response = which_null, predictor = c(mout$result$lfdr)),
  #pROC::roc(response = which_null, predictor = c(bout$result$lfdr)),
  pROC::roc(response = which_null, predictor = c(cate_cate$beta.p.value)),
  pROC::roc(response = which_null, predictor = c(svaout$pvalues)))
name_vec <- c("MOUTHWASH", "CATErr", "SVA")
names(roc_out) <- name_vec

sout <- lapply(roc_out, function(x) { data.frame(TPR = x$sensitivities, FPR = 1 - x$specificities)})
for (index in 1:length(sout)) {
  sout[[index]]$Method <- name_vec[index]
}
longdat <- do.call(rbind, sout)

shortdat <- dplyr::filter(longdat, Method == "MOUTHWASH" | 
                            Method == "CATErr" | Method == "SVA" | Method == "LEAPP")
ggplot(data = shortdat, mapping = aes(x = FPR, y = TPR, col = Method)) +
  geom_path() + theme_bw() + ggtitle("ROC Curves")

auc_vec <- sapply(roc_out, FUN = function(x) { x$auc })
knitr::kable(sort(auc_vec, decreasing = TRUE), col.names = "AUC", digits = 3)
AUC
SVA 0.659
CATErr 0.643
MOUTHWASH 0.571
method_list <- list()
method_list$CATErr           <- list()
method_list$CATErr$betahat   <- c(cate_cate$beta)
method_list$CATErr$sebetahat <- c(sqrt(cate_cate$beta.cov.row * c(cate_cate$beta.cov.col)) / sqrt(nrow(X)))

method_list$SVA             <- list()
method_list$SVA$betahat     <- c(svaout$betahat)
method_list$SVA$sebetahat   <- c(svaout$sebetahat)

ashfit <- lapply(method_list, FUN = function(x) { ashr::ash(x$betahat, x$sebetahat)})
api0 <- sapply(ashfit, FUN = ashr::get_pi0)
api0 <- c(api0, MOUTHWASH = mout$pi0)
#api0 <- c(api0, BACKWASH = bout$pi0)

knitr::kable(sort(api0, decreasing = TRUE), col.names = "Estimate of Pi0")
E stimate of Pi0
MOUTHWASH 0.9936696
SVA 0.9915021
CATErr 0.9112687

Stronger signal: rexp(,rate = 0.2)

set.seed(12345)
thinout = thin_2group(round(CDT),0.9,signal_fun = stats::rexp,signal_params = list(rate=0.2))



Y = t(thinout$mat)

remove.idx = which(colSums(Y)==0)

Y = Y[,-remove.idx]

X = model.matrix(~thinout$designmat)



mean(abs(thinout$coef) < 10^-6)
[1] 0.899984
mout = mouthwash(Y,X,k=num_sv,cov_of_interest = 2,include_intercept = FALSE)
Running mouthwash on 709 x 2 matrix X and 709 x 12431 matrix Y.
 - Computing independent basis using QR decomposition.
 - Computation took 22.058 seconds.
 - Running additional preprocessing steps.
 - Computation took 0 seconds.
 - Running second step of mouthwash:
    + Estimating model parameters using EM.
    + Computation took 177.22 seconds.
    + Generating adaptive shrinkage (ash) output.
    + Computation took 1.593 seconds.
 - Second step took 179.728 seconds.
 - Estimating additional hidden confounders.
 - Computation took 2.246 seconds.
save(mout,file = 'data/mout_high.RData')
mout$pi0
[1] 0.969738
#bout <- backwash(Y = Y, X = X, k = num_sv, cov_of_interest = 2, include_intercept = FALSE)
#save(bout,file = 'data/bout_high.RData')
#bout$pi0


cate_cate = cate::cate.fit(X.primary = X[, 2, drop = FALSE], X.nuis = X[, -2, drop = FALSE],
                              Y = Y, r = num_sv, adj.method = "rr")
save(cate_cate,file = 'data/cate_cate_high.RData')
sva_sva     <- sva::sva(dat = t(Y), mod = X, mod0 = X[, -2, drop = FALSE], n.sv = num_sv)
Number of significant surrogate variables is:  3 
Iteration (out of 5 ):1  2  3  4  5  
save(sva_sva,file = 'data/sva_sva_high.RData')
X.sva <- cbind(X, sva_sva$sv)
lmout <- limma::lmFit(object = t(Y), design = X.sva)
eout  <- limma::eBayes(lmout)
svaout           <- list()
svaout$betahat   <- lmout$coefficients[, 2]
svaout$sebetahat <- lmout$stdev.unscaled[, 2] * sqrt(eout$s2.post)
svaout$pvalues   <- eout$p.value[, 2]

which_null = c(1*(abs(thinout$coef[-remove.idx]) < 10^-6))

roc_out <- list(
  pROC::roc(response = which_null, predictor = c(mout$result$lfdr)),
  #pROC::roc(response = which_null, predictor = c(bout$result$lfdr)),
  pROC::roc(response = which_null, predictor = c(cate_cate$beta.p.value)),
  pROC::roc(response = which_null, predictor = c(svaout$pvalues)))
name_vec <- c("MOUTHWASH", "CATErr", "SVA")
names(roc_out) <- name_vec

sout <- lapply(roc_out, function(x) { data.frame(TPR = x$sensitivities, FPR = 1 - x$specificities)})
for (index in 1:length(sout)) {
  sout[[index]]$Method <- name_vec[index]
}
longdat <- do.call(rbind, sout)

shortdat <- dplyr::filter(longdat, Method == "MOUTHWASH" | 
                            Method == "CATErr" | Method == "SVA" | Method == "LEAPP")
ggplot(data = shortdat, mapping = aes(x = FPR, y = TPR, col = Method)) +
  geom_path() + theme_bw() + ggtitle("ROC Curves")

auc_vec <- sapply(roc_out, FUN = function(x) { x$auc })
knitr::kable(sort(auc_vec, decreasing = TRUE), col.names = "AUC", digits = 3)
AUC
SVA 0.825
CATErr 0.790
MOUTHWASH 0.680
method_list <- list()
method_list$CATErr           <- list()
method_list$CATErr$betahat   <- c(cate_cate$beta)
method_list$CATErr$sebetahat <- c(sqrt(cate_cate$beta.cov.row * c(cate_cate$beta.cov.col)) / sqrt(nrow(X)))

method_list$SVA             <- list()
method_list$SVA$betahat     <- c(svaout$betahat)
method_list$SVA$sebetahat   <- c(svaout$sebetahat)

ashfit <- lapply(method_list, FUN = function(x) { ashr::ash(x$betahat, x$sebetahat)})
api0 <- sapply(ashfit, FUN = ashr::get_pi0)
api0 <- c(api0, MOUTHWASH = mout$pi0)
#api0 <- c(api0, BACKWASH = bout$pi0)

knitr::kable(sort(api0, decreasing = TRUE), col.names = "Estimate of Pi0")
E stimate of Pi0
MOUTHWASH 0.9697380
CATErr 0.8662544
SVA 0.5494651

sessionInfo()
R version 3.6.1 (2019-07-05)
Platform: x86_64-apple-darwin15.6.0 (64-bit)
Running under: macOS High Sierra 10.13.6

Matrix products: default
BLAS:   /Library/Frameworks/R.framework/Versions/3.6/Resources/lib/libRblas.0.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/3.6/Resources/lib/libRlapack.dylib

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

attached base packages:
[1] parallel  stats4    stats     graphics  grDevices utils     datasets 
[8] methods   base     

other attached packages:
 [1] ggplot2_3.2.1               seqgendiff_1.1.1           
 [3] cate_1.1                    vicar_0.1-10               
 [5] ROTS_1.12.0                 edgeR_3.26.8               
 [7] limma_3.40.6                Seurat_3.1.2               
 [9] MAST_1.10.0                 SingleCellExperiment_1.6.0 
[11] SummarizedExperiment_1.14.1 DelayedArray_0.10.0        
[13] BiocParallel_1.18.1         matrixStats_0.55.0         
[15] Biobase_2.44.0              GenomicRanges_1.36.1       
[17] GenomeInfoDb_1.20.0         IRanges_2.18.3             
[19] S4Vectors_0.22.1            BiocGenerics_0.30.0        

loaded via a namespace (and not attached):
  [1] reticulate_1.13        R.utils_2.9.0          tidyselect_0.2.5      
  [4] lme4_1.1-21            RSQLite_2.1.2          AnnotationDbi_1.46.1  
  [7] htmlwidgets_1.5.1      grid_3.6.1             Rtsne_0.15            
 [10] pROC_1.15.3            munsell_0.5.0          codetools_0.2-16      
 [13] mutoss_0.1-12          ica_1.0-2              future_1.15.1         
 [16] withr_2.1.2            colorspace_1.4-1       leapp_1.2             
 [19] highr_0.8              knitr_1.25             pscl_1.5.2            
 [22] ROCR_1.0-7             gbRd_0.4-11            listenv_0.8.0         
 [25] labeling_0.3           Rdpack_0.11-0          git2r_0.26.1          
 [28] GenomeInfoDbData_1.2.1 mixsqp_0.1-97          mnormt_1.5-5          
 [31] bit64_0.9-7            rprojroot_1.3-2        vctrs_0.2.0           
 [34] TH.data_1.0-10         xfun_0.10              R6_2.4.0              
 [37] doParallel_1.0.15      rsvd_1.0.2             locfit_1.5-9.1        
 [40] bitops_1.0-6           assertthat_0.2.1       promises_1.1.0        
 [43] SDMTools_1.1-221.2     scales_1.0.0           multcomp_1.4-12       
 [46] gtable_0.3.0           npsurv_0.4-0           globals_0.12.5        
 [49] sva_3.32.1             sandwich_2.5-1         svd_0.5               
 [52] workflowr_1.5.0        rlang_0.4.0            zeallot_0.1.0         
 [55] genefilter_1.66.0      splines_3.6.1          lazyeval_0.2.2        
 [58] yaml_2.2.0             reshape2_1.4.3         abind_1.4-5           
 [61] backports_1.1.5        httpuv_1.5.2           tools_3.6.1           
 [64] gplots_3.0.1.1         RColorBrewer_1.1-2     ggridges_0.5.2        
 [67] TFisher_0.2.0          Rcpp_1.0.2             plyr_1.8.4            
 [70] zlibbioc_1.30.0        purrr_0.3.2            RCurl_1.95-4.12       
 [73] pbapply_1.4-2          ashr_2.2-38            cowplot_1.0.0         
 [76] zoo_1.8-6              ggrepel_0.8.1          cluster_2.1.0         
 [79] fs_1.3.1               magrittr_1.5           data.table_1.12.6     
 [82] lmtest_0.9-37          RANN_2.6.1             truncnorm_1.0-8       
 [85] mvtnorm_1.0-11         SQUAREM_2017.10-1      whisker_0.4           
 [88] fitdistrplus_1.0-14    lsei_1.2-0             evaluate_0.14         
 [91] xtable_1.8-4           XML_3.98-1.20          gridExtra_2.3         
 [94] compiler_3.6.1         tibble_2.1.3           KernSmooth_2.23-15    
 [97] crayon_1.3.4           minqa_1.2.4            R.oo_1.23.0           
[100] htmltools_0.4.0        mgcv_1.8-29            corpcor_1.6.9         
[103] later_1.0.0            tidyr_1.0.0            RcppParallel_4.4.4    
[106] DBI_1.0.0              MASS_7.3-51.4          boot_1.3-23           
[109] Matrix_1.2-17          R.methodsS3_1.7.1      gdata_2.18.0          
[112] metap_1.2              igraph_1.2.4.1         pkgconfig_2.0.3       
[115] sn_1.5-4               numDeriv_2016.8-1.1    plotly_4.9.1          
[118] foreach_1.4.7          annotate_1.62.0        blme_1.0-4            
[121] multtest_2.40.0        XVector_0.24.0         ruv_0.9.7.1           
[124] bibtex_0.4.2           stringr_1.4.0          digest_0.6.21         
[127] sctransform_0.2.1      RcppAnnoy_0.0.13       tsne_0.1-3            
[130] rmarkdown_1.16         leiden_0.3.1           uwot_0.1.5            
[133] gtools_3.8.1           nloptr_1.2.1           lifecycle_0.1.0       
[136] nlme_3.1-141           jsonlite_1.6           viridisLite_0.3.0     
[139] pillar_1.4.2           lattice_0.20-38        httr_1.4.1            
[142] plotrix_3.7-7          survival_2.44-1.1      glue_1.3.1            
[145] esaBcv_1.2.1           png_0.1-7              iterators_1.0.12      
[148] bit_1.1-14             stringi_1.4.3          blob_1.2.0            
[151] memoise_1.1.0          caTools_1.17.1.2       dplyr_0.8.3           
[154] irlba_2.3.3            future.apply_1.4.0     ape_5.3