Skip to content
Snippets Groups Projects
Commit 6b394c91 authored by Cats's avatar Cats
Browse files

runtime adjustments bwa, exractAdapters

parent a5d63187
No related branches found
No related tags found
1 merge request!8Run time settings and additional adjustments
......@@ -22,7 +22,7 @@ task BwaMem {
File bamFile = outputPath
}
runtime{
threads: select_first([threads])
threads: if defined(threads) then threads else 1
memory: if defined(memory) then memory else 8
}
}
......@@ -65,7 +65,7 @@ task extractAdapters {
command {
set -e
mkdir -p ${outputDir}
java -Xmx3G -jar ${extractAdaptersFastqcJar} \
java -Xmx4G -jar ${extractAdaptersFastqcJar} \
--inputFile ${inputFile} \
${"--adapterOutputFile " + adapterOutputFilePath } \
${"--contamsOutputFile " + contamsOutputFilePath } \
......
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