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

transcript counts can now be fetched using transcript_cnt and transcript_acnt

parent 6cd566e8
No related branches found
No related tags found
No related merge requests found
......@@ -1167,7 +1167,7 @@ sub get_transcript_count {
$self->{'transcript_count'} = $transcript_count;
}
if (!defined $self->{'transcript_count'}) {
$self->{'transcript_count'} = $self->_get_count('transcript');
$self->{'transcript_count'} = $self->_get_count('transcript_cnt');
}
return $self->{'transcript_count'};
}
......@@ -1190,7 +1190,7 @@ sub get_alt_transcript_count {
$self->{'alt_transcript_count'} = $alt_transcript_count;
}
if (!defined $self->{'alt_transcript_count'}) {
$self->{'alt_transcript_count'} = $self->_get_count('alt_transcript');
$self->{'alt_transcript_count'} = $self->_get_count('transcript_acnt');
}
return $self->{'alt_transcript_count'};
}
......
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