BiocManager::install("JASPAR2020")
'getOption("repos")' replaces Bioconductor standard repositories, see 'help("repositories", package = "BiocManager")' for details. Replacement repositories: CRAN: https://cran.r-project.org
plan("multiprocess", workers = 20)
options(future.globals.maxSize = 50000 * 1024^2) # for 50 Gb RAM
# read in peak sets
peaks.mo1 <- read.table(
file = path+"230117_ATAC/MO1/outs/peaks.bed",
col.names = c("chr", "start", "end")
)
peaks.mo2 <- read.table(
file = path+"230117_ATAC/MO2/outs/peaks.bed",
col.names = c("chr", "start", "end")
)
peaks.my1 <- read.table(
file = path+"230117_ATAC/MY1/outs/peaks.bed",
col.names = c("chr", "start", "end")
)
peaks.my2 <- read.table(
file = path+"230117_ATAC/MY2/outs/peaks.bed",
col.names = c("chr", "start", "end")
)
# convert to genomic ranges
gr.mo1 <- makeGRangesFromDataFrame(peaks.mo1)
gr.mo2 <- makeGRangesFromDataFrame(peaks.mo2)
gr.my1 <- makeGRangesFromDataFrame(peaks.my1)
gr.my2 <- makeGRangesFromDataFrame(peaks.my2)
# Create a unified set of peaks to quantify in each dataset
combined.peaks <- reduce(x = c(gr.mo1, gr.mo2, gr.my1, gr.my2))
# Filter out bad peaks based on length
peakwidths <- width(combined.peaks)
combined.peaks <- combined.peaks[peakwidths < 10000 & peakwidths > 20]
combined.peaks
GRanges object with 250407 ranges and 0 metadata columns: seqnames ranges strand <Rle> <IRanges> <Rle> [1] chr1 3119286-3120251 * [2] chr1 3121083-3121994 * [3] chr1 3268133-3269006 * [4] chr1 3445548-3446463 * [5] chr1 3476940-3477877 * ... ... ... ... [250403] JH584304.1 72703-73643 * [250404] JH584304.1 89972-90911 * [250405] JH584304.1 97685-98591 * [250406] JH584304.1 103126-104027 * [250407] JH584304.1 106364-107253 * ------- seqinfo: 30 sequences from an unspecified genome; no seqlengths
# load metadata
md.mo1 <- read.table(
file = path+"230117_ATAC/MO1/outs/singlecell.csv",
stringsAsFactors = FALSE,
sep = ",",
header = TRUE,
row.names = 1
)[-1, ] # remove the first row
md.mo2 <- read.table(
file = path+"230117_ATAC/MO2/outs/singlecell.csv",
stringsAsFactors = FALSE,
sep = ",",
header = TRUE,
row.names = 1
)[-1, ]
md.my1 <- read.table(
file = path+"230117_ATAC/MY1/outs/singlecell.csv",
stringsAsFactors = FALSE,
sep = ",",
header = TRUE,
row.names = 1
)[-1, ]
md.my2 <- read.table(
file = path+"230117_ATAC/MY2/outs/singlecell.csv",
stringsAsFactors = FALSE,
sep = ",",
header = TRUE,
row.names = 1
)[-1, ]
# perform an initial filtering of low count cells
md.mo1 <- md.mo1[md.mo1$passed_filters > 500, ]
md.mo2 <- md.mo2[md.mo2$passed_filters > 500, ]
md.my1 <- md.my1[md.my1$passed_filters > 500, ]
md.my2 <- md.my2[md.my2$passed_filters > 500, ]
# create fragment objects
frags.mo1 <- CreateFragmentObject(
path = path+"230117_ATAC/MO1/outs/atac_fragments.tsv.gz",
cells = rownames(md.mo1)
)
frags.mo2 <- CreateFragmentObject(
path = path+"230117_ATAC/MO2/outs/atac_fragments.tsv.gz",
cells = rownames(md.mo2)
)
## Computing hash
frags.my1 <- CreateFragmentObject(
path = path+"230117_ATAC/MY1/outs/atac_fragments.tsv.gz",
cells = rownames(md.my1)
)
## Computing hash
frags.my2 <- CreateFragmentObject(
path = path+"230117_ATAC/MY2/outs/atac_fragments.tsv.gz",
cells = rownames(md.my2)
)
## Computing hash
Computing hash Computing hash Computing hash Computing hash
pbmcmo1.counts <- FeatureMatrix(
fragments = frags.mo1,
features = combined.peaks,
cells = rownames(md.mo1)
)
pbmcmo2.counts <- FeatureMatrix(
fragments = frags.mo2,
features = combined.peaks,
cells = rownames(md.mo2)
)
pbmcmy1.counts <- FeatureMatrix(
fragments = frags.my1,
features = combined.peaks,
cells = rownames(md.my1)
)
pbmcmy2.counts <- FeatureMatrix(
fragments = frags.my2,
features = combined.peaks,
cells = rownames(md.my2)
)
Extracting reads overlapping genomic regions Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'."
R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call
Extracting reads overlapping genomic regions Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'."
R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call
Extracting reads overlapping genomic regions Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'."
R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call
Extracting reads overlapping genomic regions Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'." Warning message: "Detected creation of a 'multiprocess' future. Strategy 'multiprocess' is deprecated in future (>= 1.20.0) [2020-10-30]. Instead, explicitly specify either 'multisession' (recommended) or 'multicore'. In the current R session, 'multiprocess' equals 'multicore'."
R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call R_zmq_msg_send errno: 4 strerror: Interrupted system call
pbmcmo1_assay <- CreateChromatinAssay(pbmcmo1.counts, fragments = frags.mo1)
pbmcmo1 <- CreateSeuratObject(pbmcmo1_assay, assay = "ATAC", meta.data=md.mo1)
pbmcmo2_assay <- CreateChromatinAssay(pbmcmo2.counts, fragments = frags.mo2)
pbmcmo2 <- CreateSeuratObject(pbmcmo2_assay, assay = "ATAC", meta.data=md.mo2)
pbmcmy1_assay <- CreateChromatinAssay(pbmcmy1.counts, fragments = frags.my1)
pbmcmy1 <- CreateSeuratObject(pbmcmy1_assay, assay = "ATAC", meta.data=md.my1)
pbmcmy2_assay <- CreateChromatinAssay(pbmcmy2.counts, fragments = frags.my2)
pbmcmy2 <- CreateSeuratObject(pbmcmy2_assay, assay = "ATAC", meta.data=md.my2)
Warning message: "Keys should be one or more alphanumeric characters followed by an underscore, setting key from atac to atac_" Warning message: "Keys should be one or more alphanumeric characters followed by an underscore, setting key from atac to atac_" Warning message: "Keys should be one or more alphanumeric characters followed by an underscore, setting key from atac to atac_" Warning message: "Keys should be one or more alphanumeric characters followed by an underscore, setting key from atac to atac_"
# add information to identify dataset of origin
pbmcmo1$dataset <- 'mo1'
pbmcmo2$dataset <- 'mo2'
pbmcmy1$dataset <- 'my1'
pbmcmy2$dataset <- 'my2'
pfm <- get(
x = JASPAR2020,
opts = list(collection = "CORE", tax_group = 'vertebrates', all_versions = FALSE)
)
Error in getMatrixSet(x = JASPAR2020, opts = list(collection = "CORE", : could not find function "getMatrixSet" Traceback:
# merge all datasets, adding a cell ID to make sure cell names are unique
combined <- merge(
x = pbmcmo2,
y = list(pbmcmy1, pbmcmy2),
add.cell.ids = c("mo2", "my1", "my2")
)
combined[["ATAC"]]
ChromatinAssay data with 218763 features for 22377 cells Variable features: 0 Genome: Annotation present: FALSE Motifs present: FALSE Fragment files: 3
combined <- RunTFIDF(combined)
combined <- FindTopFeatures(combined, min.cutoff = 20)
combined <- RunSVD(combined)
combined <- RunUMAP(combined, dims = 2:50, reduction = 'lsi')
Performing TF-IDF normalization Running SVD Scaling cell embeddings Warning message: "The default method for RunUMAP has changed from calling Python UMAP via reticulate to the R-native UWOT using the cosine metric To use Python UMAP via reticulate, set umap.method to 'umap-learn' and metric to 'correlation' This message will be shown once per session" 11:25:58 UMAP embedding parameters a = 0.9922 b = 1.112 11:25:58 Read 22377 rows and found 49 numeric columns 11:25:58 Using Annoy for neighbor search, n_neighbors = 30 11:25:58 Building Annoy index with metric = cosine, n_trees = 50 0% 10 20 30 40 50 60 70 80 90 100% [----|----|----|----|----|----|----|----|----|----| * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * | 11:26:01 Writing NN index file to temp file /tmp/Rtmp2X56oP/file1379234d6d9cb 11:26:01 Searching Annoy index using 1 thread, search_k = 3000 11:26:08 Annoy recall = 100% 11:26:09 Commencing smooth kNN distance calibration using 1 thread with target n_neighbors = 30 11:26:11 Initializing from normalized Laplacian + noise (using irlba) 11:26:14 Commencing optimization for 200 epochs, with 948986 positive edges 11:26:26 Optimization finished
combined <- FindNeighbors(object = combined, reduction = 'lsi', dims = 2:30)
combined <- FindClusters(object = combined, resolution = 1.0, verbose = FALSE, algorithm = 3)
Computing nearest neighbor graph Computing SNN
DimPlot(combined)
# quantify gene activity
gene.activities <- GeneActivity(rds, features = VariableFeatures(rna))
Extracting gene coordinates Extracting reads overlapping genomic regions Extracting reads overlapping genomic regions Extracting reads overlapping genomic regions
rds[["ACTIVITY"]] <- CreateAssayObject(counts = gene.activities)
DefaultAssay(rds) <- "ACTIVITY"
rds <- NormalizeData(rds)
rds <- ScaleData(rds, features = rownames(rds))
Centering and scaling data matrix
transfer.anchors <- FindTransferAnchors(reference = rna, query = rds, features = VariableFeatures(object = rna),
reference.assay = "RNA", query.assay = "ACTIVITY", reduction = "cca")
Warning message: "536 features of the features specified were not present in both the reference query assays. Continuing with remaining 1464 features." Running CCA Merging objects Finding neighborhoods Finding anchors Found 25562 anchors
unique(rna@meta.data$annotation_publish_1)
celltype.predictions <- TransferData(anchorset = transfer.anchors, refdata = rna$subannotation_publish,
weight.reduction = rds[["lsi"]], dims = 2:50)
Finding integration vectors Finding integration vector weights Predicting cell labels
rds <- AddMetaData(rds, metadata = celltype.predictions)
DimPlot(rds, group.by = "anno_publish", label = TRUE) + NoLegend()
FeaturePlot(rds, features = c('Ttr'))
saveRDS(rds, '/home/kytak/kwonyongtak/02_aging/write/230117_ATAC/MO2_Y1_2_merged_annotated.rds')
rds <- readRDS('/home/kytak/kwonyongtak/02_aging/write/230117_ATAC/MO2_Y1_2_merged_annotated.rds')
rds
An object of class Seurat 251869 features across 22377 samples within 2 assays Active assay: ATAC (250407 features, 249035 variable features) 2 layers present: counts, data 1 other assay present: ACTIVITY 2 dimensional reductions calculated: lsi, umap
colnames(rds@meta.data)
keeps <- c('annosimple','age_publish')
DF[keeps]
DimPlot(rds, group.by = "annosimple", label = TRUE) + NoLegend()
rds <- readRDS('/home/kytak/kwonyongtak/02_aging/write/230117_ATAC/MO2_Y1_2_merged_finalannotated.rds')
DimPlot(rds, group.by = 'subannotation')
rds@meta.data
orig.ident | nCount_ATAC | nFeature_ATAC | total | duplicate | chimeric | unmapped | lowmapq | mitochondrial | nonprimary | ⋯ | endo_sub | ATAC_snn_res.0.8 | ATAC_snn_res.1 | ATAC_snn_res.0.5 | ATAC_snn_res.1.5 | ATAC_snn_res.2 | ATAC_snn_res.3 | ATAC_snn_res.4 | subannotation | annosimple | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
<fct> | <dbl> | <dbl> | <dbl> | <dbl> | <dbl> | <dbl> | <dbl> | <dbl> | <dbl> | ⋯ | <fct> | <fct> | <fct> | <fct> | <fct> | <fct> | <fct> | <fct> | <fct> | <fct> | |
mo2_AAACGAAAGATCGCCC-1 | SeuratProject | 14954 | 11063 | 34791 | 15141 | 0 | 396 | 1260 | 9 | 4 | ⋯ | 26 | 12 | 13 | 13 | 13 | 12 | 9 | 6 | T_Cd4 | T |
mo2_AAACGAAAGCAGTAGC-1 | SeuratProject | 22176 | 16232 | 54838 | 23520 | 0 | 512 | 2855 | 71 | 2 | ⋯ | 0 | 21 | 23 | 18 | 25 | 24 | 23 | 23 | Mesenchymal_1 | Mesenchymal |
mo2_AAACGAAAGTATACGA-1 | SeuratProject | 7390 | 5893 | 18547 | 9112 | 0 | 192 | 904 | 29 | 6 | ⋯ | 26 | 12 | 13 | 13 | 13 | 12 | 9 | 6 | T_Cd4 | T |
mo2_AAACGAAAGTGATTAG-1 | SeuratProject | 3718 | 3151 | 11031 | 5864 | 0 | 131 | 535 | 98 | 0 | ⋯ | 26 | 5 | 7 | 5 | 5 | 3 | 4 | 9 | T_Cd8 | T |
mo2_AAACGAACAACTAGAA-1 | SeuratProject | 25191 | 15823 | 58796 | 26046 | 2 | 627 | 2375 | 51 | 13 | ⋯ | 26 | 5 | 7 | 5 | 5 | 3 | 4 | 9 | T_Cd8 | T |
mo2_AAACGAACAATTGTGC-1 | SeuratProject | 470 | 420 | 7710 | 2353 | 3 | 87 | 1725 | 8 | 7 | ⋯ | 14 | 14 | 15 | 9 | 16 | 16 | 44 | 47 | Hepatocyte | Hepatocyte |
mo2_AAACGAACAGTTCGGC-1 | SeuratProject | 4516 | 4105 | 9261 | 3182 | 1 | 96 | 427 | 19 | 0 | ⋯ | 49 | 4 | 1 | 4 | 12 | 11 | 8 | 5 | Monocyte | Monocyte |
mo2_AAACGAACATCCCTCA-1 | SeuratProject | 15126 | 10757 | 46499 | 25310 | 6 | 520 | 2538 | 683 | 2 | ⋯ | 27 | 6 | 10 | 6 | 10 | 13 | 21 | 27 | B_2 | B |
mo2_AAACGAAGTCAGGCTC-1 | SeuratProject | 6964 | 5674 | 14450 | 5668 | 0 | 177 | 603 | 66 | 0 | ⋯ | 30 | 1 | 0 | 1 | 0 | 0 | 2 | 2 | B_1 | B |
mo2_AAACGAAGTGTAGGAC-1 | SeuratProject | 9127 | 7875 | 18690 | 6638 | 0 | 166 | 765 | 36 | 0 | ⋯ | 46 | 4 | 1 | 4 | 9 | 8 | 47 | 49 | MdM | MdM |
mo2_AAACGAAGTTAGGAGC-1 | SeuratProject | 13876 | 9853 | 33799 | 14551 | 0 | 415 | 1647 | 304 | 3 | ⋯ | 30 | 1 | 0 | 1 | 0 | 0 | 2 | 2 | B_1 | B |
mo2_AAACGAAGTTCTTTGT-1 | SeuratProject | 7523 | 6165 | 14855 | 4780 | 1 | 177 | 774 | 141 | 8 | ⋯ | 36 | 19 | 21 | 21 | 22 | 30 | 32 | 42 | T_Cd8 | T |
mo2_AAACGAATCATTCGGA-1 | SeuratProject | 16684 | 12487 | 47066 | 23842 | 0 | 537 | 2149 | 55 | 0 | ⋯ | 0 | 21 | 23 | 18 | 25 | 24 | 23 | 23 | Mesenchymal_1 | Mesenchymal |
mo2_AAACGAATCCATTGTT-1 | SeuratProject | 16107 | 11338 | 41098 | 18527 | 8 | 690 | 1962 | 3 | 5 | ⋯ | 26 | 5 | 7 | 5 | 5 | 3 | 37 | 21 | T_Cd8 | T |
mo2_AAACGAATCCGTCAAA-1 | SeuratProject | 12313 | 9726 | 58879 | 40355 | 8 | 510 | 3109 | 85 | 7 | ⋯ | -1 | 23 | 24 | 22 | 26 | 26 | 27 | 25 | Monocyte | Monocyte |
mo2_AAACTCGAGAGGTCCA-1 | SeuratProject | 514 | 505 | 684 | 10 | 0 | 21 | 44 | 13 | 0 | ⋯ | 27 | 6 | 10 | 6 | 10 | 13 | 21 | 59 | B_2 | B |
mo2_AAACTCGAGCGTAGCA-1 | SeuratProject | 7323 | 5606 | 23363 | 12719 | 3 | 304 | 1311 | 151 | 0 | ⋯ | 30 | 1 | 0 | 1 | 7 | 4 | 22 | 20 | B_1 | B |
mo2_AAACTCGAGGGACGTT-1 | SeuratProject | 11015 | 8054 | 39776 | 24210 | 0 | 576 | 1808 | 17 | 3 | ⋯ | 26 | 5 | 7 | 5 | 5 | 3 | 37 | 21 | T_Cd8 | T |
mo2_AAACTCGAGGTGATGC-1 | SeuratProject | 11849 | 8695 | 29312 | 14128 | 2 | 392 | 1215 | 1 | 0 | ⋯ | 30 | 1 | 0 | 1 | 0 | 0 | 2 | 2 | B_1 | B |
mo2_AAACTCGAGTCTGCTA-1 | SeuratProject | 9996 | 7521 | 26178 | 13259 | 2 | 366 | 997 | 27 | 3 | ⋯ | 26 | 12 | 13 | 13 | 13 | 12 | 9 | 6 | T_Cd4 | T |
mo2_AAACTCGAGTTGTCCA-1 | SeuratProject | 16986 | 11506 | 52972 | 27131 | 15 | 683 | 3424 | 1781 | 3 | ⋯ | 27 | 6 | 10 | 6 | 10 | 22 | 20 | 18 | B_2 | B |
mo2_AAACTCGCAAGCAACG-1 | SeuratProject | 1564 | 1518 | 2343 | 228 | 1 | 33 | 118 | 8 | 0 | ⋯ | 44 | 16 | 18 | 15 | 19 | 21 | 42 | 43 | MdM | MdM |
mo2_AAACTCGCAATTAGGA-1 | SeuratProject | 14549 | 11318 | 46819 | 25393 | 3 | 575 | 2157 | 47 | 2 | ⋯ | 22 | 20 | 22 | 11 | 24 | 29 | 29 | 35 | NK | NK |
mo2_AAACTCGCAATTGCCA-1 | SeuratProject | 31010 | 18183 | 80756 | 39032 | 5 | 996 | 3192 | 190 | 1 | ⋯ | 22 | 26 | 29 | 11 | 32 | 34 | 34 | 35 | NK | NK |
mo2_AAACTCGCACTCGCAG-1 | SeuratProject | 18395 | 13167 | 41938 | 17885 | 3 | 521 | 1930 | 103 | 3 | ⋯ | 30 | 1 | 0 | 1 | 0 | 0 | 2 | 2 | B_1 | B |
mo2_AAACTCGCATGGCCTG-1 | SeuratProject | 1860 | 1776 | 2934 | 528 | 0 | 33 | 117 | 4 | 0 | ⋯ | -1 | 16 | 18 | 15 | 19 | 21 | 10 | 7 | MdM | MdM |
mo2_AAACTCGGTAAGCCGA-1 | SeuratProject | 1057 | 1037 | 1669 | 188 | 0 | 26 | 102 | 13 | 0 | ⋯ | 44 | 16 | 18 | 15 | 19 | 21 | 42 | 43 | MdM | MdM |
mo2_AAACTCGGTATCTAGC-1 | SeuratProject | 11500 | 8788 | 32130 | 16660 | 0 | 401 | 1513 | 0 | 10 | ⋯ | 38 | 13 | 14 | 14 | 14 | 14 | 13 | 12 | T_Cd8 | T |
mo2_AAACTCGGTATTGTCG-1 | SeuratProject | 21196 | 14234 | 77718 | 47229 | 1 | 982 | 3458 | 24 | 4 | ⋯ | 26 | 18 | 20 | 17 | 21 | 20 | 17 | 16 | T_Cd4 | T |
mo2_AAACTCGGTCCCTTTG-1 | SeuratProject | 14928 | 11401 | 67725 | 46699 | 1 | 752 | 2574 | 62 | 12 | ⋯ | 41 | 10 | 11 | 8 | 8 | 7 | 7 | 4 | cDC | cDC |
⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋱ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ |
my2_TTTGGCCTCTCGTGAA-1 | SeuratProject | 16985 | 11038 | 80151 | 56379 | 12 | 1314 | 2783 | 106 | 5 | ⋯ | 7_10 | 3 | 2 | 3 | 1 | 18 | 12 | 10 | Endothelial_1 | Endothelial |
my2_TTTGGCCTCTTAGTGG-1 | SeuratProject | 22861 | 16861 | 334697 | 191787 | 33 | 4261 | 49129 | 345 | 132 | ⋯ | 14 | 27 | 30 | 9 | 33 | 35 | 35 | 36 | Hepatocyte | Hepatocyte |
my2_TTTGGTTAGACCCTAT-1 | SeuratProject | 28365 | 17852 | 101844 | 60581 | 8 | 1479 | 4674 | 17 | 5 | ⋯ | 26 | 18 | 20 | 17 | 21 | 20 | 17 | 16 | T_Cd4 | T |
my2_TTTGGTTAGCGCACAA-1 | SeuratProject | 489 | 373 | 5782 | 3423 | 1 | 80 | 947 | 359 | 1 | ⋯ | 7_13 | 2 | 6 | 2 | 6 | 6 | 3 | 1 | Endothelial_2 | Endothelial |
my2_TTTGGTTAGCTGGAGT-1 | SeuratProject | 3840 | 3004 | 18968 | 13386 | 2 | 284 | 880 | 84 | 9 | ⋯ | 17 | 22 | 25 | 19 | 28 | 27 | 48 | 50 | Neutrophil | Neutrophil |
my2_TTTGGTTAGGGTGTTG-1 | SeuratProject | 14042 | 10149 | 69480 | 49137 | 0 | 1140 | 2124 | 193 | 17 | ⋯ | 7_7 | 3 | 2 | 3 | 1 | 18 | 12 | 10 | Endothelial_1 | Endothelial |
my2_TTTGGTTAGTAGGTCG-1 | SeuratProject | 1101 | 1020 | 3592 | 2109 | 0 | 44 | 139 | 0 | 0 | ⋯ | 30 | 7 | 8 | 20 | 23 | 25 | 24 | 24 | B_1 | B |
my2_TTTGGTTCACGTTACA-1 | SeuratProject | 193 | 193 | 1154 | 16 | 0 | 61 | 172 | 1 | 0 | ⋯ | 14 | 14 | 15 | 9 | 16 | 16 | 26 | 26 | Hepatocyte | Hepatocyte |
my2_TTTGGTTCACGTTAGT-1 | SeuratProject | 9510 | 7274 | 288290 | 194550 | 20 | 3660 | 46179 | 197 | 136 | ⋯ | 14 | 27 | 30 | 9 | 33 | 35 | 35 | 36 | Hepatocyte | Hepatocyte |
my2_TTTGGTTCATTAACGC-1 | SeuratProject | 3349 | 3071 | 5491 | 1244 | 0 | 33 | 231 | 2 | 0 | ⋯ | 30 | 7 | 8 | 1 | 7 | 4 | 18 | 17 | B_1 | B |
my2_TTTGGTTCATTAAGGA-1 | SeuratProject | 12714 | 9304 | 47410 | 29552 | 2 | 566 | 2028 | 16 | 1 | ⋯ | 30 | 1 | 0 | 1 | 0 | 0 | 31 | 30 | B_1 | B |
my2_TTTGGTTGTAACGGCA-1 | SeuratProject | 11422 | 8233 | 35185 | 19985 | 0 | 550 | 1385 | 17 | 0 | ⋯ | 26 | 12 | 13 | 13 | 13 | 12 | 9 | 6 | T_Cd4 | T |
my2_TTTGGTTGTATCACAC-1 | SeuratProject | 13445 | 10052 | 42558 | 24039 | 0 | 497 | 1703 | 2 | 2 | ⋯ | 34 | 9 | 9 | 7 | 15 | 15 | 15 | 14 | KC | KC |
my2_TTTGGTTTCCAAACCA-1 | SeuratProject | 4556 | 3146 | 22303 | 14175 | 4 | 534 | 1431 | 721 | 0 | ⋯ | 7_11 | 2 | 6 | 2 | 6 | 42 | 53 | 54 | Endothelial_2 | Endothelial |
my2_TTTGGTTTCCTATCCG-1 | SeuratProject | 15511 | 10928 | 69998 | 47276 | 0 | 1228 | 2452 | 194 | 6 | ⋯ | 7_10 | 3 | 2 | 3 | 1 | 9 | 12 | 10 | Endothelial_1 | Endothelial |
my2_TTTGGTTTCGACTCGG-1 | SeuratProject | 6072 | 4958 | 12416 | 4730 | 1 | 220 | 561 | 47 | 6 | ⋯ | 17 | 22 | 25 | 19 | 28 | 27 | 43 | 46 | Neutrophil | Neutrophil |
my2_TTTGGTTTCGATCGCG-1 | SeuratProject | 4705 | 3838 | 24356 | 16756 | 7 | 454 | 1276 | 194 | 4 | ⋯ | 7_11 | 0 | 3 | 0 | 2 | 2 | 1 | 0 | Endothelial_2 | Endothelial |
my2_TTTGTGTAGACGCCAA-1 | SeuratProject | 3778 | 3242 | 11691 | 6775 | 2 | 215 | 400 | 0 | 0 | ⋯ | 7_12 | 0 | 3 | 0 | 2 | 2 | 1 | 0 | Endothelial_2 | Endothelial |
my2_TTTGTGTAGGAGTACC-1 | SeuratProject | 19800 | 14143 | 74364 | 45348 | 8 | 829 | 2214 | 425 | 8 | ⋯ | 12 | 17 | 19 | 16 | 20 | 23 | 41 | 41 | Cholangiocyte | Cholangiocyte |
my2_TTTGTGTAGGTTTCTG-1 | SeuratProject | 541 | 534 | 1008 | 221 | 0 | 55 | 33 | 0 | 0 | ⋯ | 8 | 22 | 25 | 19 | 28 | 27 | 43 | 46 | Neutrophil | Neutrophil |
my2_TTTGTGTCAACTCAAC-1 | SeuratProject | 3873 | 3324 | 11976 | 6425 | 1 | 170 | 531 | 73 | 2 | ⋯ | 7_12 | 0 | 3 | 0 | 2 | 2 | 1 | 0 | Endothelial_2 | Endothelial |
my2_TTTGTGTCAGTTAAAG-1 | SeuratProject | 1616 | 1341 | 9242 | 4949 | 2 | 232 | 927 | 131 | 1 | ⋯ | 34 | 9 | 9 | 7 | 29 | 31 | 30 | 31 | KC | KC |
my2_TTTGTGTCATACCCGG-1 | SeuratProject | 5259 | 4284 | 68479 | 58359 | 0 | 907 | 2782 | 204 | 0 | ⋯ | 7_11 | 0 | 3 | 0 | 2 | 2 | 1 | 0 | Endothelial_2 | Endothelial |
my2_TTTGTGTCATCAGAAA-1 | SeuratProject | 9083 | 7436 | 51715 | 30725 | 5 | 637 | 3968 | 68 | 19 | ⋯ | 3 | 29 | 32 | 26 | 35 | 37 | 39 | 55 | Mesenchymal_3 | Mesenchymal |
my2_TTTGTGTCATTAGCAC-1 | SeuratProject | 1433 | 1375 | 3266 | 490 | 1 | 43 | 244 | 9 | 1 | ⋯ | 3 | 29 | 32 | 26 | 35 | 37 | 39 | 55 | Mesenchymal_3 | Mesenchymal |
my2_TTTGTGTGTACAACGG-1 | SeuratProject | 723 | 704 | 1062 | 91 | 0 | 7 | 55 | 8 | 0 | ⋯ | 34 | 9 | 9 | 7 | 29 | 31 | 30 | 31 | KC | KC |
my2_TTTGTGTGTAGAAAGG-1 | SeuratProject | 6870 | 5724 | 14523 | 4899 | 0 | 176 | 639 | 121 | 1 | ⋯ | 34 | 9 | 9 | 7 | 15 | 15 | 15 | 14 | KC | KC |
my2_TTTGTGTGTATGTCCA-1 | SeuratProject | 16833 | 12060 | 63064 | 39343 | 7 | 1018 | 1921 | 202 | 2 | ⋯ | 7_10 | 3 | 2 | 3 | 1 | 9 | 11 | 8 | Endothelial_1 | Endothelial |
my2_TTTGTGTTCCCAGCAG-1 | SeuratProject | 3227 | 2933 | 4658 | 662 | 0 | 53 | 181 | 0 | 1 | ⋯ | 30 | 7 | 8 | 1 | 7 | 4 | 18 | 17 | B_1 | B |
my2_TTTGTGTTCCGTGCAG-1 | SeuratProject | 22463 | 14098 | 91573 | 58925 | 12 | 1493 | 3836 | 0 | 5 | ⋯ | 30 | 1 | 0 | 1 | 0 | 0 | 54 | 56 | B_1 | B |
rds
An object of class Seurat 250407 features across 22377 samples within 1 assay Active assay: ATAC (250407 features, 0 variable features) 2 dimensional reductions calculated: pca, umap
atac = readRDS('/home/kytak/kwonyongtak/02_aging/write/230117_ATAC/MO2_Y1_2_final.rds')
atac
An object of class Seurat 240571 features across 22377 samples within 2 assays Active assay: ATAC (218763 features, 218604 variable features) 1 other assay present: RNA 2 dimensional reductions calculated: lsi, umap
genomicanno <- ClosestFeature(
object = atac,
regions = granges(atac)
)
Warning message in ClosestFeature(object = atac, regions = granges(atac)): "The following seqlevels present in query regions are not present in the supplied gene annotations and will be removed: GL456210.1, GL456211.1, GL456212.1, GL456216.1, GL456221.1, GL456233.1, JH584292.1, JH584304.1"
write.csv(genomicanno, "/home/kytak/kwonyongtak/02_aging/write/230117_ATAC/genomicanno.csv", row.names=FALSE)
distance
Hits object with 218671 hits and 1 metadata column: queryHits subjectHits | distance <integer> <integer> | <integer> [1] 1 1532334 | 85649 [2] 2 1532334 | 83906 [3] 3 1588724 | 0 [4] 4 1588725 | 0 [5] 5 1588725 | 0 ... ... ... . ... [218667] 218667 850191 | 0 [218668] 218668 850191 | 0 [218669] 218669 850191 | 0 [218670] 218670 850191 | 0 [218671] 218671 854580 | 9420 ------- queryLength: 218763 / subjectLength: 1763965
CoveragePlot(
object = atac,
group.by = 'dataset',
region = "chr14-99700000-99760000"
)
rds@meta.data
Error in FUN(X[[i]], ...): Requested assay is not a ChromatinAssay. Traceback: 1. CoveragePlot(object = atac, group.by = "dataset", region = "chr14-99700000-99760000") 2. lapply(X = seq_along(region), FUN = function(x) { . SingleCoveragePlot(object = object, region = region[[x]], . features = features, expression.assay = expression.assay, . expression.slot = expression.slot, show.bulk = show.bulk, . annotation = annotation, peaks = peaks, peaks.group.by = peaks.group.by, . ranges = ranges, ranges.group.by = ranges.group.by, ranges.title = ranges.title, . region.highlight = region.highlight, assay = assay, split.assays = split.assays, . assay.scale = assay.scale, links = links, tile = tile, . tile.size = tile.size, tile.cells = tile.cells, bigwig = bigwig, . bigwig.type = bigwig.type, bigwig.scale = bigwig.scale, . group.by = group.by, split.by = split.by, window = window, . ymax = ymax, scale.factor = scale.factor, extend.upstream = extend.upstream, . extend.downstream = extend.downstream, cells = cells, . idents = idents, sep = sep, heights = heights, max.downsample = max.downsample, . downsample.rate = downsample.rate) . }) 3. FUN(X[[i]], ...) 4. SingleCoveragePlot(object = object, region = region[[x]], features = features, . expression.assay = expression.assay, expression.slot = expression.slot, . show.bulk = show.bulk, annotation = annotation, peaks = peaks, . peaks.group.by = peaks.group.by, ranges = ranges, ranges.group.by = ranges.group.by, . ranges.title = ranges.title, region.highlight = region.highlight, . assay = assay, split.assays = split.assays, assay.scale = assay.scale, . links = links, tile = tile, tile.size = tile.size, tile.cells = tile.cells, . bigwig = bigwig, bigwig.type = bigwig.type, bigwig.scale = bigwig.scale, . group.by = group.by, split.by = split.by, window = window, . ymax = ymax, scale.factor = scale.factor, extend.upstream = extend.upstream, . extend.downstream = extend.downstream, cells = cells, idents = idents, . sep = sep, heights = heights, max.downsample = max.downsample, . downsample.rate = downsample.rate) 5. lapply(X = assay, FUN = function(x) { . if (!inherits(x = object[[x]], what = "ChromatinAssay")) { . stop("Requested assay is not a ChromatinAssay.") . } . }) 6. FUN(X[[i]], ...) 7. stop("Requested assay is not a ChromatinAssay.")
DefaultAssay(rds) <- 'ATAC'
Idents(rds) <- 'subannotation'
da_peaks <- FindMarkers(
object = rds,
ident.1 = "Mesenchymal_1",
ident.2 = "Mesenchymal_2",
test.use = 'LR',
latent.vars = 'peak_region_fragments'
)
head(da_peaks)
Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred" Warning message: "glm.fit: fitted probabilities numerically 0 or 1 occurred"
p_val | avg_log2FC | pct.1 | pct.2 | p_val_adj | |
---|---|---|---|---|---|
<dbl> | <dbl> | <dbl> | <dbl> | <dbl> | |
JH584304.1-9520-10598 | 2.941026e-105 | 1.3009310 | 0.776 | 0.061 | 7.364534e-100 |
chr4-130036742-130037738 | 5.845488e-93 | -1.6448630 | 0.008 | 0.536 | 1.463751e-87 |
chr7-6727063-6729079 | 2.235095e-75 | -1.1698763 | 0.010 | 0.464 | 5.596836e-70 |
chr18-21299892-21300811 | 1.334723e-74 | -0.9816812 | 0.081 | 0.576 | 3.342239e-69 |
chr1-82290952-82292071 | 1.166209e-66 | -1.1051127 | 0.014 | 0.406 | 2.920269e-61 |
chr5-75734023-75735246 | 5.130574e-66 | -1.4633931 | 0.000 | 0.371 | 1.284732e-60 |
meta <- read.csv('/home/kytak/kwonyongtak/02_aging/230117_ATAC/atacobs.csv', row.names = "X")
meta
orig.ident | nCount_ATAC | nFeature_ATAC | total | duplicate | chimeric | unmapped | lowmapq | mitochondrial | nonprimary | ⋯ | age | age_simple | anno_publish | age_publish | all_accessibility | age_sub | leiden_3.0 | leiden_4.0 | leiden_6.0 | leiden_5.0 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
<chr> | <int> | <int> | <int> | <int> | <int> | <int> | <int> | <int> | <int> | ⋯ | <chr> | <chr> | <chr> | <chr> | <dbl> | <chr> | <int> | <int> | <int> | <int> | |
mo2_AAACGAAAGATCGCCC-1 | SeuratProject | 14954 | 11063 | 34791 | 15141 | 0 | 396 | 1260 | 9 | 4 | ⋯ | Old | Old_T | T | Old_T | 0.091208704 | Old_T_Cd4 | 27 | 53 | 54 | 56 |
mo2_AAACGAAAGCAGTAGC-1 | SeuratProject | 22176 | 16232 | 54838 | 23520 | 0 | 512 | 2855 | 71 | 2 | ⋯ | Old | Old_Mesenchymal | Fibroblast | Old_Fibroblast | 0.139958397 | Old_Mesenchymal_1 | 29 | 26 | 13 | 24 |
mo2_AAACGAAAGTATACGA-1 | SeuratProject | 7390 | 5893 | 18547 | 9112 | 0 | 192 | 904 | 29 | 6 | ⋯ | Old | Old_T | T | Old_T | 0.055226125 | Old_T_Cd4 | 24 | 40 | 11 | 15 |
mo2_AAACGAAAGTGATTAG-1 | SeuratProject | 3718 | 3151 | 11031 | 5864 | 0 | 131 | 535 | 98 | 0 | ⋯ | Old | Old_T | T | Old_T | 0.035410549 | Old_T_Cd8 | 34 | 35 | 52 | 13 |
mo2_AAACGAACAACTAGAA-1 | SeuratProject | 25191 | 15823 | 58796 | 26046 | 2 | 627 | 2375 | 51 | 13 | ⋯ | Old | Old_T | T | Old_T | 0.109321475 | Old_T_Cd8 | 66 | 78 | 98 | 90 |
mo2_AAACGAACAATTGTGC-1 | SeuratProject | 470 | 420 | 7710 | 2353 | 3 | 87 | 1725 | 8 | 7 | ⋯ | Old | Old_Hepatocyte | Hepatocyte | Old_Hepatocyte | 0.011335646 | Old_Hepatocyte | 21 | 14 | 55 | 7 |
mo2_AAACGAACAGTTCGGC-1 | SeuratProject | 4516 | 4105 | 9261 | 3182 | 1 | 96 | 427 | 19 | 0 | ⋯ | Old | Old_Monocyte | Monocyte | Old_Monocyte | 0.052277688 | Old_Monocyte | 38 | 37 | 31 | 36 |
mo2_AAACGAACATCCCTCA-1 | SeuratProject | 15126 | 10757 | 46499 | 25310 | 6 | 520 | 2538 | 683 | 2 | ⋯ | Old | Old_B | B | Old_B | 0.086367041 | Old_B_2 | 44 | 49 | 56 | 46 |
mo2_AAACGAAGTCAGGCTC-1 | SeuratProject | 6964 | 5674 | 14450 | 5668 | 0 | 177 | 603 | 66 | 0 | ⋯ | Old | Old_B | B | Old_B | 0.052462954 | Old_B_1 | 3 | 5 | 0 | 9 |
mo2_AAACGAAGTGTAGGAC-1 | SeuratProject | 9127 | 7875 | 18690 | 6638 | 0 | 166 | 765 | 36 | 0 | ⋯ | Old | Old_MdM | MdM | Old_MdM | 0.089529805 | Old_MdM | 5 | 24 | 27 | 27 |
mo2_AAACGAAGTTAGGAGC-1 | SeuratProject | 13876 | 9853 | 33799 | 14551 | 0 | 415 | 1647 | 304 | 3 | ⋯ | Old | Old_B | B | Old_B | 0.078043289 | Old_B_1 | 1 | 12 | 1 | 11 |
mo2_AAACGAAGTTCTTTGT-1 | SeuratProject | 7523 | 6165 | 14855 | 4780 | 1 | 177 | 774 | 141 | 8 | ⋯ | Old | Old_T | T | Old_T | 0.058747031 | Old_T_Cd8 | 52 | 50 | 61 | 48 |
mo2_AAACGAATCATTCGGA-1 | SeuratProject | 16684 | 12487 | 47066 | 23842 | 0 | 537 | 2149 | 55 | 0 | ⋯ | Old | Old_Mesenchymal | Fibroblast | Old_Fibroblast | 0.110541336 | Old_Mesenchymal_1 | 29 | 26 | 13 | 24 |
mo2_AAACGAATCCATTGTT-1 | SeuratProject | 16107 | 11338 | 41098 | 18527 | 8 | 690 | 1962 | 3 | 5 | ⋯ | Old | Old_T | T | Old_T | 0.093593106 | Old_T_Cd8 | 10 | 28 | 16 | 23 |
mo2_AAACGAATCCGTCAAA-1 | SeuratProject | 12313 | 9726 | 58879 | 40355 | 8 | 510 | 3109 | 85 | 7 | ⋯ | Old | Old_Monocyte | Monocyte | Old_Monocyte | 0.091895327 | Old_Monocyte | 11 | 4 | 4 | 8 |
mo2_AAACTCGAGAGGTCCA-1 | SeuratProject | 514 | 505 | 684 | 10 | 0 | 21 | 44 | 13 | 0 | ⋯ | Old | Old_B | B | Old_B | 0.009228935 | Old_B_2 | 17 | 9 | 29 | 5 |
mo2_AAACTCGAGCGTAGCA-1 | SeuratProject | 7323 | 5606 | 23363 | 12719 | 3 | 304 | 1311 | 151 | 0 | ⋯ | Old | Old_B | B | Old_B | 0.050695200 | Old_B_1 | 3 | 33 | 21 | 9 |
mo2_AAACTCGAGGGACGTT-1 | SeuratProject | 11015 | 8054 | 39776 | 24210 | 0 | 576 | 1808 | 17 | 3 | ⋯ | Old | Old_T | T | Old_T | 0.068317831 | Old_T_Cd8 | 10 | 28 | 16 | 23 |
mo2_AAACTCGAGGTGATGC-1 | SeuratProject | 11849 | 8695 | 29312 | 14128 | 2 | 392 | 1215 | 1 | 0 | ⋯ | Old | Old_B | B | Old_B | 0.071373120 | Old_B_1 | 3 | 5 | 0 | 1 |
mo2_AAACTCGAGTCTGCTA-1 | SeuratProject | 9996 | 7521 | 26178 | 13259 | 2 | 366 | 997 | 27 | 3 | ⋯ | Old | Old_T | T | Old_T | 0.064289965 | Old_T_Cd4 | 18 | 10 | 3 | 4 |
mo2_AAACTCGAGTTGTCCA-1 | SeuratProject | 16986 | 11506 | 52972 | 27131 | 15 | 683 | 3424 | 1781 | 3 | ⋯ | Old | Old_B | B | Old_B | 0.087912619 | Old_B_2 | 19 | 11 | 39 | 43 |
mo2_AAACTCGCAAGCAACG-1 | SeuratProject | 1564 | 1518 | 2343 | 228 | 1 | 33 | 118 | 8 | 0 | ⋯ | Old | Old_MdM | MdM | Old_MdM | 0.023035066 | Old_MdM | 47 | 66 | 66 | 66 |
mo2_AAACTCGCAATTAGGA-1 | SeuratProject | 14549 | 11318 | 46819 | 25393 | 3 | 575 | 2157 | 47 | 2 | ⋯ | Old | Old_NK | NK | Old_NK | 0.108747698 | Old_NK | 39 | 42 | 71 | 64 |
mo2_AAACTCGCAATTGCCA-1 | SeuratProject | 31010 | 18183 | 80756 | 39032 | 5 | 996 | 3192 | 190 | 1 | ⋯ | Old | Old_NK | NK | Old_NK | 0.122690171 | Old_NK | 39 | 42 | 71 | 64 |
mo2_AAACTCGCACTCGCAG-1 | SeuratProject | 18395 | 13167 | 41938 | 17885 | 3 | 521 | 1930 | 103 | 3 | ⋯ | Old | Old_B | B | Old_B | 0.101974390 | Old_B_1 | 62 | 84 | 110 | 100 |
mo2_AAACTCGCATGGCCTG-1 | SeuratProject | 1860 | 1776 | 2934 | 528 | 0 | 33 | 117 | 4 | 0 | ⋯ | Old | Old_MdM | MdM | Old_MdM | 0.025249513 | Old_MdM | 31 | 32 | 49 | 50 |
mo2_AAACTCGGTAAGCCGA-1 | SeuratProject | 1057 | 1037 | 1669 | 188 | 0 | 26 | 102 | 13 | 0 | ⋯ | Old | Old_MdM | MdM | Old_MdM | 0.017574364 | Old_MdM | 47 | 66 | 66 | 66 |
mo2_AAACTCGGTATCTAGC-1 | SeuratProject | 11500 | 8788 | 32130 | 16660 | 0 | 401 | 1513 | 0 | 10 | ⋯ | Old | Old_T | T | Old_T | 0.079767182 | Old_T_Cd8 | 9 | 16 | 12 | 42 |
mo2_AAACTCGGTATTGTCG-1 | SeuratProject | 21196 | 14234 | 77718 | 47229 | 1 | 982 | 3458 | 24 | 4 | ⋯ | Old | Old_T | T | Old_T | 0.113045238 | Old_T_Cd4 | 18 | 10 | 3 | 4 |
mo2_AAACTCGGTCCCTTTG-1 | SeuratProject | 14928 | 11401 | 67725 | 46699 | 1 | 752 | 2574 | 62 | 12 | ⋯ | Old | Old_cDC | cDC | Old_cDC | 0.104435839 | Old_cDC | 2 | 1 | 18 | 2 |
⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋱ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ | ⋮ |
my2_TTTGGCCTCTCGTGAA-1 | SeuratProject | 16985 | 11038 | 80151 | 56379 | 12 | 1314 | 2783 | 106 | 5 | ⋯ | Young | Young_Endothelial | Endothelial | Young_Endothelial | 0.087016061 | Young_Endothelial_1 | 28 | 36 | 9 | 21 |
my2_TTTGGCCTCTTAGTGG-1 | SeuratProject | 22861 | 16861 | 334697 | 191787 | 33 | 4261 | 49129 | 345 | 132 | ⋯ | Young | Young_Hepatocyte | Hepatocyte | Young_Hepatocyte | 0.183642060 | Young_Hepatocyte | 35 | 34 | 51 | 58 |
my2_TTTGGTTAGACCCTAT-1 | SeuratProject | 28365 | 17852 | 101844 | 60581 | 8 | 1479 | 4674 | 17 | 5 | ⋯ | Young | Young_T | T | Young_T | 0.125900835 | Young_T_Cd4 | 67 | 80 | 103 | 97 |
my2_TTTGGTTAGCGCACAA-1 | SeuratProject | 489 | 373 | 5782 | 3423 | 1 | 80 | 947 | 359 | 1 | ⋯ | Young | Young_Endothelial | Endothelial | Young_Endothelial | 0.007560416 | Young_Endothelial_2 | 30 | 27 | 100 | 91 |
my2_TTTGGTTAGCTGGAGT-1 | SeuratProject | 3840 | 3004 | 18968 | 13386 | 2 | 284 | 880 | 84 | 9 | ⋯ | Young | Young_Neutrophil | Neutrophil | Young_Neutrophil | 0.032489270 | Young_Neutrophil | 48 | 51 | 95 | 54 |
my2_TTTGGTTAGGGTGTTG-1 | SeuratProject | 14042 | 10149 | 69480 | 49137 | 0 | 1140 | 2124 | 193 | 17 | ⋯ | Young | Young_Endothelial | Endothelial | Young_Endothelial | 0.088335715 | Young_Endothelial_1 | 28 | 36 | 9 | 21 |
my2_TTTGGTTAGTAGGTCG-1 | SeuratProject | 1101 | 1020 | 3592 | 2109 | 0 | 44 | 139 | 0 | 0 | ⋯ | Young | Young_B | B | Young_B | 0.015398810 | Young_B_1 | 17 | 9 | 74 | 5 |
my2_TTTGGTTCACGTTACA-1 | SeuratProject | 193 | 193 | 1154 | 16 | 0 | 61 | 172 | 1 | 0 | ⋯ | Young | Young_Hepatocyte | Hepatocyte | Young_Hepatocyte | 0.005538412 | Young_Hepatocyte | 21 | 14 | 23 | 7 |
my2_TTTGGTTCACGTTAGT-1 | SeuratProject | 9510 | 7274 | 288290 | 194550 | 20 | 3660 | 46179 | 197 | 136 | ⋯ | Young | Young_Hepatocyte | Hepatocyte | Young_Hepatocyte | 0.107285887 | Young_Hepatocyte | 35 | 34 | 51 | 58 |
my2_TTTGGTTCATTAACGC-1 | SeuratProject | 3349 | 3071 | 5491 | 1244 | 0 | 33 | 231 | 2 | 0 | ⋯ | Young | Young_B | B | Young_B | 0.036090944 | Young_B_1 | 13 | 20 | 5 | 12 |
my2_TTTGGTTCATTAAGGA-1 | SeuratProject | 12714 | 9304 | 47410 | 29552 | 2 | 566 | 2028 | 16 | 1 | ⋯ | Young | Young_B | B | Young_B | 0.078006469 | Young_B_1 | 1 | 12 | 1 | 1 |
my2_TTTGGTTGTAACGGCA-1 | SeuratProject | 11422 | 8233 | 35185 | 19985 | 0 | 550 | 1385 | 17 | 0 | ⋯ | Young | Young_T | T | Young_T | 0.065258808 | Young_T_Cd4 | 24 | 40 | 11 | 15 |
my2_TTTGGTTGTATCACAC-1 | SeuratProject | 13445 | 10052 | 42558 | 24039 | 0 | 497 | 1703 | 2 | 2 | ⋯ | Young | Young_KC | KC | Young_KC | 0.086990997 | Young_KC | 15 | 19 | 30 | 33 |
my2_TTTGGTTTCCAAACCA-1 | SeuratProject | 4556 | 3146 | 22303 | 14175 | 4 | 534 | 1431 | 721 | 0 | ⋯ | Young | Young_Endothelial | Endothelial | Young_Endothelial | 0.031794410 | Young_Endothelial_2 | 20 | 15 | 33 | 52 |
my2_TTTGGTTTCCTATCCG-1 | SeuratProject | 15511 | 10928 | 69998 | 47276 | 0 | 1228 | 2452 | 194 | 6 | ⋯ | Young | Young_Endothelial | Endothelial | Young_Endothelial | 0.090401851 | Young_Endothelial_1 | 4 | 25 | 24 | 21 |
my2_TTTGGTTTCGACTCGG-1 | SeuratProject | 6072 | 4958 | 12416 | 4730 | 1 | 220 | 561 | 47 | 6 | ⋯ | Young | Young_Neutrophil | Neutrophil | Young_Neutrophil | 0.047947764 | Young_Neutrophil | 26 | 17 | 2 | 10 |
my2_TTTGGTTTCGATCGCG-1 | SeuratProject | 4705 | 3838 | 24356 | 16756 | 7 | 454 | 1276 | 194 | 4 | ⋯ | Young | Young_Endothelial | Endothelial | Young_Endothelial | 0.039642129 | Young_Endothelial_2 | 16 | 6 | 10 | 22 |
my2_TTTGTGTAGACGCCAA-1 | SeuratProject | 3778 | 3242 | 11691 | 6775 | 2 | 215 | 400 | 0 | 0 | ⋯ | Young | Young_Endothelial | Endothelial | Young_Endothelial | 0.033910543 | Young_Endothelial_2 | 16 | 6 | 70 | 22 |
my2_TTTGTGTAGGAGTACC-1 | SeuratProject | 19800 | 14143 | 74364 | 45348 | 8 | 829 | 2214 | 425 | 8 | ⋯ | Young | Young_Cholangiocyte | Cholangiocyte | Young_Cholangiocyte | 0.136712506 | Young_Cholangiocyte | 41 | 48 | 64 | 61 |
my2_TTTGTGTAGGTTTCTG-1 | SeuratProject | 541 | 534 | 1008 | 221 | 0 | 55 | 33 | 0 | 0 | ⋯ | Young | Young_Neutrophil | Fibroblast | Young_Neutrophil | 0.009983188 | Young_Neutrophil | 58 | 72 | 96 | 77 |
my2_TTTGTGTCAACTCAAC-1 | SeuratProject | 3873 | 3324 | 11976 | 6425 | 1 | 170 | 531 | 73 | 2 | ⋯ | Young | Young_Endothelial | Endothelial | Young_Endothelial | 0.034657195 | Young_Endothelial_2 | 16 | 6 | 70 | 22 |
my2_TTTGTGTCAGTTAAAG-1 | SeuratProject | 1616 | 1341 | 9242 | 4949 | 2 | 232 | 927 | 131 | 1 | ⋯ | Young | Young_KC | KC | Young_KC | 0.021022085 | Young_KC | 23 | 43 | 46 | 47 |
my2_TTTGTGTCATACCCGG-1 | SeuratProject | 5259 | 4284 | 68479 | 58359 | 0 | 907 | 2782 | 204 | 0 | ⋯ | Young | Young_Endothelial | Endothelial | Young_Endothelial | 0.044129591 | Young_Endothelial_2 | 16 | 6 | 10 | 22 |
my2_TTTGTGTCATCAGAAA-1 | SeuratProject | 9083 | 7436 | 51715 | 30725 | 5 | 637 | 3968 | 68 | 19 | ⋯ | Young | Young_Mesenchymal | HSC | Young_HSC | 0.092090599 | Young_Mesenchymal_3 | 54 | 61 | 102 | 92 |
my2_TTTGTGTCATTAGCAC-1 | SeuratProject | 1433 | 1375 | 3266 | 490 | 1 | 43 | 244 | 9 | 1 | ⋯ | Young | Young_Mesenchymal | HSC | Young_HSC | 0.024997247 | Young_Mesenchymal_3 | 54 | 61 | 88 | 84 |
my2_TTTGTGTGTACAACGG-1 | SeuratProject | 723 | 704 | 1062 | 91 | 0 | 7 | 55 | 8 | 0 | ⋯ | Young | Young_KC | KC | Young_KC | 0.012359071 | Young_KC | 23 | 46 | 46 | 47 |
my2_TTTGTGTGTAGAAAGG-1 | SeuratProject | 6870 | 5724 | 14523 | 4899 | 0 | 176 | 639 | 121 | 1 | ⋯ | Young | Young_KC | KC | Young_KC | 0.059717931 | Young_KC | 15 | 43 | 45 | 45 |
my2_TTTGTGTGTATGTCCA-1 | SeuratProject | 16833 | 12060 | 63064 | 39343 | 7 | 1018 | 1921 | 202 | 2 | ⋯ | Young | Young_Endothelial | Endothelial | Young_Endothelial | 0.101158679 | Young_Endothelial_1 | 4 | 25 | 24 | 29 |
my2_TTTGTGTTCCCAGCAG-1 | SeuratProject | 3227 | 2933 | 4658 | 662 | 0 | 53 | 181 | 0 | 1 | ⋯ | Young | Young_B | B | Young_B | 0.033843491 | Young_B_1 | 13 | 20 | 5 | 12 |
my2_TTTGTGTTCCGTGCAG-1 | SeuratProject | 22463 | 14098 | 91573 | 58925 | 12 | 1493 | 3836 | 0 | 5 | ⋯ | Young | Young_B | B | Young_B | 0.101484522 | Young_B_1 | 1 | 21 | 6 | 19 |
rds@meta.data <- meta
DimPlot(rds, group.by = 'annotation')
DimPlot(rds, group.by = 'subannotation')