fixed memory warning

This commit is contained in:
Nicolas Vannieuwkerke 2022-05-13 14:25:53 +02:00
parent d1f824ae66
commit 1c2a991429

View file

@ -27,7 +27,7 @@ process GATK4_SPLITINTERVALS {
def avail_mem = 3
if (!task.memory) {
log.info '[GATK IntervalListToBed] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.'
log.info '[GATK SplitIntervals] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.'
} else {
avail_mem = task.memory.giga
}