Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl
Commits
cec0e1af
Commit
cec0e1af
authored
Oct 27, 2009
by
Nathan Johnson
Browse files
added affy tidy patch
parent
304738db
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
sql/patch_56_57_b.sql
sql/patch_56_57_b.sql
+22
-0
No files found.
sql/patch_56_57_b.sql
0 → 100644
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'
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment