Hello everyone, I am a beginner in bioinformatics, and asking for help. I got a .bed file generated from segemehl software, there is chr name and splice site (two coordinates) and other information, now I want to add gene description (or just gene name) to each splice event (back-splice), is there any software or command can I use to achieve the goal? many thanks!
Have a look at
bedtools intersect
(or maybebedtools closest
), there's likely an option to have it print the whole line when you intersect the BED file with the GFF/GTF file describing your organism.thanks for your help, I will try to learn the usage of bedtools:)