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

Bug fix from user Alison on dev@ensembl.org

parent c2711000
No related branches found
No related tags found
No related merge requests found
......@@ -117,7 +117,8 @@ sub fetch_all_alternative_by_Transcript {
. "FROM translation tl "
. "LEFT JOIN translation_stable_id tlsi "
. "ON (tlsi.translation_id = tl.translation_id) "
. "JOIN transcript t USING (transcript_id) "
. "JOIN transcript t "
. "ON (t.transcript_id = tl.transcript_id) "
. "WHERE tl.transcript_id = ? "
. "AND tl.translation_id != t.canonical_translation_id",
$lsi_created_date, $lsi_modified_date );
......
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