# Will need to look up translation stable ID from transcript stable ID, build hash table
print"Building transcript stable ID -> translation stable ID lookup table\n";
my%transcript_stable_id_to_translation_stable_id;
my$trans_sth=$self->dbi()->prepare("SELECT tss.stable_id as transcript, tls.stable_id AS translation FROM translation tl, translation_stable_id tls, transcript_stable_id tss WHERE tss.transcript_id=tl.transcript_id AND tl.translation_id=tls.translation_id");