Methread() function problem
1
0
Entering edit mode
22 months ago
Mireia • 0

Hello,

Recently I received methylation call files from my last RRBS and RRoxBS analysis and I would like to analyse them with the Methylkit R package.

I have executed the next script:

WT8_BS <- read_table("T:/RROxBS/WT8_BS/methylcall.CpG.WT8_BS.1x.txt", col_names = FALSE)
KO8_BS <- read_table("T:/RROxBS/KO8_BS/methylcall.CpG.KO8_BS.1x.txt", col_names = FALSE)
WT8_BS <- select(WT8_BS, -X8, -X9)
KO8_BS <- select(KO8_BS, -X8, -X9)

names(WT8_BS) <- c("chrBase", "chr", "base", "strand", "coverage", "freqC", "freqT")
names(KO8_BS) <- c("chrBase", "chr", "base", "strand", "coverage", "freqC", "freqT")

files <- list(WT8_BS, KO8_BS)

WT8 <- methRead(files, 
                sample.id = list("WT8_BS", "KO8_BS"),
                assembly = "mm10",
                treatment = c(0,1),
                context = "CpG",
                dbtype = "tabix",
                dbdir = "methylDB"
                )

My problem is that when I execute the last step it never ends, it remains like the image:

enter image description here

I do not know which could be the problem. I also tried to read the methylation call files and store them as flat file database as it says in mehtylkit manual, but it does not work either.

Thanks in advance!

methylation methread Methylkit • 929 views
ADD COMMENT
1
Entering edit mode
22 months ago
Basti ★ 2.0k

files should be a list of locations instead of imported dataset :

files = list("T:/RROxBS/WT8_BS/methylcall.CpG.WT8_BS.1x.txt","T:/RROxBS/KO8_BS/methylcall.CpG.KO8_BS.1x.txt")
ADD COMMENT
0
Entering edit mode

Thank you! It was the problem!

ADD REPLY

Login before adding your answer.

Traffic: 1778 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