Skip to content

Commit d033874

Browse files
committed
update
1 parent eca1162 commit d033874

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

R/exporting-data.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ setMethod("export_genome_occupancy",
144144
# to GRanges
145145
adjusted <- adjusted %>%
146146
fastplyr::f_group_by(sample,rname,pos) %>%
147-
fastplyr::f_summarise(count = sum(count),rpm = sum(rpm), .groups = "drop") %>%
147+
fastplyr::f_summarise(count = sum(count),rpm = sum(rpm)) %>%
148148
fastplyr::f_select(rname,pos,rpm) %>%
149149
dplyr::rename(seqnames = rname, start = pos,score = rpm) %>%
150150
dplyr::mutate(end = start,.after = "start") %>%

R/generic-methods.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ setMethod("generate_summary",
5555
exp_type = c("ribo", "rna", "total", "ip"),
5656
load_local = FALSE,
5757
nThreads = 1){
58+
options(fastplyr.inform = FALSE)
5859
# exp_type <- match.arg(exp_type, c("ribo", "rna", "total", "ip"))
5960

6061
bams <- subset(object@library, type %in% exp_type)

0 commit comments

Comments
 (0)