Entering edit mode
12 months ago
Tejaswini
•
0
I have generated my peak data through chip sequencing data and I have individual transcription sites coordinates from RNA sequencing data. How to compare the distance between these TSS and peaks, so that I can find the closest TSS to peak and observe if there is any change in transcription between the control and treated?
you may try:
bedtools closest -D a -a my_tss.bed -b my_peaks.bed > result.tsv
Last column will have a distance relative to the TSS. Minus means upstream. You will need to do some filtering based on that