Skip to content

Commit c138d5e

Browse files
committed
fix: replace library(tidyverse) with library(dplyr) in peak-width R scripts
tidyverse is absent from nciccbr/ccbr_atacseq:v13-feat. The three affected scripts (fixed_width_peakSets_to_consensus_peakSet.R, narrowPeak_normalize_pvalues.R, narrowPeak_to_fixed_width_peakSet.R) only use arrange/mutate/filter, all of which are in dplyr — already installed. ⚡ generated using AI ⚡
1 parent a0fd9b8 commit c138d5e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

workflow/scripts/fixed_width_peakSets_to_consensus_peakSet.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ args <- parser$parse_args()
4747
norm_pvalue_threshold <- args$cutoffSPM
4848
min_replicates <- args$minReps
4949

50-
suppressPackageStartupMessages(library("tidyverse"))
50+
suppressPackageStartupMessages(library("dplyr"))
5151

5252
debug <- 0
5353

workflow/scripts/narrowPeak_normalize_pvalues.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ parser$add_argument("-o", "--outputNarrowPeak",
2121

2222

2323
args <- parser$parse_args()
24-
suppressPackageStartupMessages(library("tidyverse"))
24+
suppressPackageStartupMessages(library("dplyr"))
2525

2626
debug <- 0
2727

workflow/scripts/narrowPeak_to_fixed_width_peakSet.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ parser$add_argument("-w", "--peakWidth",
3535
args <- parser$parse_args()
3636
offset <- round(args$peakWidth / 2)
3737

38-
suppressPackageStartupMessages(library("tidyverse"))
38+
suppressPackageStartupMessages(library("dplyr"))
3939

4040
debug <- 0
4141

0 commit comments

Comments
 (0)