Entering edit mode
Dear all,
I have a data.frame that looks like this.
bed <- data.frame(chrom=c(rep("Chr1",5)),
chromStart=c(18915152,24199229,73730,81430,89350),
chromEnd=c(18915034,24199347,74684,81550,89768),
strand=c("-","+","+","+","+"))
write.table(bed, "test_xRNA.bed",row.names = F,col.names = F, sep="\t", quote=FALSE)
Created on 2022-07-29 by the [reprex package](https://reprex.tidyverse.org) (v2.0.1)
and I want to convert it into a bed file. I try to do it with the writing.table function, but I fail miserably by taking this error comment when I look at the intersect
Error: unable to open file or unable to determine types for file test_xRNA.bed
- Please ensure that your file is TAB delimited (e.g., cat -t FILE).
- Also ensure that your file has integer chromosome coordinates in the
expected columns (e.g., cols 2 and 3 for BED).
Any ideas of how I can properly convert a data.frame to a .bed file in R?
I have heard about the rtracklayer package, does anyone have an experience with it?
Cross-posted: https://www.biostars.org/p/9532842/
https://www.biostars.org/p/9533072/
Thanks ATpoint, https://www.biostars.org/p/9532842/ penalty kick online is very useful.