Closed l-cli closed 2 years ago
You can't rename the cell names in the Seurat and AnchorSet objects by directly modifying the cell names, this can cause all kinds of issues. Instead you need to use the RenameCells()
function to rename cells in the Seurat object before generating the AnchorSet object.
I think this issue should be solved by:
Was there ever a solution for running IntegrateEmbeddings() after FindIntegrationAnchors() with more than two merged Seurat ATAC-seq objects? When following the 4 steps that @timoast suggested, I am able to run IntegrateEmbeddings() when merging two datasets but when I increase to 4 datasets, I get the "Error: The cell names in the reduction provided don't match the cell names present in the objects used to build the AnchorSet" error.
Hi! When trying to integrate 6 datasets following the steps in this vignette https://satijalab.org/signac/articles/integrate_atac.html, we ran into an error saying
Error: The cell names in the reduction provided don't match the cell names present in the objects used to build the AnchorSet
We checked the cell names in the merged object (using merge() on the 6 datasets which are stored in obj_lst, see below) and the cell names from the integration anchors object, and found that they were in different formats, so we changed them so that they are the same. However, this error persisted.
Below are our codes and the session information:
In the "find integration anchors" step, we also attempted to use a different setting for the argument "anchor.features", namely to use the rownames of one of the objects in the list of objects to be integrated, as below:
And proceeded with the same cell name changes as described above, but still got the error.
Any suggestions on why this is? Thank you so much in advance!