summarize_GRNs.Rd
This function summarizes a list of GRaNIE objects, extracting various statistics and parameters from each GRN, and returns a summary data frame.
summarize_GRNs(GRN.list, forceRerun = FALSE)
A list of GRaNIE objects. This list can either be manually defined by constructing a list that contains an arbitrary number of GRaNIE objects or the helper functions generateGRNList_custom or generateGRNList_Seurat can be used to automatically populate that list given a specific root directory in which GRaNIE objects are located.
A logical value indicating whether to force rerun the function and re-generate the output even if the output files already exist on disk or in the object. Default is FALSE.
A data frame containing the summarized statistics and parameters for each GRN.
if (FALSE) {
GRN.list <- list(GRN1, GRN2, GRN3)
summary_df <- summarize_GRNs(GRN.list)
}