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
When a run fails to generate a MultiQC report, the email template code throws a NullPointerException from Line 129 of NfcoreTemplate.nf
Specifically in:
if ( mqc_report.size() <= max_multiqc_email_size.toBytes() ) {
mqc_report is null so calling size() throws an exception.
mqc_report
size()
Using the safe navigation operator doesn't fix it since null <= Number results in true.
null <= Number
Discovered this bug from the Nextflow log in nf-core/rnaseq#760
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of the bug
When a run fails to generate a MultiQC report, the email template code throws a NullPointerException from Line 129 of NfcoreTemplate.nf
Specifically in:
mqc_report
is null so callingsize()
throws an exception.Using the safe navigation operator doesn't fix it since
null <= Number
results in true.Discovered this bug from the Nextflow log in nf-core/rnaseq#760
Command used and terminal output
No response
System information
No response
The text was updated successfully, but these errors were encountered: