compare_samples {MethTargetedNGS}R Documentation

Complete Methylation Analysis of Next Generation Sequencing Data

Description

This function perform complete methylation analysis of the data.

1. Visualize methylation pattern

2. Calculate methylation average

3. Calculate methylation entropy

4. Perform fisher exact test on the samples to identify significant CpG sites.

Usage

compare_samples(healthy, tumor)

Arguments

healthy

: Output Matrix from methAlign

tumor

: Output Matrix from methAlign

Value

Generate a plot of Methylation Average, Methylation Entropy, Fisher Exact Test and Log Odd Ratio

Note

This function needs time to process depending on the number of sequences in fasta file

Author(s)

Muhammad Ahmer Jamil, Prof. Holger Frohlich, Priv.-Doz. Dr. Osman El-Maarri

Maintainer: Muhammad Ahmer Jamil engr.ahmerjamil@gmail.com

See Also

methAlign, methAvg, methEntropy, odd_ratio, fishertest_cpg,

Examples

healthy = system.file("extdata", "Healthy.fasta", package = "MethTargetedNGS")
tumor = system.file("extdata", "Tumor.fasta", package = "MethTargetedNGS")
reference =  system.file("extdata", "Reference.fasta", package = "MethTargetedNGS")

healthy = methAlign(healthy,reference)
tumor = methAlign(tumor,reference)
compare_samples(healthy,tumor)

[Package MethTargetedNGS version 1.12.0 Index]