I was running multiple instances of cuffmerge in the same working directory and all but one exited with the following error:
IOError: [Errno 2] No such file or directory: 'tmp_meta_asm.combined.gtf'
It appears that the calls to cuffcompare within cuffmerge are using temporary files with static names in the working directory, and the file had been moved by one of the processes (the one that succeeded).
This pull request fixes this issue by using tmp_dir instead of tmp_meta_asm.
I was running multiple instances of cuffmerge in the same working directory and all but one exited with the following error:
It appears that the calls to cuffcompare within cuffmerge are using temporary files with static names in the working directory, and the file had been moved by one of the processes (the one that succeeded).
This pull request fixes this issue by using
tmp_dir
instead oftmp_meta_asm
.