maelstRom_ADChromplot.Rd
maelstRom_ADChromplot
returns various ggplot-objects visualizing maelstRom's differential allelic divergence results across a chromosome,
together with differential expression logFC which can be determined using the same RNAseq data, as well as (optionally) methylation- and copy-number-alteration-data if available.
All of this data should be supplied as separate dataframes, which enables plotting even when some of this data is missing for some of the loci or genes.
maelstRom_ADChromplot(
AD_Data,
DE_Data,
Meth_Data = NULL,
CNAgain_Data = NULL,
CNAloss_Data = NULL,
pvalSIG = 0.05,
roll_median = 15
)
Dataframe. Should at least contain chromosomal position ("pos"), overdispersion in controls and cases expressed as rho which lies between 0 and 1 ("rho_control", "rho_case") and the p-value testing for differential allelic divergence (difference in overdispersion parameter between controls and cases; "pval")
Dataframe. Should at least contain chromosomal position ("pos") and the log(2)FC of expression between cases and controls ("logFC")
Dataframe. Optional; should at least contain chromosomal position ("pos") and the p-value testing for case hypermethylation ("logFC")
Dataframe. Optional; should at least contain chromosomal position ("pos") and the average gain in cases ("CNAgain")
Dataframe. Optional; should at least contain chromosomal position ("pos") and the average loss in cases ("CNAloss")
Number. Significance cutoff of provided p-values (these should be FDR-corrected in advance)
integer. All measures are plotted as rolling medians across roll_median
data points.
Number. Allele frequency.
A list containing the following components:
A plot vizualizing Allelic Divergence and Differential Expression results.
A plot vizualizing hypermethylation and copy-number-alteration results.
Various legend items, to be combined with ADDE_plot
and MethCNA_plot
if the user so desires, e.g. using the patchwork
package.