Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl
Commits
2e9c3339
Commit
2e9c3339
authored
19 years ago
by
Patrick Meidl
Browse files
Options
Downloads
Patches
Plain Diff
fixed typo
parent
c3724071
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sql/table.sql
+9
-9
9 additions, 9 deletions
sql/table.sql
with
9 additions
and
9 deletions
sql/table.sql
+
9
−
9
View file @
2e9c3339
...
...
@@ -27,7 +27,7 @@ CREATE TABLE oligo_feature (
seq_region_strand
TINYINT
NOT
NULL
,
mismatches
TINYINT
,
oligo_probe_id
INT
NOT
NULL
,
analysis_id
INT
NOT
NULL
,
analysis_id
INT
(
10
)
UNSIGNED
NOT
NULL
,
PRIMARY
KEY
(
oligo_feature_id
),
KEY
seq_region_idx
(
seq_region_id
,
seq_region_start
),
...
...
@@ -402,7 +402,7 @@ CREATE TABLE gene (
gene_id
INT
UNSIGNED
NOT
NULL
AUTO_INCREMENT
,
biotype
VARCHAR
(
40
)
NOT
NULL
,
analysis_id
INT
,
analysis_id
INT
(
10
)
UNSIGNED
NOT
NULL
,
seq_region_id
INT
(
10
)
UNSIGNED
NOT
NULL
,
seq_region_start
INT
(
10
)
UNSIGNED
NOT
NULL
,
seq_region_end
INT
(
10
)
UNSIGNED
NOT
NULL
,
...
...
@@ -696,7 +696,7 @@ CREATE TABLE identity_xref(
score
DOUBLE
,
evalue
DOUBLE
,
analysis_id
INT
,
analysis_id
INT
(
10
)
UNSIGNED
NOT
NULL
,
PRIMARY
KEY
(
object_xref_id
),
KEY
analysis_idx
(
analysis_id
)
...
...
@@ -821,7 +821,7 @@ CREATE TABLE prediction_transcript (
seq_region_start
INT
UNSIGNED
NOT
NULL
,
seq_region_end
INT
UNSIGNED
NOT
NULL
,
seq_region_strand
TINYINT
NOT
NULL
,
analysis_id
INT
,
analysis_id
INT
(
10
)
UNSIGNED
NOT
NULL
,
display_label
VARCHAR
(
255
),
PRIMARY
KEY
(
prediction_transcript_id
),
...
...
@@ -1151,7 +1151,7 @@ CREATE TABLE qtl_feature (
seq_region_start
INT
NOT
NULL
,
seq_region_end
INT
NOT
NULL
,
qtl_id
INT
NOT
NULL
,
analysis_id
INT
NOT
NULL
,
analysis_id
INT
(
10
)
UNSIGNED
NOT
NULL
,
KEY
(
qtl_id
),
KEY
loc_idx
(
seq_region_id
,
seq_region_start
),
...
...
@@ -1174,7 +1174,7 @@ CREATE TABLE mapping_session (
new_release
VARCHAR
(
5
)
NOT
NULL
DEFAULT
''
,
old_assembly
VARCHAR
(
20
)
NOT
NULL
DEFAULT
''
,
new_assembly
VARCHAR
(
20
)
NOT
NULL
DEFAULT
''
,
created
_date
DATETIME
NOT
NULL
,
created
DATETIME
NOT
NULL
,
PRIMARY
KEY
(
mapping_session_id
)
...
...
@@ -1352,7 +1352,7 @@ CREATE TABLE density_feature (
CREATE
TABLE
density_type
(
density_type_id
INT
NOT
NULL
AUTO_INCREMENT
,
analysis_id
INT
NOT
NULL
,
analysis_id
INT
(
10
)
UNSIGNED
NOT
NULL
,
block_size
INT
NOT
NULL
,
region_features
INT
NOT
NULL
,
value_type
ENUM
(
'sum'
,
'ratio'
)
NOT
NULL
,
...
...
@@ -1377,7 +1377,7 @@ CREATE TABLE regulatory_feature (
seq_region_start
INT
NOT
NULL
,
seq_region_end
INT
NOT
NULL
,
seq_region_strand
TINYINT
NOT
NULL
,
analysis_id
INT
NOT
NULL
,
analysis_id
INT
(
10
)
UNSIGNED
NOT
NULL
,
regulatory_factor_id
INT
,
PRIMARY
KEY
(
regulatory_feature_id
),
...
...
@@ -1460,7 +1460,7 @@ CREATE TABLE regulatory_search_region (
ensembl_object_type
ENUM
(
'Transcript'
,
'Translation'
,
'Gene'
)
NOT
NULL
,
ensembl_object_id
INT
,
#
FK
to
gene
/
transcript
/
translation
analysis_id
INT
NOT
NULL
,
analysis_id
INT
(
10
)
UNSIGNED
NOT
NULL
,
PRIMARY
KEY
(
regulatory_search_region_id
),
KEY
rsr_idx
(
regulatory_search_region_id
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment