We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9d01d1 commit 5b2b107Copy full SHA for 5b2b107
1 file changed
main.nf
@@ -235,6 +235,13 @@ where_are_my_files = file("$baseDir/assets/where_are_my_files.txt")
235
* SANITY CHECKING
236
*/
237
238
+// NF version check! Will replace with manifest system once allwoed by nf-core/tools
239
+
240
+if( !nextflow.version.matches('>=19.10.0') ) {
241
+ println "This workflow requires Nextflow version 19.10.0 or greater -- You are running version $nextflow.version"
242
+ exit 1
243
+}
244
245
// Validate inputs
246
if ( params.fasta.isEmpty () ){
247
exit 1, "Please specify --fasta with the path to your reference"
0 commit comments