Skip to content
Snippets Groups Projects
Commit 2aefc158 authored by tjc's avatar tjc
Browse files

fixes

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@13901 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent c8138af3
No related branches found
No related tags found
No related merge requests found
...@@ -260,10 +260,8 @@ for($count = 0; $count < @bsub_jobs; $count++) ...@@ -260,10 +260,8 @@ for($count = 0; $count < @bsub_jobs; $count++)
if($count == @bsub_jobs-1) if($count == @bsub_jobs-1)
{ {
# print BSUB "zip -j ${dirname}blastp.zip ${dirname}\*out.gz\n"; print BSUB "find ${dirname} -maxdepth 1 -name \"\*out.gz\" -print | xargs zip -j ${dirname}blastp.zip\n";
# print BSUB "rm -f ${dirname}\*out.gz\n"; print BSUB "find ${dirname} -maxdepth 1 -name \"\*out.gz\" -print | xargs rm -f\n";
print BSUB "find ${dirname} -name '\*out.gz' -maxdepth 1 -print | xargs zip -j ${dirname}blastp.zip\n";
print BSUB "find ${dirname} -name '\*out.gz' -maxdepth 1 -print | xargs rm -f\n";
} }
print BSUB "\"echo finished > /dev/null\" > /dev/null 2> /dev/null"; print BSUB "\"echo finished > /dev/null\" > /dev/null 2> /dev/null";
close BSUB; # or die "--Could not submit job : $!"; close BSUB; # or die "--Could not submit job : $!";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment