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
54966aa4
Commit
54966aa4
authored
18 years ago
by
Karyn Megy
Browse files
Options
Downloads
Patches
Plain Diff
New parser for AedesGenBank xrefs
parent
4423fda6
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/AedesGenBankParser.pm
+95
-0
95 additions, 0 deletions
misc-scripts/xref_mapping/XrefParser/AedesGenBankParser.pm
with
95 additions
and
0 deletions
misc-scripts/xref_mapping/XrefParser/AedesGenBankParser.pm
0 → 100644
+
95
−
0
View file @
54966aa4
package
XrefParser::
AedesGenBankParser
;
use
strict
;
use
File::
Basename
;
use
XrefParser::
BaseParser
;
use
vars
qw(@ISA)
;
@ISA
=
qw(XrefParser::BaseParser)
;
#Aedes GenBank protein - because not yet in UniProt
#>EAT48991.1
#MGKSKAHRIKGLTGPKMSLGDQITEGRVSKKPKAPKIRLRAEEEEFVDSRTTKKILQQAR
#KQQAELNLLDDSFGPSLAESAAAASVGKRRHRLGDAASSDESDEEYREEADVDGQDFFDD
#IKINEEDERALEMFQNKDGVKTRTLADLIMDKITEKQTEIQTQFSDTGSLKMEEIDPRVR
sub
run
{
my
(
$self
,
$file
,
$source_id
,
$species_id
)
=
@_
;
my
$cpt
=
0
;
next
if
(
/^File:/
);
# skip header
my
@xrefs
;
local
$/
=
"
\n
>
";
if
(
!
open
(
FILE
,"
<
"
.
$file
)){
print
"
Could not open
$file
\n
";
return
1
;
}
while
(
<
FILE
>
)
{
my
$xref
;
my
(
$header
,
$sequence
)
=
$_
=~
/^>?(.+?)\n([^>]*)/s
or
warn
("
Can't parse FASTA entry:
$_
\n
");
#print "My header is -$header-\n" ;
#print "My sequence is -$sequence-\n" ;
if
(
$header
eq
"")
{
$header
=
"
Aedes_GenBank
"
.
$cpt
;
print
STDERR
"
One sequence with a random name ...
\n
"
;
$cpt
++
;
}
# deconstruct header - just use first part
#my ($accession, $description) = split /\|/, $header; #if description
my
$accession
=
$header
;
#if no description
# make sequence into one long string
$sequence
=~
s/\n//g
;
# build the xref object and store it
#print "ACCESSION & LABEL are $accession\n" ;
#print "SEQUENCE is $sequence\n" ;
#print "SOURCE_ID is $source_id\n" ;
#print "SPECIES_ID is $species_id\n" ;
#print "SEQUENCE_TYPE is peptide!\n";
#print "STATUS is experimental!\n" ;
$xref
->
{
ACCESSION
}
=
$accession
;
$xref
->
{
LABEL
}
=
$accession
;
#$xref->{DESCRIPTION} = $description;
$xref
->
{
SEQUENCE
}
=
$sequence
;
$xref
->
{
SOURCE_ID
}
=
$source_id
;
$xref
->
{
SPECIES_ID
}
=
$species_id
;
$xref
->
{
SEQUENCE_TYPE
}
=
'
peptide
';
$xref
->
{
STATUS
}
=
'
experimental
';
push
@xrefs
,
$xref
;
}
close
(
FILE
);
print
scalar
(
@xrefs
)
.
"
AedesGenBank xrefs succesfully parsed
\n
";
XrefParser::
BaseParser
->
upload_xref_object_graphs
(
\
@xrefs
);
print
"
Done
\n
";
return
0
;
}
sub
new
{
my
$self
=
{};
bless
$self
,
"
XrefParser::AedesGenBankParser
";
return
$self
;
}
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