@desc Relates transcript IDs in this release to release-independent stable identifiers.
@column transcript_id Primary key, internal identifier. Foreign key references to the @link transcript table.
@column stable_id Stable identifier.
@column version Version number.
@column created_date Date created.
@column modified_date Date modified.
@see transcript
@see stable_id
*/
CREATETABLEtranscript_stable_id(
transcript_idINT(10)UNSIGNEDNOTNULL,
stable_idVARCHAR(128)NOTNULL,
versionINT(10)NOTNULLDEFAULT1,
created_dateDATETIMENOTNULL,
modified_dateDATETIMENOTNULL,
PRIMARYKEY(transcript_id),
KEYstable_id_idx(stable_id,version)
)COLLATE=latin1_swedish_ciENGINE=MyISAM;
/**
@table translation
@desc Describes which parts of which exons are used in translation. The seq_start and seq_end columns are 1-based offsets into the relative coordinate system of start_exon_id and end_exon_id. i.e, if the translation starts at the first base of the exon, seq_start would be 1. Transcripts are related to translations by the transcript_id key in this table.