No, that's not the output from bowtie2 (if someone told you that, they were wrong), it's the output from bsmooth's methylation extractor (or at least it looks like it). The aligner that you tell bsmooth to use has no effect on the formatting of the methylation file.
Unconfigured Ad
Collapse
X
-
I'll also add that after a bit of checking/memory refreshing, the format you posted isn't from bsmooth but is similar to bedGraph format, just with the strand column removed. Adding a strand (e.g., awk 'BEGIN{OFS="\t"}{print $1,$2,$3,".",$4,$5}' somefile > somefile.bedGraph) should allow you to use bedGraph2BSseq.py from bison. The instructions for loading the resulting files into R are in the README.md file.
Comment
-
-
Well, you end up just reading the file into a dataframe, adding a column of "." and writing to a new file in a different order:
Or something like that. Having said that, perhaps you're lucky and the positions covered in each of the three files are the same. Then you just skip all of that with something like:Code:d <- read.table("somefile", header=F) d$strand = "." write.table(d[,c(1,2,5,3,4)], file="somefile.new", row.names=F, colnames=F)
or something like that. I've not tested any of that, but it should give you the idea.Code:library(bsseq) files<- c("sample1.file", "sample2.file", "sample3.file") fl <- lapply(files, function(x) read.delim(x, header=F)) gr <- GRanges(seqnames=Rle(fl[[1]][,1]), ranges=IRanges(start=fl[[1]][,2], end=fl[[1]][,3]), strand=Rle("*", nrow(fl[[1]]))) M <- sapply(fl, function(x) x$[,3]) Cov <- sapply(fl, function(x) x$[,4]) groups = data.frame(row.names=files, condition=c("WT","Mut","Mut")) BS <- BSseq(M=M, Cov=Cov, gr=gr, pData=groups, samplesNames=samples)
Given your apparent newness to R, you might want to take a local course before continuing.
Comment
-
-
thank you very much for your help, I´m just starting with R but right now I´m not able to take any course, I will do it during Christmas vacation when I have more time... but I´m pushed to finish this before...
thank you very much again for stealing your time
Comment
-
-
I run without errors the code that you wrote me for inserting the column but the output is this:
chr1 564495 1 564496 1
chr1 564501 1 564502 1
chr1 565013 1 565014 1
chr1 565040 1 565041 1
chr1 565262 8 565263 0
chr1 565397 5 565398 1
chr1 565469 2 565470 2
the columns are not tabulated (all the data in the same column), the "." column is not there and the others are not sorted
Comment
-
Latest Articles
Collapse
-
by mylaserKheloyar – Everything You Need to Know About Kheloyaar Login and Kheoyar Id
If you are looking for an online gaming platform that offers a user-friendly experience, Kheloyar has become a name that many users search for. Whether you're interested in creating a new account, accessing your dashboard through Kheloyaar Login, or learning how to obtain a Kheoyar Id, understanding the platform's features and account process is essential.
This guide explains everything you need to know about...-
Channel: Articles
Yesterday, 01:13 AM -
-
by SEQadmin2
Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
...-
Channel: Articles
07-09-2026, 11:10 AM -
-
by SEQadmin2
Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.
There is no single reason why many patients don’t respond to treatment as expected. Cancer is...-
Channel: Articles
07-08-2026, 05:17 AM -
ad_right_rmr
Collapse
News
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SEQadmin2, 07-09-2026, 10:04 AM
|
0 responses
19 views
0 reactions
|
Last Post
by SEQadmin2
07-09-2026, 10:04 AM
|
||
|
Started by SEQadmin2, 07-08-2026, 10:08 AM
|
0 responses
11 views
0 reactions
|
Last Post
by SEQadmin2
07-08-2026, 10:08 AM
|
||
|
Started by SEQadmin2, 07-07-2026, 11:05 AM
|
0 responses
27 views
0 reactions
|
Last Post
by SEQadmin2
07-07-2026, 11:05 AM
|
||
|
Started by SEQadmin2, 07-02-2026, 11:08 AM
|
0 responses
31 views
0 reactions
|
Last Post
by SEQadmin2
07-02-2026, 11:08 AM
|
Comment