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
945f7b3d
Commit
945f7b3d
authored
17 years ago
by
Ian Longden
Browse files
Options
Downloads
Patches
Plain Diff
patches
parent
cfb6fbb5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sql/patch_48_49_b.sql
+11
-0
11 additions, 0 deletions
sql/patch_48_49_b.sql
sql/patch_48_49_c.sql
+25
-0
25 additions, 0 deletions
sql/patch_48_49_c.sql
with
36 additions
and
0 deletions
sql/patch_48_49_b.sql
0 → 100644
+
11
−
0
View file @
945f7b3d
#
patch_48_49_b
.
sql
#
#
title
:
new
canonical
transcript
column
n
gene
table
#
#
description
:
#
Add
canonical_transcript
column
to
gene
table
ALTER
TABLE
gene
ADD
COLUMN
canonical_transcript
INT
(
10
)
UNSIGNED
;
#
patch
identifier
INSERT
INTO
meta
(
meta_key
,
meta_value
)
VALUES
(
'patch'
,
'patch_48_49_b.sql|new_canonical_transcript_column'
);
This diff is collapsed.
Click to expand it.
sql/patch_48_49_c.sql
0 → 100644
+
25
−
0
View file @
945f7b3d
#
patch_48_49_c
.
sql
#
#
title
:
regulatory_support_removal
#
#
description
:
#
regulatory
tables
to
be
removed
from
database
(
now
done
by
func
gen
)
DELETE
object_xref
FROM
object_xref
where
ensembl_object_type
=
"regulatory_factor"
;
DELETE
object_xref
FROM
object_xref
where
ensembl_object_type
=
"regulatory_feature"
;
ALTER
TABLE
object_xref
CHANGE
COLUMN
ensembl_object_type
ensembl_object_type
ENUM
(
'RawContig'
,
'Transcript'
,
'Gene'
,
'Translation'
);
DROP
TABLE
regulatory_factor
;
DROP
TABLE
regulatory_factor_coding
;
DROP
TABLE
regulatory_feature
;
DROP
TABLE
regulatory_feature_object
;
DROP
TABLE
regulatory_search_region
;
#
patch
identifier
INSERT
INTO
meta
(
meta_key
,
meta_value
)
VALUES
(
'patch'
,
'patch_48_49_c.sql|regulatory_support_removal'
);
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