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
f5883deb
Commit
f5883deb
authored
18 years ago
by
Glenn Proctor
Browse files
Options
Downloads
Patches
Plain Diff
Don't write name projection info to database.
parent
c77e76d8
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_projection/submit_projections.pl
+8
-4
8 additions, 4 deletions
misc-scripts/xref_projection/submit_projections.pl
with
8 additions
and
4 deletions
misc-scripts/xref_projection/submit_projections.pl
+
8
−
4
View file @
f5883deb
...
...
@@ -40,7 +40,7 @@ foreach my $to ("chimp", "opossum", "dog", "cow", "macaque", "chicken", "xenopus
$o
=
"
$dir
/names_human_
$to
.out
";
$e
=
"
$dir
/names_human_
$to
.err
";
$n
=
substr
("
n_hum_
$to
",
0
,
10
);
# job name display limited to 10 chars
system
"
bsub -o
$o
-e
$e
-J
$n
perl project_display_xrefs.pl
$opts
-from human -to
$to
-names -delete_names
";
system
"
bsub -o
$o
-e
$e
-J
$n
perl project_display_xrefs.pl
$opts
-from human -to
$to
-names -delete_names
-no_database
";
}
# mouse to rat
...
...
@@ -48,7 +48,7 @@ foreach my $to ("rat") { # don't need the loop but may add more species later
$o
=
"
$dir
/names_mouse_
$to
.out
";
$e
=
"
$dir
/names_mouse_
$to
.err
";
$n
=
substr
("
n_mou_
$to
",
0
,
10
);
system
"
bsub -o
$o
-e
$e
-J
$n
perl project_display_xrefs.pl
$opts
-from mouse -to
$to
-names -delete_names
";
system
"
bsub -o
$o
-e
$e
-J
$n
perl project_display_xrefs.pl
$opts
-from mouse -to
$to
-names -delete_names
-no_database
";
}
# ----------------------------------------
...
...
@@ -79,8 +79,12 @@ foreach my $to ("human", "rat", "dog", "chicken", "cow") {
$o
=
"
$dir
/go_mouse_
$to
.out
";
$e
=
"
$dir
/go_mouse_
$to
.err
";
$n
=
substr
("
g_mou_
$to
",
0
,
10
);
my
$depend_job_name
=
substr
("
g_hum_
$to
",
0
,
10
);
my
$d
=
"
-w 'done(
$depend_job_name
)'
";
my
$d
;
if
(
$to
eq
'
human
')
{
# no "human-human" to depend upon
$d
=
'';
}
else
{
my
$depend_job_name
=
substr
("
g_hum_
$to
",
0
,
10
);
$d
=
"
-w 'ended(
$depend_job_name
)'
";
}
system
"
bsub -o
$o
-e
$e
-J
$n
$d
perl project_display_xrefs.pl
$opts
-from mouse -to
$to
-go_terms
";
}
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