View source: R/fpkm_count_conversion.r
countToFpkm | R Documentation |
Convert count to FPKM
countToFpkm(counts_matrix, keyType = "SYMBOL", gene_cov)
counts_matrix |
a matrix, colnames of counts_matrix are sample name, rownames of counts_matrix are gene symbols |
keyType |
keyType, one of keytypes(org.Hs.eg.db). |
gene_cov |
data.frame of two column, the first column is gene length, the second column is gene GC content |
a matrix
data(gene_cov)
lung_squ_count2 <- matrix(c(1, 2, 3, 4, 5, 6, 7, 8, 9), ncol = 3)
rownames(lung_squ_count2) <- c("DISC1", "TCOF1", "SPPL3")
colnames(lung_squ_count2) <- c("sample1", "sample2", "sample3")
result <- countToFpkm(lung_squ_count2,
keyType = "SYMBOL",
gene_cov = gene_cov
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.