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
5e230b6a
Commit
5e230b6a
authored
17 years ago
by
Andreas Kusalananda Kähäri
Browse files
Options
Downloads
Patches
Plain Diff
Do the uploading in a separate loop after the parsing of all the files.
parent
12b78b6a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
misc-scripts/xref_mapping/XrefParser/RefSeqGPFFParser.pm
+7
-4
7 additions, 4 deletions
misc-scripts/xref_mapping/XrefParser/RefSeqGPFFParser.pm
misc-scripts/xref_mapping/XrefParser/RefSeqParser.pm
+6
-2
6 additions, 2 deletions
misc-scripts/xref_mapping/XrefParser/RefSeqParser.pm
with
13 additions
and
6 deletions
misc-scripts/xref_mapping/XrefParser/RefSeqGPFFParser.pm
+
7
−
4
View file @
5e230b6a
...
...
@@ -55,8 +55,8 @@ sub run {
.
"
$pred_peptide_source_id
\n
";
print
"
RefSeq_dna_predicted source ID =
$pred_dna_source_id
\n
";
my
@xrefs
;
foreach
my
$file
(
@files
)
{
if
(
$source_id
<
1
)
{
$source_id
=
$self
->
get_source_id_for_filename
(
basename
(
$file
)
);
...
...
@@ -65,7 +65,7 @@ sub run {
$species_id
=
$self
->
get_species_id_for_filename
(
$file
);
}
my
$
xrefs
=
push
@
xrefs
,
$self
->
create_xrefs
(
$peptide_source_id
,
$dna_source_id
,
$pred_peptide_source_id
,
...
...
@@ -73,13 +73,16 @@ sub run {
$file
,
$species_id
);
if
(
!
defined
(
$xrefs
)
)
{
if
(
!
defined
(
$xrefs
[
-
1
]
)
)
{
return
1
;
#error
}
}
foreach
my
$xrefs
(
@xrefs
)
{
if
(
!
defined
(
$self
->
upload_xref_object_graphs
(
$xrefs
)
)
)
{
return
1
;
# error
}
}
## end foreach my $file (@files)
}
if
(
defined
$release_file
)
{
# Parse and set release info.
...
...
This diff is collapsed.
Click to expand it.
misc-scripts/xref_mapping/XrefParser/RefSeqParser.pm
+
6
−
2
View file @
5e230b6a
...
...
@@ -55,12 +55,13 @@ sub run {
.
"
$pred_peptide_source_id
\n
";
print
"
RefSeq_dna_predicted source ID =
$pred_dna_source_id
\n
";
my
@xrefs
;
foreach
my
$file
(
@files
)
{
if
(
!
defined
(
$species_id
)
)
{
$species_id
=
$self
->
get_species_id_for_filename
(
$file
);
}
my
$
xrefs
=
push
@
xrefs
,
$self
->
create_xrefs
(
$peptide_source_id
,
$dna_source_id
,
$pred_peptide_source_id
,
...
...
@@ -68,9 +69,12 @@ sub run {
$file
,
$species_id
);
if
(
!
defined
(
$xrefs
)
)
{
if
(
!
defined
(
$xrefs
[
-
1
]
)
)
{
return
1
;
#error
}
}
foreach
my
$xrefs
(
@xrefs
)
{
if
(
!
defined
(
$self
->
upload_xref_object_graphs
(
$xrefs
)
)
)
{
return
1
;
# error
}
...
...
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