R/wishlist.R

Defines functions mapSummPlot

# mapping Summary Report PDF plots
mapSummPlot <- function(x){
    mapSumm <- data.table::fread(file = file.path(outDir, "mappingSummary.txt"),
                                 header = TRUE, stringsAsFactors = FALSE) %>%
        data.frame
    rownames(mapSumm) <- as.character(mapSumm[,1]) %>% gsub(pattern = " \\|", replacement = "")
    mapSumm <- t(mapSumm[,-1])
    colnames(mapSumm)
}
SchwartzLab/brainSTORM documentation built on May 14, 2022, 5:14 p.m.