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
9dda83a5
Commit
9dda83a5
authored
20 years ago
by
Ian Longden
Browse files
Options
Downloads
Patches
Plain Diff
add method to access xref obj instead of passing it around all over the place
parent
41c621f9
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/XrefMapper/BasicMapper.pm
+18
-9
18 additions, 9 deletions
misc-scripts/xref_mapping/XrefMapper/BasicMapper.pm
with
18 additions
and
9 deletions
misc-scripts/xref_mapping/XrefMapper/BasicMapper.pm
+
18
−
9
View file @
9dda83a5
...
...
@@ -47,8 +47,8 @@ Post questions to the EnsEMBL development list ensembl-dev@ebi.ac.uk
sub
dump_seqs
{
my
(
$self
,
$xref
)
=
@_
;
$self
->
dump_xref
(
$xref
);
my
(
$self
)
=
@_
;
$self
->
dump_xref
();
$self
->
dump_ensembl
();
}
...
...
@@ -66,7 +66,7 @@ sub dump_seqs{
=cut
sub
run_matching
{
my
(
$self
,
$xref
)
=
@_
;
my
(
$self
)
=
@_
;
my
@list
=
();
...
...
@@ -74,12 +74,12 @@ sub run_matching{
foreach
my
$method
(
@
{
$self
->
method
()}){
my
@dna
=
();
push
@dna
,
$method
;
push
@dna
,
$xref
->
dir
.
"
/xref_
"
.
$i
.
"
_dna.fasta
";
push
@dna
,
$
self
->
xref
->
dir
.
"
/xref_
"
.
$i
.
"
_dna.fasta
";
push
@dna
,
$self
->
ensembl_dna_file
();
push
@list
,
\
@dna
;
my
@pep
=
();
push
@pep
,
$method
;
push
@pep
,
$xref
->
dir
.
"
/xref_
"
.
$i
.
"
_prot.fasta
";
push
@pep
,
$
self
->
xref
->
dir
.
"
/xref_
"
.
$i
.
"
_prot.fasta
";
push
@pep
,
$self
->
ensembl_protein_file
();
push
@list
,
\
@pep
;
$i
++
;
...
...
@@ -205,8 +205,9 @@ sub get_source_id_from_source_name{
=cut
sub
dump_xref
{
my
(
$self
,
$xref
)
=
@_
;
my
(
$self
)
=
@_
;
my
$xref
=
$self
->
xref
();
if
(
!
defined
(
$xref
->
dir
())){
if
(
defined
(
$self
->
dir
)){
$xref
->
species
(
$self
->
dir
);
...
...
@@ -540,6 +541,14 @@ sub method{
}
sub
xref
{
my
(
$self
,
$arg
)
=
@_
;
(
defined
$arg
)
&&
(
$self
->
{
_xref
}
=
$arg
);
return
$self
->
{
_xref
};
}
=head2 run_mapping
Arg[1] : List of lists of (method, query, target)
...
...
@@ -732,7 +741,7 @@ sub store {
print
"
Read
$total_lines
lines from
$total_files
exonerate output files
\n
";
# write relevant xrefs to file
$self
->
dump_xrefs
(
$xref
,
\
%primary_xref_ids
);
$self
->
dump_xrefs
(
\
%primary_xref_ids
);
}
...
...
@@ -798,13 +807,13 @@ sub get_analysis_id {
sub
dump_xrefs
{
my
(
$self
,
$xref
,
$xref_ids_hashref
)
=
@_
;
my
(
$self
,
$xref_ids_hashref
)
=
@_
;
my
@xref_ids
=
keys
%$xref_ids_hashref
;
open
(
XREF
,
"
>xref.txt
");
# TODO - get this from config
my
$xref_dbi
=
$xref
->
dbi
();
my
$xref_dbi
=
$
self
->
xref
()
->
dbi
();
my
$core_dbi
=
$self
->
dbi
();
...
...
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