Skip to content

Commit

Permalink
Update ascets_resources.R
Browse files Browse the repository at this point in the history
Fixed an issue where the incorrect command line input was used to set the BOC parameter
  • Loading branch information
lfspurr authored Oct 24, 2023
1 parent 87f844f commit 8aadea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ascets_resources.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ handle_command_args <- function(args) {

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

# check if optional noise file has been supplied
Expand Down

0 comments on commit 8aadea8

Please sign in to comment.