Replies: 2 comments 4 replies
-
1 min for 500,000 cells sounds unlikely to me. I think this depends most on the number of threads and the overall computational configuration. Youve given a lot of threads which will also take up a lot of memory. If you have an inbalance in threads and memory, then you would use up all of your available memory and potentially start using swap memory which is terribly slow. Beyond that, I dont have much insight here. addClusters is really just a wrapper around Seurat::FindClusters |
Beta Was this translation helpful? Give feedback.
-
Hi, dear rcorces. I had confused again when I run addCluster. I try to run addCluster with "Harmony" and "IterativeLSI" as the same time sampleCells=500,000. So I was confused. When I deal with the scRNA, I will use reducedDims after Harmony. But the ArchR's tuition is use reducedDims before Harmony(https://www.archrproject.com/bookdown/clustering-using-seurats-findclusters-function.html), despite have run "Batch Effect Correction wtih Harmony“ in step4.4. So why we need to choose "IterativeLSI". Last but no least, I can not get the result that is because reducedDims = "Harmony"? And why cause this? Thanks for your patience. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, thanks for the great analysis software.
I try to run "addCluster", but this step have spend so long. I have no idea why it need so long.
Could maybe it was caused by my huge data? I have 990,000 cells. But my colleague just use less than 1min with 440,000 cell.
Or it cause by that I add the parametre sampleCellsFinal=500000 when run "addIterativeLSI".
Thanks for you advise again.
` proj <- addIterativeLSI(
ArchRProj = proj,
useMatrix = "TileMatrix",
name = "IterativeLSI",
iterations = 4, #up
clusterParams = list( #See Seurat::FindClusters
resolution = c(0.2),
sampleCells = 10000,
n.start = 10
),
force = TRUE,
varFeatures = 25000, #down
dimsToUse = 1:30,
sampleCellsPre = 100000,
sampleCellsFinal=500000
)
`
ArchR-addIterativeLSI-1f22f7bcd0953-Date-2022-11-15_Time-09-24-07.log
ArchR-addClusters-1f22f2b6b030b-Date-2022-11-16_Time-19-20-18.log
Beta Was this translation helpful? Give feedback.
All reactions