Skip to content

Commit

Permalink
removing paste from message
Browse files Browse the repository at this point in the history
  • Loading branch information
federicomarini committed Sep 12, 2024
1 parent 7cb49f1 commit 746cf72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/pca2go.R
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ pca2go <- function(se,
rv <- rowVars(exprsData)
dropped <- sum(rv == 0)
if (dropped > 0)
message(paste("Dropped", dropped, "genes with 0 variance"))
message("Dropped ", dropped, " genes with 0 variance")

exprsData <- exprsData[rv > 0, ]

Expand Down Expand Up @@ -356,7 +356,7 @@ limmaquickpca2go <- function(se,
rv <- rowVars(exprsData)
dropped <- sum(rv == 0)
if (dropped > 0)
message(paste("Dropped", dropped, "genes with 0 variance"))
message("Dropped ", dropped, " genes with 0 variance")

exprsData <- exprsData[rv > 0, ]

Expand Down

0 comments on commit 746cf72

Please sign in to comment.