Closed roryk closed 6 years ago
Ah, gotcha. Always raw counts makes sense to me, I can swap to that.
Yeah I think that's the way to go. Should we include a low pass filter to remove genes with very low expression that aren't really "detected"?
Nice – before merging the pull request run devtools::document()
, which will update the plotGeneSaturation.Rd
file in the man
directory. Then it should be good to go.
Ah never mind, I see that's merging into develop. I'll add that to the update
@roryk The code inside the
plotGeneSaturation()
function is usingmatch.arg()
to capture the first argument in the vector by default. I don't think we can mix logicals (e.g.FALSE
) with characters (e.g."tpm"
) here unless we change thematch.arg()
call. It might be simpler to just setnormalized = FALSE
by default, and then allow tpm or tmm as alternates. Or alternatively, should we just always use the raw counts here? That would be a simpler approach.