Skip to content

Commit

Permalink
#283 multilevel groupuing
Browse files Browse the repository at this point in the history
Per suggestion from @noranekonobokkusu for group.by merging
  • Loading branch information
ncborcherding committed Dec 19, 2023
1 parent 7a4085f commit d188e6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/combineExpression.R
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ combineExpression <- function(input.data,
)

colnames(data2)[c(1,2)] <- c(cloneCall, group.by)
data <- merge(data, data2, by = cloneCall, all = TRUE)
data <- merge(data, data2, by = c(cloneCall, group.by), all = TRUE)
Con.df <- data[,c("barcode", "CTgene", "CTnt",
"CTaa", "CTstrict", "clonalProportion",
"clonalFrequency")]
Expand Down

0 comments on commit d188e6f

Please sign in to comment.