Skip to content

Commit 8aadea8

Browse files
authored
Update ascets_resources.R
Fixed an issue where the incorrect command line input was used to set the BOC parameter
1 parent 87f844f commit 8aadea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ascets_resources.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ handle_command_args <- function(args) {
5151

5252
# load the remaining required files and parameters
5353
cytoband <<- as.data.frame(fread(arg_df$value[arg_df$flag == "-c"]))
54-
min_boc <<- ifelse(length(arg_df$value[arg_df$flag == "-t"]) > 0, as.numeric(arg_df$value[arg_df$flag == "-t"]), 0.5)
54+
min_boc <<- ifelse(length(arg_df$value[arg_df$flag == "-m"]) > 0, as.numeric(arg_df$value[arg_df$flag == "-m"]), 0.5)
5555
name <<- arg_df$value[arg_df$flag == "-o"]
5656

5757
# check if optional noise file has been supplied

0 commit comments

Comments
 (0)