Skip to contents

Plot BUSCO summary output

Usage

plot_busco(summary_df = NULL)

Arguments

summary_df

Data frame with BUSCO summary output as returned by read_busco().

Value

A ggplot object with a barplot of BUSCOs in each class.

Examples

# Single file
result_dir <- system.file("extdata", package = "cogeqc")
summary_df <- read_busco(result_dir)
# Batch mode
data(batch_summary)
plot_busco(summary_df)

plot_busco(batch_summary)