Create results table that has CRISPR scores, Wilcoxon rank-sum test and t tests.
calc_gi(.data = NULL, gimap_dataset)
{
gimap_dataset <- get_example_data("gimap")
# Highly recommended but not required
run_qc(gimap_dataset)
gimap_dataset <- gimap_dataset %>%
gimap_filter() %>%
gimap_annotate(cell_line = "HELA") %>%
gimap_normalize(
timepoints = "day"
) %>%
calc_crispr() %>%
calc_gi()
saveRDS(gimap_dataset, "gimap_dataset_final.RDS")
}
#> Error: there is already an output .Rmd file./gimap_QC_Report.Rmd. Please remove or rename this file, or choose another output_file name.