Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
vertesy committed Sep 24, 2024
1 parent 72c33c0 commit d3dcbde
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions R/Seurat.Utils.Metadata.R
Original file line number Diff line number Diff line change
Expand Up @@ -884,13 +884,15 @@ transferMetadata <- function(from, to,
colname_to[i]
), immediate. = TRUE)
}
}

# Plot umap _______________________________________________________
if (plotUMAP) {
x <- clUMAP(obj = to, ident = colname_to, suffix = "transferred.ident", ...)
print(x)
}
# Plot umap _______________________________________________________
if (plotUMAP) {
# browser()
x <- clUMAP(obj = to, ident = colname_to[i], suffix = "transferred.ident", ...)
print(x)
}

} # for

return(to)
}
Expand Down

0 comments on commit d3dcbde

Please sign in to comment.