-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Description
I'm running into a Quick-TRANSfer warning when running scPredict. It seems to be related to this Harmony issue.
This is an example of what I'm running:
process_seurats <- function(seuratraw){
seuratraw <- seuratraw %>%
NormalizeData() %>%
FindVariableFeatures() %>%
ScaleData() %>%
RunPCA() %>%
RunUMAP(dims = 1:30) %>%
JackStraw(num.replicate = 100) %>%
ScoreJackStraw(dims = 1:20) %>%
FindNeighbors(dims = 1:20) %>%
FindClusters(resolution = 1:10/10)
return(seuratraw)
}
set.seed(2248)
query <- process_seurats(query)
# predict using model
query <- scPredict(query, reference, max.iter.harmony = 50)
And the warning message that occurs:
Harmony converged after 2 iterations
Warning message:
Quick-TRANSfer stage steps exceeded maximum (= 4439650)
Can this warning be safely ignored? Or is this an issue with Harmony?
Thanks!
Metadata
Metadata
Assignees
Labels
No labels