You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
library(phyloseq)
data(GlobalPatterns)
f<-function(x, y) {x+y}
ps<- transform_sample_counts(GlobalPatterns, f, y=2)
#> Error in fun(1:10): argument "y" is missing, with no default
Created on 2019-11-08 by the reprex package (v0.3.0)
The problem is due to a missing
...
atphyloseq/R/transform_filter-methods.R
Line 817 in 3fb790f
Changing this line to
fixes the issue.
The text was updated successfully, but these errors were encountered: