Skip to content
Snippets Groups Projects
Commit d95d1da9 authored by JasperBoom's avatar JasperBoom
Browse files

Fix SQLite error concerning database/disk space being full.

parent d6bb5325
No related branches found
No related tags found
No related merge requests found
......@@ -463,7 +463,10 @@ task Talon {
command <<<
set -e
mkdir -p "$(dirname ~{outputPrefix})"
export TMPDIR=/tmp
mkdir -p $PWD/tmp #Standard /tmp fills up which makes the SQLite process crash.
ln -s $PWD/tmp /tmp/sqltmp #Multiprocessing will crash if the absolute path is too long.
export TMPDIR=/tmp/sqltmp
printf "" > ~{outputPrefix}/talonConfigFile.csv #File needs to be emptied when task is rerun.
for file in ~{sep=" " SAMfiles}
do
configFileLine="$(basename ${file%.*}),~{organism},~{sequencingPlatform},${file}"
......
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