Skip to content
Snippets Groups Projects
Commit 665249a9 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Nope, those TODOs were wrong... Need to filter the parsed result.

parent 4973c513
No related branches found
No related tags found
No related merge requests found
......@@ -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.
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment