We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
When a custom fast temporary directory is selected with the option --tmpdir, this is not used by kmc, which uses the default tmp directory instead.
--tmpdir
[dragonflye] You ran: /sys/dragonflye/bin/dragonflye --outdir flye_out --reads file.fastq.gz --tmpdir /home_local/tmp --cpus 20 --assembler flye --racon 4 ... [dragonflye] Using tempdir: /home_local/tmp ... [dragonflye] Estimating genome size by counting unqiue 21-mers > frequency 10 [dragonflye] Running: kmc -sm -m8 -t20 -k21 -ci10 file\.fastq\.gz /tmp/1081228.1.hpc/WPYrSVwMJu/kmc /tmp/1081228.1.hpc/WPYrSVwMJu 2>&1 | sed 's/^/[kmc] /' | tee -a dragonflye.log
The following modification of line 219 in dragonflye fixes the issue:
- my $tmpout = File::Temp->newdir(); + my $tmpout = File::Temp->newdir(DIR => $tmpdir, CLEANUP => 1 );
The output is now:
[dragonflye] You ran: /sys/dragonflye/bin/dragonflye --outdir flye_out --reads file.fastq.gz --tmpdir /home_local/tmp --cpus 20 --assembler flye --racon 4 ... [dragonflye] Using tempdir: /home_local/tmp ... [dragonflye] Estimating genome size by counting unqiue 21-mers > frequency 10 [dragonflye] Running: kmc -sm -m8 -t20 -k21 -ci10 file\.fastq\.gz /home_local/tmp/SACmBvwO_t/kmc /home_local/tmp/SACmBvwO_t 2>&1 | sed 's/^/[kmc] /' | tee -a dragonflye.log
Many thanks, Bogdan
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
When a custom fast temporary directory is selected with the option
--tmpdir
, this is not used by kmc, which uses the default tmp directory instead.The following modification of line 219 in dragonflye fixes the issue:
The output is now:
Many thanks,
Bogdan
The text was updated successfully, but these errors were encountered: