Skip to content

Commit

Permalink
Merge pull request #143 from rcastelo/142-gene-set-expression-score-m…
Browse files Browse the repository at this point in the history
…atrices-are-not-sparse

make resulting ES matrices always dense
  • Loading branch information
axelklenk authored Feb 23, 2024
2 parents 896a63e + f19f983 commit 2e3429b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/gsvaNewAPI.R
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ setMethod("wrapData", signature("matrix", "matrix"),

setMethod("wrapData", signature("matrix", "dgCMatrix"),
function(dataMatrix, container) {
return(.matrix2dgCMatrix(dataMatrix))
return(dataMatrix)
})

setMethod("wrapData", signature("matrix", "ExpressionSet"),
Expand Down

0 comments on commit 2e3429b

Please sign in to comment.