Closed ethanbustad closed 16 hours ago
thanks @ethanbustad i will check on this and figure out the problem. were you able to get the kimma
fitting to work? can you help debug that? e.g., here in iv_bcg_dge.qmd at line 174
No I haven't done any troubleshooting on kimma
so far; I'll give it a go today. No promises I'll figure anything out, though -- R is not my forte :)
And as for select
, yeah dplyr::select
conflicting with other imported select
functions. filter
also potentially conflicts sometimes... Might be worth including the conflicted
package and explicitly telling it we prefer dplyr::select
, or just specifying dplyr::select
whenever we use it (though that seems uglier).
Thanks, I agree dplyr::select
is preferred. For the kimma
error I think I need to use voomWithQualityWeights
which I should have known to do! Thanks for your help.
Whenever a
... %>% select(...) %>% ...
function gets called iniv_bcg_immune_correlates.qmd
, I get an error, e.g.,or
Maybe we're missing an import, and the wrong
select
function is being called? I do seedplyr::select
being explicitly used in that notebook.This seems to only happen in this particular notebook -- it works fine in
granuloma_tcell_dge.qmd
andiv_bcg_dge.qmd
.