This function generates box plots to compare the RNA ratios between EIF4F genes in tumors tumors vs adjacent normal tissues across TCGA cancer types, and a violin plot to compare RNA ratios in primary, metastatic tumors vs adjacent normal tissues from all TCGA cancer types combined.
.plot_boxgraph_RNAratio_TCGA(
gene01,
gene02,
gene03,
gene04,
gene05,
gene06,
gene07,
gene08,
gene09,
gene10
)
gene name as a string
gene name as a string
gene name as a string
gene name as a string
gene name as a string
gene name as a string
gene name as a string
gene name as a string
gene name as a string
gene name as a string
This function
calculates RNA ratio across individual tumor types from all cancers with
the function .RNAratio_calculation()
,
selects the ratio data with .RNAratio_selection()
and make boxplot with
.RNAratio_boxplot()
.
compares RNA ratio in primary, metastatic tumors vs adjacent
normal tissues from all TCGA cancer types combined with the function
.RNAratio_tumortype()
and plots with .violinplot()
.
This function is not accessible to the user and will not show at the users'
workspace. It can only be called by the exported EIF4F_DEG_analysis()
function.
Side effects:
(1) box plots on screen and as pdf file to show differential RNA ratios in tumors vs NATs in TCGA cancer type
(2) violin plots on screen and as pdf file to show differential gene ratios in primary, metastatic tumors vs adjacent normal tissues from all combined TCGA cancer types
if (FALSE) {
.plot_boxgraph_RNAratio_TCGA(
EIF4E = "EIF4E", EIF4E2 = "EIF4E2",
EIF4E3 = "EIF4E3", EIF4EBP1 = "EIF4EBP1", EIF4G1 = "EIF4G1", EIF4G2 = "EIF4G2",
EIF4G3 = "EIF4G3", EIF3D = "EIF3D", EIF4A1 = "EIF4A1", EIF4A2 = "EIF4A2"
)
}