Skip to content
Snippets Groups Projects
Commit b1687015 authored by Kevin Howe's avatar Kevin Howe
Browse files

LSF profile file now optional for resubmission as well as initial submission

parent 31458563
No related branches found
No related tags found
3 merge requests!33Changes for C. elegans / Ensembl Genomes xrefs,!33Changes for C. elegans / Ensembl Genomes xrefs,!33Changes for C. elegans / Ensembl Genomes xrefs
......@@ -295,7 +295,10 @@ EON
my $exe_file = $root_dir."/".$unique_name.".submit";
open(my $rh,">", $exe_file) || die "Could not open file $exe_file";
print $rh ". /usr/local/lsf/conf/profile.lsf\n";
my $lsf_conf = "/usr/local/lsf/conf/profile.lsf";
if (-e $lsf_conf) {
print $rh ". $lsf_conf\n";
}
print $rh $command."\n";
close $rh;
......
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