Skip to content
Snippets Groups Projects
Commit 9ecceb5f authored by Glenn Proctor's avatar Glenn Proctor
Browse files

$ signs before variable names generally help the code to run well.

parent e5cb4b1a
No related branches found
No related tags found
No related merge requests found
......@@ -107,7 +107,7 @@ foreach my $pair (@names_1_many) {
$e = "$dir/names_${from}_$to.err";
$n = substr("n_${from}_$to", 0, 10);
print "Submitting name projection from $from to $to (1:many)\n";
system "bsub -o $o -e $e -J $n perl project_display_xrefs.pl $opts -from from -to $to -names -delete_names -no_database -one_to_many";
system "bsub -o $o -e $e -J $n perl project_display_xrefs.pl $opts -from $from -to $to -names -delete_names -no_database -one_to_many";
}
# ----------------------------------------
......
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