/
Common Nextflow errors
Common Nextflow errors
1. Nextflow pipeline stickied on revision
If a new pipeline version was released you might get the following error:
Project `eresearchqut/ontvisc` is currently stickied on revision: dev -- you need to explicitly specify a revision with the option `-r` in order to use it
You have 2 options:
If you want to keep a copy of the old version that works in your assets then just add the -r parameter and specify the version you would like to run in your nextflow command
nextflow run eresearchqut/ontvisc -r dev
The other option is to delete the old version from your nextflow cache located under ~/.nextflow/assets.
rm -rf ~/.nextflow/assets/eresearchqut/ontvisc
2. Compilation error
ERROR ~ Script compilation error
- file : /home/gauthiem/code/github/troubleshooting/dev/ontvisc/main.nf
- cause: Unexpected input: '{' @ line 382, column 29.
process MAPPING_BACK_TO_REF {
^
1 error
-- Check '.nextflow.log' file for details
This generally means there is a bug in the code included between the brackets for this process and it is unable to compile.
Check your code carefully for any typos.
, multiple selections available,
Related content
Installing Nextflow
Installing Nextflow
More like this
7. Nextflow pipeline outputs
7. Nextflow pipeline outputs
More like this
6. Nextflow caching
6. Nextflow caching
More like this
bk_Installing Nextflow
bk_Installing Nextflow
More like this
2024-S2 eResearch - Session 3: Introduction to Nextflow
2024-S2 eResearch - Session 3: Introduction to Nextflow
More like this
2. Nextflow pipeline repositories
2. Nextflow pipeline repositories
More like this