From b3cb1ed4708db6abd95e4b63446beb9934727d50 Mon Sep 17 00:00:00 2001 From: Astrid Deschenes Date: Thu, 22 Feb 2024 19:01:45 -0500 Subject: [PATCH] Update assignation in function --- .Rbuildignore | 2 +- R/findConsensusPeakRegions.R | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.Rbuildignore b/.Rbuildignore index 2e84e15..472837f 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -2,4 +2,4 @@ ^\.Rproj\.user$ ## Ignore travis config file -^\.travis\.yml$ \ No newline at end of file +^\.travis\.yml$ diff --git a/R/findConsensusPeakRegions.R b/R/findConsensusPeakRegions.R index 9093b1c..a0123a6 100644 --- a/R/findConsensusPeakRegions.R +++ b/R/findConsensusPeakRegions.R @@ -145,7 +145,7 @@ findConsensusPeakRegions <- function(narrowPeaks, peaks, chrInfo, minNbrExp, nbrThreads) # Change minNbrExp to integer - minNbrExp = as.integer(minNbrExp) + minNbrExp <- as.integer(minNbrExp) # Select the type of object used for parallel processing nbrThreads <- as.integer(nbrThreads)