diff --git a/modules/Bio/EnsEMBL/IdMapping/ExonScoreBuilder.pm b/modules/Bio/EnsEMBL/IdMapping/ExonScoreBuilder.pm index fd7215e73e2707f41262539c513c08fa977f42ae..86063816f2cde9792ada56a41546c54622e27f5a 100644 --- a/modules/Bio/EnsEMBL/IdMapping/ExonScoreBuilder.pm +++ b/modules/Bio/EnsEMBL/IdMapping/ExonScoreBuilder.pm @@ -583,9 +583,6 @@ sub write_filtered_exons { if ( $matrix->get_score( $eid, $target ) > 0.9999 ) { next EXON; } - - # TODO: Get target exon from cache and skip or penalise if on - # different seq_region from $exon. } } else { foreach my $source ( @{ $matrix->get_sources_for_target($eid) } ) @@ -593,9 +590,6 @@ sub write_filtered_exons { if ( $matrix->get_score( $source, $eid ) > 0.9999 ) { next EXON; } - - # TODO: Get source exon from cache and skip or penalise if on - # different seq_region from $exon. } }