I have the genome coordinates for different transcription factor binding sites (TFBS) and i want to be able to display them relative to their closest gene transcription start site (TSS), e.g. within 10kb. I imagine it might look something like a heatmap.
I was thinking of tinkering with SeqMiner, but does anyone have any specific solutions?
UPDATE: The reason i thought of a heatmap was so i could see if there is a pattern in TFBS distance to TSS (up/downstream)
Why a heat map? You only have 1 dimension (a vector with the distances between each TFBS and its nearest TSS). I would just put these distances into "bins" ([-10kb,-9kb],[-9kb,-8kb],...,[-1kb,0],[0,+1kb]) and make a barplot (distance VS Number_of_TFBS)
Why a heat map? You only have 1 dimension (a vector with the distances of TSSs to their nearest TSS).