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
b0d25395
Commit
b0d25395
authored
23 years ago
by
James Gilbert
Browse files
Options
Downloads
Patches
Plain Diff
renamed repeat table -> repeat_consensus
parent
ac84b385
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.clean
+3
-3
3 additions, 3 deletions
sql/table.clean
with
3 additions
and
3 deletions
sql/table.clean
+
3
−
3
View file @
b0d25395
...
...
@@ -283,7 +283,7 @@ CREATE TABLE dna_align_feature (
) max_rows=300000000 avg_row_length=80;
CREATE TABLE repeat (
CREATE TABLE repeat
_consensus
(
repeat_id int unsigned NOT NULL auto_increment,
repeat_name varchar(255) NOT NULL,
repeat_class varchar(40) NOT NULL, # eg: SINE, LINE, DNA Transposon,
...
...
@@ -295,12 +295,12 @@ CREATE TABLE repeat (
CREATE TABLE repeat_feature (
repeat_feature_id int unsigned
not null
auto_increment,
repeat_feature_id int unsigned
NOT NULL
auto_increment,
contig_id int(10) unsigned NOT NULL,
contig_start int(10) unsigned NOT NULL,
contig_end int(10) unsigned NOT NULL,
contig_strand tinyint(1) DEFAULT '1' NOT NULL,
analysis_id int(10) unsigned NOT NULL,
orientation tinyint(1) DEFAULT '1' NOT NULL, # 1 positive oriented 0 not oriented -1 negative oriented
repeat_start int(10) NOT NULL,
repeat_end int(10) NOT NULL,
repeat_id int(10) unsigned NOT NULL,
...
...
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