You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It does not seems to be possible to run Nallo version 0.4.0 without specifing --vep_cache even with --skip_snv_annotation
The following error are present
WARN: Access to undefined parameter `genomes` -- Initialise it to a default value eg. `params.genomes = some_value`
[- ] process > GENOMICMEDICINESWEDEN_NALLO:NALLO:CONVERT_INPUT_FILES:SAMTOOLS_FASTQ -
[- ] process > GENOMICMEDICINESWEDEN_NALLO:NALLO:CONVERT_INPUT_FILES:SAMTOOLS_IMPORT -
ERROR ~ Cannot invoke method endsWith() on null object
-- Check script '.nextflow/assets/genomic-medicine-sweden/nallo/./workflows/nallo.nf' at line: 131 or see '.nextflow.log' file for more details
From the file nallo.nf specified in above
126 // Prepeare references
127 PREPARE_GENOME (
128 ch_fasta,
129 ch_vep_cache_unprocessed,
130 params.fasta.endsWith('.gz'), // should we unzip fasta
131 params.vep_cache.endsWith("tar.gz") // should we untar vep cache
132 )
133 ch_versions = ch_versions.mix(PREPARE_GENOME.out.versions)
134
When looking into the nallo.nf from former version 0.3.2, there are some checks on params.vep_cache, which seems to be missing in version 0.4.0
It's indeed a bug, the CI-tests always run without any of the --skip´s so this has slipped through (hope to adress this soon). Also, I see the I have missed a point in the documentation.
The pipeline should be able to run without --vep_cache if you also have both of these active:
Just to let you know - I did actually run with both parameters --skip_snv_annotation and --skip_sv_annotation, so I think this behaviour are present regardsless of this.
Just to let you know - I did actually run with both parameters --skip_snv_annotation and --skip_sv_annotation, so I think this behaviour are present regardsless of this.
You are right, I meant should in the sense that's how I'd like it to work, but currently it does not 😅
Description of the bug
It does not seems to be possible to run Nallo version 0.4.0 without specifing
--vep_cache
even with--skip_snv_annotation
The following error are present
From the file nallo.nf specified in above
When looking into the nallo.nf from former version 0.3.2, there are some checks on
params.vep_cache
, which seems to be missing in version0.4.0
When I specify
--vep_cache
it works fine. Both with and without--skip_snv_annotation
The documentation does not say anything
vep_cache
being mandatory. Is this as intended or a bug?Settings
Nextflow version 24.04.2
Nallo version 0.4.0
Running with Docker
Command used and terminal output
Relevant files
No response
System information
No response
The text was updated successfully, but these errors were encountered: