Open danli349 opened 1 month ago
Hi @danli349! Thanks for using ArchR! Lately, it has been very challenging for me to keep up with maintenance of this package and all of my other responsibilities as a PI. I have not been responding to issue posts and I have not been pushing updates to the software. We are actively searching to hire a computational biologist to continue to develop and maintain ArchR and related tools. If you know someone who might be a good fit, please let us know! In the meantime, your issue will likely go without a reply. Most issues with ArchR right not relate to compatibility. Try reverting to R 4.1 and Bioconductor 3.15. Newer versions of Seurat and Matrix also are causing issues. Sorry for not being able to provide active support for this package at this time.
@rcorces Thanks a lot for helping, can you please let me know which Seurat and Matrix versions should I use?
@rcorces I solved this problem by changing the version of Seurat
package:
remove.packages("SeuratObject")
packageurl <- "http://cran.r-project.org/src/contrib/Archive/SeuratObject/SeuratObject_4.1.3.tar.gz"
install.packages(packageurl, repos=NULL, type="source")
remove.packages("Seurat")
packageurl <- "http://cran.r-project.org/src/contrib/Archive/Seurat/Seurat_4.3.0.tar.gz"
install.packages(packageurl, repos=NULL, type="source")
Thanks a lot
@rcorces I solved this problem by changing the version of
Seurat
package:remove.packages("SeuratObject") packageurl <- "http://cran.r-project.org/src/contrib/Archive/SeuratObject/SeuratObject_4.1.3.tar.gz" install.packages(packageurl, repos=NULL, type="source") remove.packages("Seurat") packageurl <- "http://cran.r-project.org/src/contrib/Archive/Seurat/Seurat_4.3.0.tar.gz" install.packages(packageurl, repos=NULL, type="source")
Thanks a lot
Solved for me too, thanks!
ArchRsub.lungnew <- addGeneIntegrationMatrix(
ArchRProj = ArchRsub.lungnew,
useMatrix = "GeneScoreMatrix",
matrixName = "GeneIntegrationMatrix",
reducedDims = "IterativeLSI",
seRNA = seRNA,
addToArrow = FALSE,
groupRNA = "celltype_bped_main",
nameCell = "predictedCell_Un",
nameGroup = "predictedGroup_Un",
nameScore = "predictedScore_Un"
)
ArchR logging to : ArchRLogs/ArchR-addGeneIntegrationMatrix-4bf73914b78f-Date-2024-10-19_Time-12-09-13.353955.log
If there is an issue, please report to github with logFile!
2024-10-19 12:09:13.473208 : Running Seurat's Integration Stuart* et al 2019, 0.002 mins elapsed.
2024-10-19 12:09:13.745389 : Checking ATAC Input, 0.007 mins elapsed.
2024-10-19 12:09:14.673089 : Checking RNA Input, 0.022 mins elapsed.
2024-10-19 12:09:19.392725 : Found 18706 overlapping gene names from gene scores and rna matrix!, 0.101 mins elapsed.
2024-10-19 12:09:19.396339 : Creating Integration Blocks, 0.101 mins elapsed.
2024-10-19 12:09:19.421006 : Prepping Interation Data, 0.101 mins elapsed.
2024-10-19 12:09:20.119927 : Computing Integration in 1 Integration Blocks!, 0 mins elapsed.
2024-10-19 12:09:20.132852 : Block (1 of 1) : Computing Integration, 0 mins elapsed.
2024-10-19 12:09:20.979738 : Block (1 of 1) : Identifying Variable Genes, 0.014 mins elapsed.
2024-10-19 12:09:23.12459 : Block (1 of 1) : Getting GeneScoreMatrix, 0.05 mins elapsed.
2024-10-19 12:09:34.256679 : Block (1 of 1) : Imputing GeneScoreMatrix, 0.236 mins elapsed.
Getting ImputeWeights
2024-10-19 12:10:09.657839 : Block (1 of 1) : Seurat FindTransferAnchors, 0.826 mins elapsed.
<simpleError in dimnames(x) <- dn: length of 'dimnames' [1] not equal to array extent>
Error in .retryCatch({ :
Moments ago I have faced the same problems in the issue. I have use the same solution to change the Seurat package and run through with Seurat V4 with my RNA data. But when I run the addGeneIntegrationMatrix part, new error came. How to solve this?
@rcorces I solved this problem by changing the version of
Seurat
package:remove.packages("SeuratObject") packageurl <- "http://cran.r-project.org/src/contrib/Archive/SeuratObject/SeuratObject_4.1.3.tar.gz" install.packages(packageurl, repos=NULL, type="source") remove.packages("Seurat") packageurl <- "http://cran.r-project.org/src/contrib/Archive/Seurat/Seurat_4.3.0.tar.gz" install.packages(packageurl, repos=NULL, type="source")
Thanks a lot
Solved for me too, thanks!
same. Thank you kindly for sharing @danli349
When run the tutorial in the document: https://www.archrproject.com/bookdown/cross-platform-linkage-of-scatac-seq-cells-with-scrna-seq-cells.html
How should I solve this error:
Thanks a lot