Skip to content

Commit 15f8e21

Browse files
committed
fix(clonal_size_data): update names_sep to names_pattern for better regex handling
- Changed names_sep argument to names_pattern in clonal_size_data function
1 parent a6e9cff commit 15f8e21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/clonalutils.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ clonal_size_data <- function(data, clone_call, chain, groupings) {
6161
mat,
6262
cols = -"Var1",
6363
names_to = c(".group", ".value"),
64-
names_sep = "\\."
64+
names_pattern = "(.+)\\.(.+)"
6565
)
6666
mat
6767
})) %>%

0 commit comments

Comments
 (0)