How to convert BED file of ATAC seq to Bigwig file
1
0
Entering edit mode
3.2 years ago

enter image description here

I want to convert such kind of BED file into Bigwig file for visualization on UCSC, and I have tried the "rtracklayer", the error message is as follows:

> library(rtracklayer) #bioconductor
> 
> bed_loaded <- import(con="~/R/GSM3733316_E59_distal_femur_peaks_hg19.bed.gz", format="bed") #no need to unzip .gz
> # bed_loaded <- import.bed(con="~/R/GSM3733316_E59_distal_femur_peaks_hg19.bed.gz")
#if you unzip 
> 
> export.wig(object=bed_loaded, con="~/R/bed2wig.wig") Error in .local(object, con, format, ...) :    The score must be numeric, without any NA's

I just start to use R, could someone help me? Thanks in advance!!

ATAT-seq • 2.4k views
ADD COMMENT
0
1
Entering edit mode
3.2 years ago
ATpoint 82k

This is not possible. Bigwigs are based on BED files with scores which you do not have. You only have peak coordinates. If you want to see a browser track with actual peaks (so the pileup of the reads), then you have to start from the bam files, see for example bamCoverage from deeptools.

ADD COMMENT
0
Entering edit mode

I see, thanks a lot!!

ADD REPLY

Login before adding your answer.

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