Not all homologs are being plotted (only GS1-3 in C. elegans).
Embryonic timeline is plotting incorrectly.
Possibly related issue is the following error:
"The ... argument of across() is deprecated as of dplyr 1.1.0.
Supply arguments directly to .fns through an anonymous function instead.
Not all homologs are being plotted (only GS1-3 in C. elegans). Embryonic timeline is plotting incorrectly.
Possibly related issue is the following error: "The
...
argument ofacross()
is deprecated as of dplyr 1.1.0. Supply arguments directly to.fns
through an anonymous function instead.Previously
across(a:b, mean, na.rm = TRUE)
Now
across(a:b, (x) mean(x, na.rm = TRUE))"