Skip to content
Snippets Groups Projects
Commit c75f8546 authored by Magali Ruffier's avatar Magali Ruffier
Browse files

ENSCORESW-62: updated call to mapped_transcript

was giving it an exon mapping list where a transcript mapping list was required
parent 593f110b
No related branches found
No related tags found
No related merge requests found
......@@ -317,7 +317,7 @@ sub map_exons {
#
foreach my $plugin (@plugins) {
($exon_scores, $new_mappings) = $self->delegate_to_plugin($plugin, $i++,
$esb, $new_mappings, $exon_scores);
$esb, $new_mappings, $exon_scores, $transcript_mappings);
push(@mappings, $new_mappings);
}
......@@ -642,6 +642,7 @@ sub write_ambiguous {
print $fh "\n " unless (($i++)%10);
print $fh $e->$other_db_type, ", ";
}
print $fh "\n";
}
print $fh "\n";
......
......@@ -64,6 +64,7 @@ sub init_basic {
#
# reduce score for mappings of exons which do not belong to mapped
# transcripts
# (ie where source exon transcript does not map target exon transcript)
#
sub mapped_transcript {
my $self = shift;
......@@ -71,11 +72,12 @@ sub mapped_transcript {
my $esb = shift;
my $mappings = shift;
my $exon_scores = shift;
my $transcript_mappings = shift;
$self->logger->info("Exons in mapped transcript...\n", 0, 'stamped');
unless ($exon_scores->loaded) {
$esb->non_mapped_transcript_rescore($exon_scores, $mappings);
$esb->non_mapped_transcript_rescore($exon_scores, $transcript_mappings);
$exon_scores->write_to_file;
}
......
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