Skip to content

Commit ac6ff9f

Browse files
author
SuiYue-2308
committed
change summarise to mutate to avoid dplyr warnings
1 parent e07fbad commit ac6ff9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

R/bambu-extendAnnotations-utilityCombine.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ makeUnsplicedTibble <- function(combinedNewUnsplicedSe,newUnsplicedSeList,
315315
txScore = weighted.mean(txScore, readCount_tmp),
316316
txScore.noFit = weighted.mean(txScore.noFit, readCount_tmp)) %>%
317317
group_by(chr, strand, start, end) %>%
318-
summarise(readCount = sum(readCount),
318+
mutate(readCount = sum(readCount),
319319
maxTxScore = txScore,
320320
maxTxScore.noFit = txScore.noFit,
321321
NSampleReadCount = sum(readCount >= min.readCount),

0 commit comments

Comments
 (0)