zellerlab / GECCO

GEne Cluster prediction with COnditional random fields.
https://gecco.embl.de
GNU General Public License v3.0
54 stars 7 forks source link

Fixed how overlapping genes are identified during training #15

Closed lmc297 closed 6 months ago

lmc297 commented 6 months ago

Changed _mixins.py to fix how overlapping genes are identified during training.

Previous method:

cluster_start <= gene.start and gene.end <= cluster_end

Proposed method:

cluster_start <= gene.end and gene.start <= cluster_end
althonos commented 6 months ago

:fr: :handshake: :us: