Description Usage Arguments Details Value Note Author(s) References See Also Examples
To avoid the data bias and adapt better data heterogeneity, before tsea.expression.decode() analysis, the raw discrete RPKM value have to normalized to continuous variable meet the normal distribution before t-test.
1 2 | tsea.expression.normalization(query_mat,
correction_factor, normalization = "abundance")
|
query_mat |
a RNA-seq RPKM object, row name should be gene symbol, and column name should be sample name. |
correction_factor |
correction_factor, a gene table object contain genes average expression level and standard variance in GTEx database, can be loaded by data(correction_factor). |
normalization |
normalization methods, c("z-score", "abundance") |
As RNA-Seq samples are often heterogeneous, before in-depth analysis, it is necessary to decode tissue heterogeneity to avoid samples with confounding effects. However, the raw discrete RPKM value have to normalized to continuous variable meet the normal distribution before t-test.
A data frame with normalized RNA-Seq expression profiles.
Rows stand for tissue names and columns stand for sample names.
nothing
Guangsheng Pei
Pei G., Dai Y., Zhao Z., Jia P. (2019) deTS: Tissue-Specific Enrichment Analysis to decode tissue specificity. Bioinformatics, In submission.
https://github.com/bsml320/deTS
1 2 3 4 5 | data(query_GTEx)
query_matrix = query_GTEx[,1:2]
data(correction_factor)
query_mat_zscore_nor = tsea.expression.normalization(query_matrix,
correction_factor, normalization = "z-score")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.