-
Notifications
You must be signed in to change notification settings - Fork 38
/
scATAC_04_Compute_Gene_Scores.R
426 lines (353 loc) · 15.3 KB
/
scATAC_04_Compute_Gene_Scores.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
#Clustering and scATAC-seq UMAP for Hematopoiesis data
#06/02/19
#Cite Granja*, Klemm*, Mcginnis* et al.
#A single cell framework for multi-omic analysis of disease identifies
#malignant regulatory signatures in mixed phenotype acute leukemia (2019)
#Created by Jeffrey Granja
library(cicero)
library(data.table)
library(Matrix)
library(GenomicRanges)
library(magrittr)
library(SummarizedExperiment)
library(optparse)
library(yaml)
library(Rcpp)
set.seed(1)
####################################################
#Functions
####################################################
grToFeature <- function(gr){
peakinfo <- data.frame(
row.names = paste(seqnames(gr),start(gr),end(gr),sep="_"),
site_name = paste(seqnames(gr),start(gr),end(gr),sep="_"),
chr = gsub("chr","",as.character(seqnames(gr))),
bp1 = start(gr),
bp2 = end(gr)
)
return(peakinfo)
}
featureToGR <- function(feature){
featureSplit <- stringr::str_split(paste0(feature), pattern = "_", n = 3, simplify = TRUE)
gr <- GRanges(featureSplit[,1],IRanges(as.integer(featureSplit[,2]),as.integer(featureSplit[,3])))
return(gr)
}
makeCDS <- function(se, binarize = TRUE){
peakinfo <- grToFeature(se)
mat <- assay(se)
if(binarize){
mat@x[which(mat@x > 0)] <- 1
}
cellinfo <- data.frame(colData(se))
cellinfo$cells <- rownames(cellinfo)
cds <- suppressWarnings(newCellDataSet(mat,
phenoData = methods::new("AnnotatedDataFrame", data = cellinfo),
featureData = methods::new("AnnotatedDataFrame", data = peakinfo),
expressionFamily=negbinomial.size(),
lowerDetectionLimit=0))
fData(cds)$chr <- as.character(fData(cds)$chr)
fData(cds)$bp1 <- as.numeric(as.character(fData(cds)$bp1))
fData(cds)$bp2 <- as.numeric(as.character(fData(cds)$bp2))
cds <- cds[order(fData(cds)$chr, fData(cds)$bp1),]
return(cds)
}
sourceCpp(code='
#include <Rcpp.h>
using namespace Rcpp;
using namespace std;
// Adapted from https://github.com/AEBilgrau/correlateR/blob/master/src/auxiliary_functions.cpp
// [[Rcpp::export]]
Rcpp::NumericVector rowCorCpp(IntegerVector idxX, IntegerVector idxY, Rcpp::NumericMatrix X, Rcpp::NumericMatrix Y) {
if(X.ncol() != Y.ncol()){
stop("Columns of Matrix X and Y must be equal length!");
}
if(max(idxX) > X.nrow()){
stop("Idx X greater than nrow of Matrix X");
}
if(max(idxY) > Y.nrow()){
stop("Idx Y greater than nrow of Matrix Y");
}
// Transpose Matrices
X = transpose(X);
Y = transpose(Y);
const int nx = X.ncol();
const int ny = Y.ncol();
// Centering the matrices
for (int j = 0; j < nx; ++j) {
X(Rcpp::_, j) = X(Rcpp::_, j) - Rcpp::mean(X(Rcpp::_, j));
}
for (int j = 0; j < ny; ++j) {
Y(Rcpp::_, j) = Y(Rcpp::_, j) - Rcpp::mean(Y(Rcpp::_, j));
}
// Compute 1 over the sample standard deviation
Rcpp::NumericVector inv_sqrt_ss_X(nx);
for (int i = 0; i < nx; ++i) {
inv_sqrt_ss_X(i) = 1/sqrt(Rcpp::sum( X(Rcpp::_, i) * X(Rcpp::_, i) ));
}
Rcpp::NumericVector inv_sqrt_ss_Y(ny);
for (int i = 0; i < ny; ++i) {
inv_sqrt_ss_Y(i) = 1/sqrt(Rcpp::sum( Y(Rcpp::_, i) * Y(Rcpp::_, i) ));
}
//Calculate Correlations
const int n = idxX.size();
Rcpp::NumericVector cor(n);
for(int k = 0; k < n; k++){
cor[k] = Rcpp::sum( X(Rcpp::_, idxX[k] - 1) * Y(Rcpp::_, idxY[k] - 1) ) * inv_sqrt_ss_X(idxX[k] - 1) * inv_sqrt_ss_Y(idxY[k] - 1);
}
return(cor);
}'
)
#Cleaned up custom version of cicero_cds
custom_cicero_cds <- function(
cds,
reduced_coordinates,
k=50,
max_knn_iterations = 5000,
summary_stats = NULL,
size_factor_normalize = TRUE,
silent = FALSE) {
assertthat::assert_that(is(cds, "CellDataSet"))
assertthat::assert_that(is.data.frame(reduced_coordinates) | is.matrix(reduced_coordinates))
assertthat::assert_that(assertthat::are_equal(nrow(reduced_coordinates), nrow(pData(cds))))
assertthat::assert_that(setequal(row.names(reduced_coordinates), colnames(cds)))
assertthat::assert_that(assertthat::is.count(k) & k > 1)
assertthat::assert_that(is.character(summary_stats) | is.null(summary_stats))
if(!is.null(summary_stats)) {
assertthat::assert_that(all(summary_stats %in% names(pData(cds))),
msg = paste("One of your summary_stats is missing",
"from your pData table. Either add a",
"column with the name in",
"summary_stats, or remove the name",
"from the summary_stats parameter.",
collapse = " "))
assertthat::assert_that(sum(vapply(summary_stats, function(x) {
!(is(pData(cds)[,x], "numeric") | is(pData(cds)[,x], "integer"))}, 1)) == 0,
msg = paste("All columns in summary_stats must be",
"of class numeric or integer.",
collapse = " "))
}
assertthat::assert_that(is.logical(size_factor_normalize))
assertthat::assert_that(is.logical(silent))
reduced_coordinates <- as.data.frame(reduced_coordinates)
reduced_coordinates <- reduced_coordinates[colnames(cds),]
start <- Sys.time()
# Create a k-nearest neighbors map
message("\nFNN k-nearest search...")
nn_map <- FNN::knn.index(reduced_coordinates, k=(k-1)) # no data.frame wrapper
row.names(nn_map) <- row.names(reduced_coordinates)
nn_map <- cbind(nn_map, seq_len(nrow(nn_map)))
good_choices <- seq_len(nrow(nn_map))
choice <- sample(seq_len(length(good_choices)), size = 1, replace = FALSE)
chosen <- good_choices[choice]
good_choices <- good_choices[good_choices != good_choices[choice]]
it <- 0
k2 <- k * 2 # Compute once
# function for sapply
get_shared <- function(other, this_choice) {
k2 - length(union(cell_sample[other,], this_choice))
}
while (length(good_choices) > 0 & it < max_knn_iterations) { # slow
if(it %% 100 == 0) message(sprintf("%s of %s iterations", it, max_knn_iterations))
it <- it + 1
choice <- sample(seq_len(length(good_choices)), size = 1, replace = FALSE)
new_chosen <- c(chosen, good_choices[choice])
good_choices <- good_choices[good_choices != good_choices[choice]]
cell_sample <- nn_map[new_chosen,]
others <- seq_len(nrow(cell_sample) - 1)
this_choice <- cell_sample[nrow(cell_sample),]
shared <- sapply(others, get_shared, this_choice = this_choice)
if (max(shared) < .9 * k) {
chosen <- new_chosen
}
}
message(sprintf("%s minutes since start", round(difftime(Sys.time(),start,units="mins"),1)))
cell_sample <- nn_map[chosen,]
cell_sample_map <- lapply(seq_len(nrow(cell_sample)), function(x) rownames(reduced_coordinates)[cell_sample[x,]]) %>% Reduce("rbind",.) %>% data.frame
rownames(cell_sample_map) <- rownames(cell_sample)
if(!silent) {
# Only need this slow step if !silent
combs <- combn(nrow(cell_sample), 2)
combs <- combs[,sample(seq_len(ncol(combs)),min(ncol(combs),10^6))] #sample 1 M because this really doesnt matter
shared <- apply(combs, 2, function(x) { #slow
k2 - length(unique(as.vector(cell_sample[x,])))
})
message(paste0("\nOverlap QC metrics:\nCells per bin: ", k,
"\nMaximum shared cells bin-bin: ", max(shared),
"\nMean shared cells bin-bin: ", mean(shared),
"\nMedian shared cells bin-bin: ", median(shared)))
if (mean(shared)/k > .1) warning("On average, more than 10% of cells are shared between paired bins.")
}
message(sprintf("%s minutes since start", round(difftime(Sys.time(),start,units="mins"),1)))
message("\nMaking aggregated scATAC Matrix...")
exprs_old <- exprs(cds)
new_exprs <- matrix(0, nrow = nrow(cell_sample), ncol = nrow(exprs_old))
for(x in seq_len(nrow(cell_sample))){
if(x %% 50 == 0){
message(sprintf("%s of %s iterations : %s minutes since start", x, nrow(cell_sample), round(difftime(Sys.time(),start,units="mins"),1)))
}
new_exprs[x,] <- Matrix::rowSums(exprs_old[,cell_sample[x,]])
}
remove(exprs_old)
message(sprintf("%s minutes since start", round(difftime(Sys.time(),start,units="mins"),1)))
message("\nMaking aggregated CDS...")
pdata <- pData(cds)
new_pcols <- "agg_cell"
if(!is.null(summary_stats)) {
new_pcols <- c(new_pcols, paste0("mean_",summary_stats))
}
new_pdata <- plyr::adply(cell_sample,1, function(x) {
sub <- pdata[x,]
df_l <- list()
df_l["temp"] <- 1
for (att in summary_stats) {
df_l[paste0("mean_", att)] <- mean(sub[,att])
}
data.frame(df_l)
})
new_pdata$agg_cell <- paste("agg", chosen, sep="")
new_pdata <- new_pdata[,new_pcols, drop = FALSE] # fixes order, drops X1 and temp
row.names(new_pdata) <- new_pdata$agg_cell
row.names(new_exprs) <- new_pdata$agg_cell
new_exprs <- as.matrix(t(new_exprs))
fdf <- fData(cds)
new_pdata$temp <- NULL
fd <- new("AnnotatedDataFrame", data = fdf)
pd <- new("AnnotatedDataFrame", data = new_pdata)
cicero_cds <- suppressWarnings(newCellDataSet(new_exprs,
phenoData = pd,
featureData = fd,
expressionFamily=negbinomial.size(),
lowerDetectionLimit=0))
cicero_cds <- monocle::detectGenes(cicero_cds, min_expr = .1)
cicero_cds <- BiocGenerics::estimateSizeFactors(cicero_cds)
#cicero_cds <- suppressWarnings(BiocGenerics::estimateDispersions(cicero_cds))
if (any(!c("chr", "bp1", "bp2") %in% names(fData(cicero_cds)))) {
fData(cicero_cds)$chr <- NULL
fData(cicero_cds)$bp1 <- NULL
fData(cicero_cds)$bp2 <- NULL
fData(cicero_cds) <- cbind(fData(cicero_cds),
df_for_coords(row.names(fData(cicero_cds))))
}
message(sprintf("%s minutes since start", round(difftime(Sys.time(),start,units="mins"),1)))
if (size_factor_normalize) {
message("\nSize factor normalization...")
Biobase::exprs(cicero_cds) <- t(t(Biobase::exprs(cicero_cds))/Biobase::pData(cicero_cds)$Size_Factor)
}
message(sprintf("%s minutes since start", round(difftime(Sys.time(),start,units="mins"),1)))
return(list(ciceroCDS = cicero_cds, knnMap = cell_sample_map))
}
getGeneGTF <- function(file){
#Import
message("Reading in GTF...")
importGTF <- rtracklayer::import(file)
#Exon Info
message("Computing Effective Exon Lengths...")
exonGTF <- importGTF[importGTF$type=="exon",]
exonList <- reduce(split(exonGTF, mcols(exonGTF)$gene_id))
exonReduced <- unlist(exonList, use.names=TRUE)
mcols(exonReduced)$gene_id <- names(exonReduced)
mcols(exonReduced)$widths <- width(exonReduced)
exonSplit <- split(exonReduced$widths, mcols(exonReduced)$gene_id)
exonLengths <- lapply(seq_along(exonSplit), function(x) sum(exonSplit[[x]])) %>%
unlist %>% data.frame(row.names=names(exonSplit), effLength=.)
#Gene Info
message("Constructing gene GTF...")
geneGTF1 <- importGTF[importGTF$type=="gene",]
geneGTF2 <- GRanges(
seqnames=paste0("chr",seqnames(geneGTF1)),
ranges=ranges(geneGTF1),
strand=strand(geneGTF1),
gene_name=geneGTF1$gene_name,
gene_id=geneGTF1$gene_id
) %>% keepFilteredChromosomes %>% sortSeqlevels %>% sort(.,ignore.strand=TRUE)
mcols(geneGTF2)$exonLength <- exonLengths[geneGTF2$gene_id,]
return(geneGTF2)
}
####################################################
#Input Data
####################################################
#Specific Genome Libraries
library(BSgenome.Hsapiens.UCSC.hg19)
library(TxDb.Hsapiens.UCSC.hg19.knownGene)
library(org.Hs.eg.db)
bsgenome <- BSgenome.Hsapiens.UCSC.hg19
txdb <- TxDb.Hsapiens.UCSC.hg19.knownGene
orgdb <- org.Hs.eg.db
#Read in Summarized Experiment
#Please Note Code here has been modified to work with finalized summarized experiment
#Read input summarized experiment peaks x cells
obj <- readRDS("results/scATAC-Summarized-Experiment.rds")
mdata <- colData(obj)
#Genes GTF File from 10x v3
gtfFile <- "data/genes.gtf"
#Window around TSS to be called promoter
tssWindow <- 2500
#Flanking distance from TSS in KB for Co-Accessibility
flank <- 250*10^3
#Correlation Cutoff for Co-Accessibility
corCutOff <- 0.35
#Reduced Dimensions LSI-SVD Matrix
dimred <- data.frame(metadata(obj)$matSVD)
rownames(dimred) <- colnames(obj)
#Get ChromSizes
chromSizes <- seqlengths(bsgenome)[paste0("chr",c(1:22,"X"))]
genome <- data.frame(names(chromSizes),chromSizes)
rownames(genome) <- NULL
#Run Cicero
obj <- makeCDS(obj, binarize = TRUE)
obj <- detectGenes(obj)
obj <- estimateSizeFactors(obj)
ciceroOut <- custom_cicero_cds(obj, k = 50, max_knn_iterations = 5000, reduced_coordinates = dimred[colnames(obj),])
#Cicero Object CDS
ciceroObj <- ciceroOut[[1]]
saveRDS(ciceroObj, "results/save-cicero-aggregated-accessibility-cds.rds")
#Keep Cell Mappings!
cellMapKNN <- ciceroOut[[2]]
saveRDS(cellMapKNN, "results/save-cicero-KNN-Groupings-cds.rds")
#Compute Correlations
message("Computing grouped correlations...")
gr <- featureToGR(featureData(ciceroObj)[[1]])
o <- suppressWarnings(as.matrix( findOverlaps(resize( resize(gr,1,"center"), 2*flank + 1, "center"), resize(gr,1,"center"), ignore.strand=TRUE) ))
o <- data.table::as.data.table(data.frame(i = matrixStats::rowMins(o), j = matrixStats::rowMaxs(o)))
o <- data.frame(o[!duplicated(o),])
o <- o[o[,1]!=o[,2],]
#Note
#Log2 Transform Prior to Computing Co-Accessibility
#This isnt a big deal since Cicero Groupings K=50
#And thus dynamic range is 0-50 for pearson correlation
#However we decided to proceed with a Log2 Transformed
#Aggregtate Matrix
logMat <- log2(edgeR::cpm(assayData(ciceroObj)$exprs)+1)
o$cor <- rowCorCpp(o[,1], o[,2], logMat, logMat)
connections <- data.frame(
Peak1 = featureData(ciceroObj)[[1]][o[,1]],
Peak2 = featureData(ciceroObj)[[1]][o[,2]],
coaccess = o[,3]
)
#Annotate CDS
message("Annotating Cell Data Set...")
#Make TSS Window for genes
genes <- getGeneGTF(gtfFile) %>% resize(1,"start") %>% resize(tssWindow * 2 + 1, "center")
names(genes) <- genes$gene_name
geneDF <- data.frame(chromosome=seqnames(genes),start=start(genes),end=end(genes), gene=genes$gene_name)
obj <- annotate_cds_by_site(obj, geneDF)
#Prepare for Co-Accessibility
nSites <- Matrix::colSums(assayData(obj)$exprs)
names(nSites) <- row.names(pData(obj))
#Cicero with Correlations
message("Calculating normalized gene activities...")
ciceroGA <- normalize_gene_activities(build_gene_activity_matrix(obj, connections, coaccess_cutoff = corCutOff), nSites)
seCicero <- SummarizedExperiment(
assays = SimpleList(gA = ciceroGA),
rowRanges = genes[rownames(ciceroGA),],
colData = mdata
)
seCiceroLog <- SummarizedExperiment(
assays = SimpleList(logGA = log2(10^6 * ciceroGA + 1)),
rowRanges = genes[rownames(ciceroGA),],
colData = mdata
)
#Save Output
saveRDS(connections, "results/Peaks-Co-Accessibility.rds")
saveRDS(seCicero, "results/Cicero-Gene-Activity.rds")
saveRDS(seCiceroLog, "results/Cicero-Log2-Gene-Activity.rds")