Only small fractions of cells are being retained after creation of Arrow Files + ArchRProject #859
Answered
by
rcorces
RK900
asked this question in
Questions / Documentation
-
Hello, I'm trying to use ArchR for peak calling on this dataset, specifically these 4 (LLL_control, LLL_stim, DIG_control, DIG_stim). My code (mostly taken directly from the tutorial): library(ArchR)
addArchRThreads(threads = 1)
# inputFiles <- getTutorialData("Hematopoiesis")
# inputFiles
inputFiles = c(
"dogma/GSM5065524_LLL_CTRL_fragments.tsv.gz",
"dogma/GSM5065527_LLL_STIM_fragments.tsv.gz",
"dogma/GSM5065530_DIG_CTRL_fragments.tsv.gz",
"dogma/GSM5065533_DIG_STIM_fragments.tsv.gz"
)
names(inputFiles) = c(
"LLL_CTRL",
"LLL_STIM",
"DIG_CTRL",
"DIG_STIM"
)
addArchRGenome("hg38")
ArrowFiles <- createArrowFiles(
inputFiles = inputFiles,
sampleNames = names(inputFiles),
minTSS = 4, #Dont set this too high because you can always increase later
minFrags = 1000,
# addTileMat = TRUE,
# addGeneScoreMat = TRUE,
subThreading = FALSE
)
proj1 <- ArchRProject(
ArrowFiles = ArrowFiles,
# outputDirectory = "dogma_seq",
copyArrows = TRUE #This is recommened so that you maintain an unaltered copy for later usage.
) According to the corresponding filtered barcodes files, there should be thousands of cells, however, after I try > proj1 I get only 38 cells
Any pointers as to why this is happening? |
Beta Was this translation helpful? Give feedback.
Answered by
rcorces
Jun 30, 2021
Replies: 1 comment 3 replies
-
Looks like your cells are barely passing your quality threshold of TSS > 4 |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
RK900
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like your cells are barely passing your quality threshold of TSS > 4