Is it possible to controlling for variables in ChAMP or any methylation package
1
1
Entering edit mode
6.1 years ago

Hello all, I have an epic data from one study that I want to use as my control and the other from another study that I want to use as my treatment. I am using ChAMP to identify differentially methylated probes and would like to control for age and race since my data is from two different studies. Is there a way to do this? Thanks --

rna-seq • 1.9k views
ADD COMMENT
1
Entering edit mode
4.4 years ago

Below I'm using the same method champ.DMP uses for DMP but allowing for adjusting covariates

# load in packages
library(dplyr) 
library(tidyr) 
library(ChAMP) 
library(tibble)
library(ChAMPdata)
library(limma)
data(probe.features.epic)
cpg.info = probe.features %>% rownames_to_column("CpG")

# make sure dplyr functions aren't overwritten
select <- dplyr::select; rename <- dplyr::rename; mutate <- dplyr::mutate; 
summarize <- dplyr::summarize; arrange <- dplyr::arrange; filter <- dplyr::filter; slice <- dplyr::slice

# make fake data for demographics dataset
demographics_data = data.frame(Sample_Name = paste0("Sample",1:20), 
                           Sample_Group = sample(c("Normal","Tumor"),size=20,replace=TRUE),
                           age = round(rnorm(20,45,5),0),
                           race = sample(c("White","African American"),size=20,replace=TRUE))

# make fake data for beta matrix 
myNorm = matrix(sample(seq(0.01,1,by=0.001),20*20,replace=FALSE),ncol=20)
rownames(myNorm) = paste0("cg",sample(0:2000000,size=20,replace=FALSE))
colnames(myNorm) = demographics_data$Sample_Name


# HERE YOU SPECIFY PHENOTYPE AND ADJUSTED COVARIATES. 
# FIRST THING AFTER ~ IS PHENOTYPE TO BE COMPARED AND EVERYTHING AFTER ARE ADJUSTED COVARIATES
# in this example we compare Sample_Group (normal vs. tumor) adjusting for race and age
design=model.matrix(~ Sample_Group + race + age, demographics_data)

fit = lmFit(myNorm, design)
fit.e = eBayes(fit)
IV=colnames(fit$coefficients)[2]

# differentially methylated probes
DMP = topTable(fit.e,coef=IV, adjust.method="BH",sort.by = "P", num=Inf) %>%
          rownames_to_column("CpG")%>%
          left_joincpg.info,by="CpG") # add probe info. fake data doesn't have real cpg names so NA
ADD COMMENT
0
Entering edit mode

Is there a reason none of the adjusted p values are significant over 0.05?

ADD REPLY
0
Entering edit mode

Yep in this code example i made the myNorm beta methylation matrix just a random set of numbers for simplicity. You might expect some p values to be <0.05 just by random chance false positives, but very little to none of the adjusted p value should be significant with random values.

ADD REPLY

Login before adding your answer.

Traffic: 2632 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6