I have been trying to interpret the output produced by the "intersectBed" tool from the BEDTools suite. I could not find any documentation related to interpreting the output.
While the first 3 columns describe the chromosome number, the start and the stop co-ordinates, I am unable to figure out what the rest of the numbers mean.
I'd like to know more about the score in the 5th column (ranging from 0 to 1000). Is that a score for the overlap between the two bed files ?
I intend to "rank order" the intersecting regions from the two bed files for my analysis to find out the regions with the most significant intersections.
Can I simply use the score to rank order the regions ? For instance, all the regions with a score of 1000 are more significant than those with a score less than 1000.
Cross-posted here.
What do file1.bed and file2.bed look like?
Hello Aaron, Both input bed files just have the chromosome number, start and stop co-ordinates. i.e
chr start stop
Hello Aaron, Both input bed files are just tab delimited files containing the chromosome number, start and stop coordinates.
try 'intersectBed -a file1.bed -b file2.bed -wa -wb'. It'll give you the overlapping entries of both files
Hello Aaron,
I'd like to know more about the score in the 5th column (ranging from 0 to 1000). Is that a score for the overlap between the two bed files ?
I intend to "rank order" the intersecting regions from the two bed files for my analysis to find out the regions with the most significant intersections.
Can I simply use the score to rank order the regions ? For instance, all the regions with a score of 1000 are more significant than those with a score less than 1000.