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
2cf11cdf
Commit
2cf11cdf
authored
12 years ago
by
Derek Wilson
Browse files
Options
Downloads
Patches
Plain Diff
Initial commit. Written by Mikkel. Mikkel is doing something kinky with source ids.
parent
4f5584b8
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/VBCommunitySynonymParser.pm
+71
-0
71 additions, 0 deletions
...ripts/xref_mapping/XrefParser/VBCommunitySynonymParser.pm
with
71 additions
and
0 deletions
misc-scripts/xref_mapping/XrefParser/VBCommunitySynonymParser.pm
0 → 100644
+
71
−
0
View file @
2cf11cdf
package
XrefParser::
VBCommunitySynonymParser
;
use
strict
;
use
warnings
;
use
Carp
;
use
POSIX
qw(strftime)
;
use
File::
Basename
;
use
base
qw( XrefParser::BaseParser )
;
sub
run
{
my
(
$self
,
$ref_arg
)
=
@_
;
my
$source_id
=
$ref_arg
->
{
source_id
};
my
$species_id
=
$ref_arg
->
{
species_id
};
my
$files
=
$ref_arg
->
{
files
};
my
$release_file
=
$ref_arg
->
{
rel_file
};
my
$verbose
=
$ref_arg
->
{
verbose
};
if
((
!
defined
$source_id
)
or
(
!
defined
$species_id
)
or
(
!
defined
$files
))
{
croak
"
Need to pass source_id, species_id, files and rel_file as pairs
";
}
$verbose
|=
0
;
my
$file
=
@
{
$files
}[
0
];
#The Synonyms are for gene symboles. Therefore using the source_id of symboels
my
$symboel_source_id
;
open
IN
,"
<
","
source_id_file
"
or
die
"
could not open source_id_file
";
while
(
my
$line
=
<
IN
>
){
chomp
$line
;
my
(
$organism_id
,
$source_id
)
=
split
/\t/
,
$line
;
if
(
$organism_id
eq
$species_id
){
$symboel_source_id
=
$source_id
;
}
}
close
IN
;
#my $symboel_source_id = $self->get_source_id_for_source_name("VB_Community_Annotation");
print
"
source_id =
$symboel_source_id
, species=
$species_id
, file =
$file
\n
"
if
$verbose
;
my
$added
=
0
;
my
$count
=
0
;
my
$file_io
=
$self
->
get_filehandle
(
$file
);
if
(
!
defined
$file_io
)
{
print
STDERR
"
ERROR: Could not open file
$file
\n
";
return
1
;
}
while
(
my
$line
=
$file_io
->
getline
()
)
{
next
unless
$line
=~
/^\w+/
;
chomp
$line
;
my
(
$stable_id
,
$synonym
)
=
split
"
\t
",
$line
;
$count
++
;
#Add synonym for an xref given by accession and source_id
$self
->
add_to_syn
(
$stable_id
,
$symboel_source_id
,
$synonym
,
$species_id
);
}
$file_io
->
close
();
print
"
Added
$count
synonyms to synonym for VBCommunitySynonyms
\n
"
if
$verbose
;
return
0
;
}
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