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
e4934c3d
Commit
e4934c3d
authored
18 years ago
by
Glenn Proctor
Browse files
Options
Downloads
Patches
Plain Diff
Patch to add ditag and ditag_feature tables.
parent
215e961d
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/patch_39_40_g.sql
+44
-0
44 additions, 0 deletions
sql/patch_39_40_g.sql
with
44 additions
and
0 deletions
sql/patch_39_40_g.sql
0 → 100644
+
44
−
0
View file @
e4934c3d
#
patch_39_40_g
#
#
title
:
add
ditag
tables
#
#
description
:
#
This
patch
adds
two
new
tables
,
ditag
and
ditag_feature
CREATE
TABLE
ditag
(
ditag_id
INT
NOT
NULL
auto_increment
,
name
VARCHAR
(
30
),
type
VARCHAR
(
30
),
tag_count
smallint
(
6
)
default
1
,
sequence
TEXT
,
PRIMARY
KEY
(
ditag_id
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
;
CREATE
TABLE
ditag_feature
(
ditag_feature_id
int
(
10
)
unsigned
NOT
NULL
auto_increment
,
ditag_id
int
(
10
)
unsigned
NOT
NULL
default
'0'
,
ditag_pair_id
int
(
10
)
unsigned
NOT
NULL
default
'0'
,
seq_region_id
int
(
10
)
unsigned
NOT
NULL
default
'0'
,
seq_region_start
int
(
10
)
unsigned
NOT
NULL
default
'0'
,
seq_region_end
int
(
10
)
unsigned
NOT
NULL
default
'0'
,
seq_region_strand
tinyint
(
1
)
NOT
NULL
default
'0'
,
analysis_id
int
(
10
)
unsigned
NOT
NULL
default
'0'
,
hit_start
int
(
10
)
unsigned
NOT
NULL
default
'0'
,
hit_end
int
(
10
)
unsigned
NOT
NULL
default
'0'
,
hit_strand
tinyint
(
1
)
NOT
NULL
default
'0'
,
cigar_line
text
default
''
,
ditag_side
char
default
''
,
PRIMARY
KEY
(
ditag_feature_id
),
KEY
(
ditag_id
),
KEY
(
ditag_pair_id
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
;
#
patch
identifier
INSERT
INTO
meta
(
meta_key
,
meta_value
)
VALUES
(
'patch'
,
'patch_39_40_g.sql|add_ditag_tables'
);
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