View source: R/fpkm_count_conversion.r
fpkmToTpm | R Documentation |
Convert fpkm to Tpm
fpkmToTpm(fpkm_matrix)
fpkm_matrix |
a matrix, colnames of fpkm_matrix are sample name, rownames of fpkm_matrix are genes |
a matrix
lung_squ_count2 <- matrix(c(0.11, 0.22, 0.43, 0.14, 0.875,
0.66, 0.77, 0.18, 0.29), ncol = 3)
rownames(lung_squ_count2) <- c("DISC1", "TCOF1", "SPPL3")
colnames(lung_squ_count2) <- c("sample1", "sample2", "sample3")
result <- fpkmToTpm(lung_squ_count2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.