Skip to content
Snippets Groups Projects
Commit b1ab8d0f authored by Magali Ruffier's avatar Magali Ruffier
Browse files

do not project all sources

only project from HGNC if species is human, from MGI if species is mouse
parent 51f737e3
No related branches found
Tags cvs/release/ensemblgenomes/19-72
No related merge requests found
...@@ -268,7 +268,9 @@ foreach my $from (@execution_order) { ...@@ -268,7 +268,9 @@ foreach my $from (@execution_order) {
my $o = "$dir/names_${from}_$to.out"; my $o = "$dir/names_${from}_$to.out";
my $e = "$dir/names_${from}_$to.err"; my $e = "$dir/names_${from}_$to.err";
my $n = substr("n_${from}_$to", 0, 10); # job name display limited to 10 chars my $n = substr("n_${from}_$to", 0, 10); # job name display limited to 10 chars
my $all = ($from eq "human") ? "" : "--all_sources"; # non-human from species -> use all sources my $all;
if ($from eq "human" || $from eq "mouse") { $all = "" ; }
else { $all = "--all_sources"; }
my $wait; my $wait;
if ($last_name) { $wait = "-w 'ended(${last_name}*)'";} if ($last_name) { $wait = "-w 'ended(${last_name}*)'";}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment