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
315abe0c
Commit
315abe0c
authored
17 years ago
by
Glenn Proctor
Browse files
Options
Downloads
Patches
Plain Diff
Added human-fish (one to many mode)
parent
52181cbf
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
+12
-4
12 additions, 4 deletions
misc-scripts/xref_projection/submit_projections.pl
with
12 additions
and
4 deletions
misc-scripts/xref_projection/submit_projections.pl
+
12
−
4
View file @
315abe0c
...
...
@@ -8,7 +8,7 @@ my $release = 45;
my
$base_dir
=
"
/lustre/work1/ensembl/gp1/projections/
";
my
$conf
=
"
release_45.
conf
";
# registry config file
my
$conf
=
"
release_45.
ini
";
# registry config file
# -------------------------- end of config ----------------------------
...
...
@@ -26,15 +26,15 @@ if (! -e $dir) {
}
# common options
my
$opts
=
"
-conf
$conf
$compara
-release
$release
-quiet
";
my
$opts
=
"
-conf
$conf
-release
$release
-quiet
";
my
(
$o
,
$e
,
$n
);
# ----------------------------------------
# Display names
# human to chimp,opossum,dog,cow,macaque,chicken,xenopus
foreach
my
$to
("
chimp
",
"
opossum
",
"
dog
",
"
cow
",
"
macaque
",
"
chicken
",
"
xenopus
")
{
# human to chimp,opossum,dog,cow,macaque,chicken,xenopus
,pig,armadillo,small_hedgehog,european_hedgehog,cat,elephant,macaque,bat,platypus,rabbit,galago,european_shrew,squirrel,ground_shrew
foreach
my
$to
("
chimp
",
"
opossum
",
"
dog
",
"
cow
",
"
macaque
",
"
chicken
",
"
xenopus
"
,
"
guinea_pig
",
"
armadillo
",
"
small_hedgehog
",
"
european_hedgehog
",
"
cat
",
"
elephant
",
"
macaque
",
"
bat
",
"
platypus
",
"
rabbit
",
"
galago
",
"
european_shrew
",
"
squirrel
",
"
ground_shrew
"
)
{
$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
...
...
@@ -49,6 +49,14 @@ foreach my $to ("rat") { # don't need the loop but may add more species later
system
"
bsub -o
$o
-e
$e
-J
$n
perl project_display_xrefs.pl
$opts
-from mouse -to
$to
-names -delete_names -no_database
";
}
# human to fish - note use of -one_to_many option for 1-many projections
foreach
my
$to
("
zebrafish
",
"
medaka
",
"
tetraodon
",
"
fugu
",
"
stickleback
",
"")
{
$o
=
"
$dir
/names_human_
$to
.out
";
$e
=
"
$dir
/names_human_
$to
.err
";
$n
=
substr
("
n_hum_
$to
",
0
,
10
);
system
"
bsub -o
$o
-e
$e
-J
$n
perl project_display_xrefs.pl
$opts
-from human -to
$to
-names -delete_names -no_database -one_to_many
";
}
# ----------------------------------------
# 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