Skip to content
Snippets Groups Projects
Commit 2c5bbdc1 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Fix exit for tests in calculateTPM.R

parent 800dae10
Branches
Tags
2 merge requests!37v0.0.1,!22Resolve "process_count"
Pipeline #6241 passed with stages
in 1 hour, 43 minutes, and 50 seconds
......@@ -8,11 +8,9 @@ opt=parse_args(OptionParser(option_list=option_list))
rm(option_list)
if (!("count" %in% names(opt))){
print("No count file passed, exiting.")
exit()
stop("No count file passed, exiting.")
} else if (!file.exists(opt$count)) {
print("No count file passed, exiting.")
exit()
stop("No count file passed, exiting.")
}
repRID <- basename(gsub(".featureCounts","",opt$count))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment