Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl
Commits
ed29fc7a
Commit
ed29fc7a
authored
Dec 17, 2010
by
Karyn Megy
Browse files
VectorBase Ribo.Prot.Gen DB parser
parent
1c8cce3a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
81 additions
and
0 deletions
+81
-0
misc-scripts/xref_mapping/XrefParser/VBribosomalParser.pm
misc-scripts/xref_mapping/XrefParser/VBribosomalParser.pm
+81
-0
No files found.
misc-scripts/xref_mapping/XrefParser/VBribosomalParser.pm
0 → 100644
View file @
ed29fc7a
package
XrefParser::
VBribosomalParser
;
use
strict
;
use
POSIX
qw(strftime)
;
use
File::
Basename
;
use
base
qw( XrefParser::BaseParser )
;
# Parse the external description file
#
# RPG_DB ID stable_id feature Name Description
# MOS10001 AGAP011777 gene RpsA 40S ribosomal protein SA
# MOS10002 AGAP003768 gene Rps2 40S ribosomal protein S2
# MOS10003 AGAP001910 gene Rps3 40S ribosomal protein S3
# ...
if
(
!
defined
(
caller
()))
{
if
(
scalar
(
@ARGV
)
!=
1
)
{
print
STDERR
"
\n
Usage: VBribosomalParser.pm.pm file <source_id> <species_id>
\n\n
";
exit
(
1
);
}
run
(
$ARGV
[
0
]);
}
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
];
print
"
source_id =
$source_id
, species=
$species_id
, file =
$file
\n
"
if
(
$verbose
);
if
(
!
defined
(
$source_id
)){
$source_id
=
XrefParser::
BaseParser
->
get_source_id_for_filename
(
$file
);
}
if
(
!
defined
(
$species_id
)){
$species_id
=
XrefParser::
BaseParser
->
get_species_id_for_filename
(
$file
);
}
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
()
)
{
if
(
$line
!~
/^#/
)
{
chomp
$line
;
my
(
$DB_id
,
$gene_id
,
$rien
,
$name
,
$description
)
=
split
("
\t
",
$line
);
#and use the gene_id as accession
my
$descr_full
=
"
$DB_id
-
$description
(
$name
)
\n
"
;
my
$xref_id
=
$self
->
get_xref
(
$gene_id
,
$source_id
,
$species_id
);
if
(
!
defined
(
$xref_id
)){
$xref_id
=
$self
->
add_xref
(
$gene_id
,"",
$gene_id
,
$descr_full
,
$source_id
,
$species_id
,
"
DIRECT
");
$count
++
;
}
if
(
defined
(
$gene_id
)
and
$gene_id
ne
"
-
"){
$self
->
add_direct_xref
(
$xref_id
,
$gene_id
,
"
Gene
",
"")
;
$added
++
;
}
}
$file_io
->
close
();
print
"
Added
$count
xrefs and
$added
Direct xrefs to genes for VBribosomal
\n
"
if
(
$verbose
);
return
0
;
}
}
1
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment