Subclustering: is it necessary to create a new Arrow file? #685
Unanswered
macpheke
asked this question in
Questions / Documentation
Replies: 1 comment
-
This is not a supported workflow. Imagine you use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there anything wrong with having multiple ArchRProject objects from the same ArrowFile?
Like if I have an ArchRProject object
proj
with 10,000 cells, then I do:proj_1 <- subsetCells(ArchRProject = proj, cellNames = group_A)
proj_2 <- subsetCells(ArchRProject = proj, cellNames = group_B)
Will it create problems for my Arrow file down the line if I then run
addIterativeLSI()
,addUMAP()
, andaddImputeWeights()
on proj, proj_1, and proj_2?Or is it truly necessary to keep independent project folders with independent arrow files for each?
Beta Was this translation helpful? Give feedback.
All reactions