Skip to content
Snippets Groups Projects
Commit 587c4451 authored by Cats's avatar Cats
Browse files

Merge remote-tracking branch 'origin/develop' into parameter_meta

parents 8f41d5d5 792bbb34
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,7 @@ version 2.2.0-dev
+ Removed unused "verbose" and "quiet" inputs from multiqc.
+ Added parameter_meta sections to a variety of tasks.
+ Picard's BedToIntervalList outputPath input is now optional (with a default of "regions.interval_list")
+ TALON: Fix SQLite error concerning database/disk space being full.
+ Update htseq to default image version 0.11.2
+ Update biowdl-input-converter in common.wdl to version 0.2.1.
+ Update TALON section to now include the new annotation file output, and add config file creation to the TALON task.
......
......@@ -369,7 +369,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