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
Fix typo on example for registration_wrapper(). Add a bit more about how to explore the results. Actually with k = 2 we can run the pairwise model, so I've re-enabled that. Updating the warning for k = 2 accordingly. Used RStudio's automatic code formatter + styler's addin for styling the active file. Re-ran devtools::document(). Related to #86.
warning("You need 'var_registration' to have at least 3 different values to compute an F-statistic, returning Enrichment statistics only", call.=FALSE)
95
+
warning(
96
+
"You need 'var_registration' to have at least 3 unique values to compute an F-statistic and thus ANOVA modeling results cannot be computed.",
97
+
call.=FALSE
98
+
)
89
99
}
90
100
91
101
results_enrichment<-
@@ -96,40 +106,36 @@ registration_wrapper <-
96
106
gene_ensembl=gene_ensembl,
97
107
gene_name=gene_name
98
108
)
99
-
100
-
## with more than 2 groups run ANOVA and pairwise data
0 commit comments