Skip to content

Commit

Permalink
Add missing spaces in error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Plessy committed Jun 11, 2024
1 parent f56fb52 commit c91b465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/GetMethods.R
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ setMethod( "tagClustersGR", "CAGEexp"
, function (object, sample, qLow, qUp) {
tc <- metadata(object)$tagClusters[[sample]]
if (is.null(tc))
stop( "No clusters found, run ", sQuote("distclu"), "or", sQuote("paraclu"), " first." , call. = FALSE)
stop( "No clusters found, run ", sQuote("distclu"), " or ", sQuote("paraclu"), " first." , call. = FALSE)

if (! is.null(qLow) & ! is.null(qUp)) {
qLowName <- paste0("q_", qLow)
Expand Down

0 comments on commit c91b465

Please sign in to comment.