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
9c03bb84
Commit
9c03bb84
authored
15 years ago
by
Karyn Megy
Browse files
Options
Downloads
Patches
Plain Diff
New Xrefs parser for Ixodes scapularis (CAP annotation)
parent
30cebe7f
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/IxodesCAPParser.pm
+75
-0
75 additions, 0 deletions
misc-scripts/xref_mapping/XrefParser/IxodesCAPParser.pm
with
75 additions
and
0 deletions
misc-scripts/xref_mapping/XrefParser/IxodesCAPParser.pm
0 → 100644
+
75
−
0
View file @
9c03bb84
package
XrefParser::
IxodesCAPParser
;
use
strict
;
use
File::
Basename
;
use
base
qw( XrefParser::BaseParser )
;
# Ixodes:
#>ISCW800184-PA|GR35|Gustatory receptor|hughrobe|scaffold:IscaW1:DS849364:15863:44694:1
#MTFAYSQFRYSTRLLRWGGVWIVAEATNPGKQSFKTTLKRPYFWYCVLCLSTLVGTEFGN
#IIWALLFSFKHRKVFVSGVYTATQITVLVKTMLSSLMVALAAGRLKKLVARANQFEIIRN
#IKIAPRSKKVTWRDIRIWGRVLFMVLFVSIRNMDNLSILDVENIFGLGALVVVMTASSML
sub
run
{
my
$self
=
shift
if
(
defined
(
caller
(
1
)));
my
$source_id
=
shift
;
my
$species_id
=
shift
;
my
$files
=
shift
;
my
$release_file
=
shift
;
my
$verbose
=
shift
;
my
$file
=
@
{
$files
}[
0
];
next
if
(
/^File:/
);
# skip header
my
@xrefs
;
local
$/
=
"
\n
>
";
my
$file_io
=
$self
->
get_filehandle
(
$file
);
if
(
!
defined
$file_io
)
{
print
STDERR
"
Could not open
$file
\n
";
return
1
;
}
while
(
$_
=
$file_io
->
getline
()
)
{
my
$xref
;
my
(
$header
,
$sequence
)
=
$_
=~
/^>?(.+?)\n([^>]*)/s
or
warn
("
Can't parse FASTA entry:
$_
\n
");
# deconstruct header - just use first part
my
(
$accession
,
$symbol
,
$description
,
$submitter
,
$position
)
=
split
/\|/
,
$header
;
if
(
$symbol
eq
"")
{
$symbol
=
"
$accession
"
;
}
# make sequence into one long string
$sequence
=~
s/\n//g
;
# build the xref object and store it
$xref
->
{
ACCESSION
}
=
$accession
;
$xref
->
{
LABEL
}
=
$symbol
;
$xref
->
{
DESCRIPTION
}
=
$description
;
$xref
->
{
SEQUENCE
}
=
$sequence
;
$xref
->
{
SOURCE_ID
}
=
$source_id
;
$xref
->
{
SPECIES_ID
}
=
$species_id
;
$xref
->
{
SEQUENCE_TYPE
}
=
'
peptide
';
$xref
->
{
STATUS
}
=
'
manual annotation
';
push
@xrefs
,
$xref
;
}
$file_io
->
close
();
XrefParser::
BaseParser
->
upload_xref_object_graphs
(
\
@xrefs
);
print
scalar
(
@xrefs
)
.
"
Ixodes CAP xrefs succesfully parsed
\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