Skip to content

Commit

Permalink
Resolve a BiocCheck note about not using cat()
Browse files Browse the repository at this point in the history
  • Loading branch information
lcolladotor committed Mar 27, 2024
1 parent 761079f commit da37fbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/junctionCount.R
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ junctionCount <- function(junctionFiles, sampleNames = names(junctionFiles),
## fill in matrix
message(paste(Sys.time(), "filling in the count matrix"))
for (i in seq(along = grList)) {
if (i %% 25 == 0) cat(".")
if (i %% 25 == 0) message(".")
cc <- rep(0, M)
cc[mList[[i]]] <- theData[[i]]$count
countList[[i]] <- Rle(cc)
Expand Down

0 comments on commit da37fbb

Please sign in to comment.