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
898d6960
Commit
898d6960
authored
15 years ago
by
Ian Longden
Browse files
Options
Downloads
Patches
Plain Diff
store meta values and set some data in it after parsing
parent
29838034
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
misc-scripts/xref_mapping/XrefParser/BaseParser.pm
+71
-0
71 additions, 0 deletions
misc-scripts/xref_mapping/XrefParser/BaseParser.pm
with
71 additions
and
0 deletions
misc-scripts/xref_mapping/XrefParser/BaseParser.pm
+
71
−
0
View file @
898d6960
...
...
@@ -1286,6 +1286,17 @@ sub upload_direct_xrefs{
}
}
sub
add_meta_pair
{
my
(
$self
,
$key
,
$value
)
=
@_
;
my
$dbi
=
dbi
();
my
$sth
=
$dbi
->
prepare
('
insert into meta (meta_key, meta_value, date) values("
'
.
$key
.
'
", "
'
.
$value
.
'
", now())
');
$sth
->
execute
;
$sth
->
finish
;
}
# --------------------------------------------------------------------------------
...
...
@@ -1306,6 +1317,7 @@ sub get_dependent_xref_sources {
my
$source_id
=
$row
[
1
];
$dependent_sources
{
$source_name
}
=
$source_id
;
}
$sth
->
finish
;
}
return
%dependent_sources
;
...
...
@@ -2296,6 +2308,65 @@ SYN
}
#
# Store data needed to beable to revert to same stage as after parsing
#
sub
parsing_finished_store_data
{
my
$self
=
shift
;
# Store max id for
# gene/transcript/translation_direct_xref general_xref_id #Does this change??
# xref xref_id
# dependent_xref object_xref_id is all null
# go_xref object_xref_id
# object_xref object_xref_id
# identity_xref object_xref_id
my
%table_and_key
=
('
xref
'
=>
"
xref_id
",
'
object_xref
'
=>
"
object_xref_id
");
my
$dbi
=
$self
->
dbi
();
foreach
my
$table
(
keys
%table_and_key
){
print
"
select MAX(
"
.
$table_and_key
{
$table
}
.
"
) from
$table
\n
";
my
$sth
=
$dbi
->
prepare
("
select MAX(
"
.
$table_and_key
{
$table
}
.
"
) from
$table
");
$sth
->
execute
;
my
$max_val
;
$sth
->
bind_columns
(
\
$max_val
);
$sth
->
fetch
;
$self
->
add_meta_pair
("
PARSED_
"
.
$table_and_key
{
$table
},
$max_val
);
$sth
->
finish
;
}
}
sub
reset_to_just_parsed
{
my
$self
=
shift
;
# for dependent_xref set object_xref_id to NULL
# delete all from gene_transcript_translation, gene/transcript/translation_stable_id, object_xref, identity_xref, go_xref
# delete from xref where xref_id > MAX
# set process_status to "parsing_finished"
}
sub
reset_to_mapping_finished
{
my
$self
=
shift
;
$self
->
reset_to_parsed
();
#set process_status to "mapping_finished"
}
# --------------------------------------------------------------------------------
1
;
...
...
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