Skip to content
Snippets Groups Projects
Commit 3dc0ccbe authored by Arne Stabenau's avatar Arne Stabenau
Browse files

added exon_count and transcript_count

parent dd09948c
No related branches found
No related tags found
No related merge requests found
......@@ -322,7 +322,8 @@ CREATE TABLE gene (
gene_id int unsigned not null auto_increment,
type VARCHAR(40) not null,
analysis_id int,
transcript_count int not null,
PRIMARY KEY (gene_id)
);
......@@ -413,7 +414,8 @@ CREATE TABLE transcript (
transcript_id INT UNSIGNED NOT NULL auto_increment,
gene_id INT UNSIGNED NOT NULL, # foreign key gene:gene_id
translation_id INT UNSIGNED NOT NULL, # foreign key translation:translation_id
exon_count int not null,
PRIMARY KEY (transcript_id),
KEY gene_index (gene_id),
KEY translation_index ( translation_id )
......
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