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
cec0e1af
Commit
cec0e1af
authored
15 years ago
by
Nathan Johnson
Browse files
Options
Downloads
Patches
Plain Diff
added affy tidy patch
parent
304738db
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_56_57_b.sql
+22
-0
22 additions, 0 deletions
sql/patch_56_57_b.sql
with
22 additions
and
0 deletions
sql/patch_56_57_b.sql
0 → 100644
+
22
−
0
View file @
cec0e1af
#
patch_56_57_b
.
sql
#
#
title
:
Tidy
old
affy
analyses
#
#
description
:
#
Remove
AffyAlign
and
probe2transcript
from
analysis
&
analysis_description
table
#
Change
unmapped_object
.
type
enum
to
remove
probe2transcript
-- Delete in two parts just in case we don't have an ad entry
DELETE
ad
from
analysis
a
,
analysis_description
ad
where
a
.
logic_name
=
'AffyAlign'
and
a
.
analysis_id
=
ad
.
analysis_id
;
DELETE
ad
from
analysis
a
,
analysis_description
ad
where
a
.
logic_name
=
'probe2transcript'
and
a
.
analysis_id
=
ad
.
analysis_id
;
DELETE
from
analysis
where
logic_name
=
'AffyAlign'
;
DELETE
from
analysis
where
logic_name
=
'probe2transcript'
;
ALTER
table
unmapped_object
modify
type
ENUM
(
'xref'
,
'cDNA'
,
'Marker'
)
NOT
NULL
;
#
patch
identifier
INSERT
INTO
meta
(
species_id
,
meta_key
,
meta_value
)
VALUES
(
NULL
,
'patch'
,
'patch_56_57_b.sql|affy_analysis_tidy'
);
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