I am reading a publication where the authors performed ChIP-seq on a specific TF. Their data was deposited on NCBI in bigwig format. I would like to extract the final list of target genes. Is this possible using the bigwig file or am I going to have to go back to the fastq files and follow their pipeline? I do plenty of RNAseq analysis but haven't done ChIP-seq analysis in maybe 10yrs and I don't remember how I would go about this.
You can use
ChIPpeakAnno::annotatePeakInBatch()
to annotate the peak file to the nearest genes.A bigwig file is a plain pileup of the reads, it is nothing you can use with this function.