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
This is not an important issue or urgent in any way, but I wanted to note that
summary(env_data, short = FALSE)$rownames
is slower than
dimnames(env_data[[1]])[[1]]
by a fair amount:
I have opted to use dimnames() in my pipeline since you need al lot of data in order for length(env_data) to be > 1 and the rownames should be identical across all ff_matrix objects in an env.data object containing CpG measurements.
The text was updated successfully, but these errors were encountered:
This is not an important issue or urgent in any way, but I wanted to note that
is slower than
by a fair amount:
I have opted to use
dimnames()
in my pipeline since you need al lot of data in order forlength(env_data)
to be > 1 and the rownames should be identical across allff_matrix
objects in anenv.data
object containing CpG measurements.The text was updated successfully, but these errors were encountered: