Skip to content

Commit

Permalink
Merge pull request #1226 from ComparativeGenomicsToolkit/docker-fixes
Browse files Browse the repository at this point in the history
remove os.remove before deleteGlobalFile
  • Loading branch information
glennhickey authored Nov 15, 2023
2 parents ee0517f + cb36454 commit 2343a84
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/cactus/paf/local_alignment.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ def merge_combined_chunks(job, combined_chunks):
chunk_path = job.fileStore.readGlobalFile(chunk, mutable=True)
with open(chunk_path, 'r') as chunk_file:
shutil.copyfileobj(chunk_file, output_file)
os.remove(chunk_path)
job.fileStore.deleteGlobalFile(chunk)
return job.fileStore.writeGlobalFile(output_path)

Expand Down

0 comments on commit 2343a84

Please sign in to comment.