#!/usr/bin/env Rscript
# Copyright (C) 2018 Jochen Weile, Roth Lab
#
# This file is part of tileseqMave.
#
# tileseqMave is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# tileseqMave is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with tileseqMave. If not, see <https://www.gnu.org/licenses/>.
#####################################################
# This is a command line wrapper for calcEnrichment
#####################################################
options(
stringsAsFactors=FALSE,
ignore.interactive=TRUE,
future.cmdargs=c()
)
#load libraries
library(tileseqMave)
library(argparser)
library(yogilog)
#process command line arguments
p <- arg_parser(
"Calculates logPhi enrichments based on the output of joinCounts.R",
name="calcEnrichment.R"
)
p <- add_argument(p, "--workspace", help="workspace data directory. Defaults to current working directory")
p <- add_argument(p, "--input", help="input directory containing the count data. Defaults to subdirectory with latest timestamp ending in _mut_count")
p <- add_argument(p, "--output", help="output directory. Defaults to name of input directory with _scores tag")
p <- add_argument(p, "--parameters", help="parameter file. Defaults to parameters.json in the data directory.")
p <- add_argument(p, "--logfile", help="log file. Defaults to 'enrichment.log' in the same directory")
p <- add_argument(p, "--cores", default=6L, help="number of CPU cores to use in parallel for multi-threading")
p <- add_argument(p, "--srOverride", help="Manual override to allow singleton replicates. USE WITH EXTREME CAUTION!",flag=TRUE)
p <- add_argument(p, "--bnOverride", help="Manual override to disable bottleneck filtering.",flag=TRUE)
p <- add_argument(p, "--bcOverride", help="Deprecated. See --biasCorrection",flag=TRUE)
p <- add_argument(p, "--biasCorrection", help="Enable bias experimental bias correction.",flag=TRUE)
p <- add_argument(p, "--wtFilter", help="Enable WT filter. Removes variants with excess WT ctrl counts.",flag=TRUE)
p <- add_argument(p, "--bootstrap", default=1e4, help="Number of bootstrap samples to use. NA uses heuristics instead.")
p <- add_argument(p, "--optimistic", help="Uses bayesian regularization instead of maximizing between prior and empiric SD",flag=TRUE)
p <- add_argument(p, "--useQuorum", help="Use majority vote to exclude frequency outliers",flag=TRUE)
p <- add_argument(p, "--useLPDfilter", help="Use ad-hoc logPhi disagreement filter",flag=TRUE)
p <- add_argument(p, "--silent", help="Turn off message printing to stdout",flag=TRUE)
args <- parse_args(p)
#Workaround for bug in future package, that re-uses command line arguments:
#Override commandArgs function with dummy that returns nothing
commandArgs <- function(trailingOnly=FALSE) {
character()
}
#ensure datadir ends in "/" and exists
if (is.na(args$workspace)) {
dataDir <- getwd()
} else {
dataDir <- args$workspace
}
if (!grepl("/$",dataDir)) {
dataDir <- paste0(dataDir,"/")
}
if (!dir.exists(dataDir)) {
#logger cannot initialize without dataDirectory, so just a simple exception here.
stop("Workspace folder ",dataDir," folder does not exist!")
}
paramFile <- if (is.na(args$parameters)) paste0(dataDir,"parameters.json") else args$parameters
logfile <- if (is.na(args$logfile)) paste0(dataDir,"enrichment.log") else args$logfile
#set up logger and shunt it into the error handler
logger <- new.logger(logfile,stdout=!args$silent)
registerLogger(logger)
registerLogErrorHandler(logger)
logVersion()
if (args$bcOverride) {
logWarn("The --bcOverride flag is deprecated. Bias correction is now turned off by default.")
}
#run the actual function
invisible(
calcEnrichment(
dataDir, inDir=args$input, outDir=args$output, paramFile=paramFile,
mc.cores=args$cores,
srOverride=args$srOverride,
bnOverride=args$bnOverride,
bcOverride=!args$biasCorrection,
useWTfilter=args$wtFilter,
nbs=args$bootstrap,
pessimistic=!args$optimistic,
useQuorum=args$useQuorum,
useLPDfilter=args$useLPDfilter
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.