We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 461e372 commit 2699f8eCopy full SHA for 2699f8e
1 file changed
R/Projections.R
@@ -36,7 +36,7 @@ generateProjectionsInner <- function(expr, latentSpace, projection_genes=NULL, p
36
projections[["PCA: 1,3"]] <- latentSpace[, c(1, 3)]
37
projections[["PCA: 2,3"]] <- latentSpace[, c(2, 3)]
38
N <- length(methodList)
39
- for (i in seq(N)){
+ for (i in seq_len(N)){
40
method <- names(methodList)[i]
41
message(
42
sprintf(" Running method %i/%i: %s ...", i, N, method)
0 commit comments