Skip to content

Commit

Permalink
bug fix in parallelization script
Browse files Browse the repository at this point in the history
  • Loading branch information
saorisakaue committed Aug 13, 2024
1 parent 75071bd commit 070058b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Parallelized Bash Script/SCENT_parallelization.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ output_dir = commandArgs(trailingOnly = T)[7] # Output of each text file to a s
SCENT_obj <- readRDS(SCENTobj_rds)

#### Get the corresponding dataframe from the list:
SCENT_obj@peak.info <- SCENT_obj@peak.info[[node]]
SCENT_obj@peak.info <- SCENT_obj@peak.info.list[[node]]

#### Run SCENT algorithm of Tnk cell type and use 6 cores for parallelization:
SCENT_obj <- SCENT_algorithm(SCENT_obj, celltype, cores, regr, bin)
Expand Down

0 comments on commit 070058b

Please sign in to comment.