Entering edit mode
3.4 years ago
David
▴
30
Hi there! I´m using KIRC database from TCGA and downloaded FPKM values, then converted to TPM with this formulas:
FPKMtoTPM <- function(x) { return(exp(log(x) - log(sum(x)) + log(1e6))) }
df <- data %>% mutate_if(is.numeric, FPKMtoTPM)
Now i want to convert TPM to log2(TPM+1). How can i do this?
Thanks! David
Perfect!! Thank you!