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
Nextflow version 24.02.0-edge does not match workflow required version: >=24.04.2
146
-
```
147
-
148
-
Apparently we are using a slightly older version of Nextflow than what the workflow requires.
149
-
150
-
This is annoying because we might not want to update Nextflow without checking that the update doesn't affect our current work. However, Nextflow makes it up to us by letting us request a specific version on a one-time basis!
151
-
152
-
You just have to add `NXF_VER=<version>` to the start of your command, like this:
153
-
154
-
```bash
155
-
NXF_VER=24.09.2-edge nextflow run nf-core/demo -profile docker,test --outdir results
156
-
```
139
+
Depending on the nextflow version you have installed, this command might fail due to a version mismatch.
140
+
If that happens, you can temporarily run the pipeline with a different version than you have installed by adding NXF_VER=<version> to the start of your command as shown below:
157
141
158
-
And boom, that gets us past the version mismatch without committing us to any big changes.
142
+
```bash
143
+
NXF_VER=24.09.2-edge nextflow run nf-core/demo -profile docker,test --outdir results
0 commit comments