I have two GFF files of the same species obtained from different annotation methods, and I want to identify unique genes by comparing both GFF files.
Thank you
I have two GFF files of the same species obtained from different annotation methods, and I want to identify unique genes by comparing both GFF files.
Thank you
extract genes (e.g: awk '($3=="gene") {printf("%s\t%d\t%s\n",$1;int($4)-1,$5);}'
) from both files n sort, and use bedtools intersect with option -f .
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
please, comment or validate the answers to your previous questions: how to extract unique snps in a vcf file by comparing with multiple vcf files ; how to Construct a Newick tree file from five large fasta files ; ....