Hi, I really enjoy your package.
I downloaded TCGA RNAseq fpkm value and try to produce the IPS as follows
FPKMtoTPM <- function(fpkm){ exp(log(fpkm) - log(sum(fpkm)) + log(1e6)) } RNA_TPM <- as.data.frame(apply(RNA_FPKM,2,FPKMtoTPM)) gene_expression <- RNA_TPM
And then I run the code as you provided in IPS.R. But it had different IPS score as you presented in the TCIA web.
Where was I wrong?
Thank you very much.
Hi, I really enjoy your package.
I downloaded TCGA RNAseq fpkm value and try to produce the IPS as follows
FPKMtoTPM <- function(fpkm){ exp(log(fpkm) - log(sum(fpkm)) + log(1e6)) } RNA_TPM <- as.data.frame(apply(RNA_FPKM,2,FPKMtoTPM)) gene_expression <- RNA_TPMAnd then I run the code as you provided in IPS.R. But it had different IPS score as you presented in the TCIA web.
Where was I wrong?
Thank you very much.