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
In GATK4_POSTPROCESSGERMLINECNVCALLS, the memory is handled in megabytes, but assigned to the java process in gigabytes.
GATK4_POSTPROCESSGERMLINECNVCALLS
See: https://github.com/nf-core/raredisease/blob/master/modules/nf-core/gatk4/postprocessgermlinecnvcalls/main.nf
If for instance having access to 20GB, this would lead to the java being told to run with 20TB.
Key parts from the script block.
script
def avail_mem = 3072 <- Megabytes if (!task.memory) { log.info '[GATK GermlineCNVCaller] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.' } else { avail_mem = (task.memory.mega*0.8).intValue() <- Megabytes } """ gatk --java-options "-Xmx${avail_mem}g" PostprocessGermlineCNVCalls \\ <- Assigned in gigabytes $calls_command \\ $model_command \\ $ploidy_command \\ --output-genotyped-intervals ${prefix}_genotyped_intervals.vcf.gz \\ --output-genotyped-segments ${prefix}_genotyped_segments.vcf.gz \\ --output-denoised-copy-ratios ${prefix}_denoised.vcf.gz """
No response
The text was updated successfully, but these errors were encountered:
That's a lot of memory 😅
Sorry, something went wrong.
ramprasadn
No branches or pull requests
Description of the bug
In
GATK4_POSTPROCESSGERMLINECNVCALLS
, the memory is handled in megabytes, but assigned to the java process in gigabytes.See: https://github.com/nf-core/raredisease/blob/master/modules/nf-core/gatk4/postprocessgermlinecnvcalls/main.nf
If for instance having access to 20GB, this would lead to the java being told to run with 20TB.
Key parts from the
script
block.Command used and terminal output
No response
Relevant files
No response
System information
No response
The text was updated successfully, but these errors were encountered: