comparison 0.5.0/workflows/nowayout.nf @ 9:9c603577838a

planemo upload
author kkonganti
date Tue, 01 Apr 2025 10:27:56 -0400
parents 3539fbeb4230
children
comparison
equal deleted inserted replaced
8:3539fbeb4230 9:9c603577838a
305 stopNow("Please check if your ${msg}\n" + 305 stopNow("Please check if your ${msg}\n" +
306 "[ ${file_path} ]\nexists and that the files are not of size 0.") 306 "[ ${file_path} ]\nexists and that the files are not of size 0.")
307 } 307 }
308 308
309 // Check if db files within parent path are empty. 309 // Check if db files within parent path are empty.
310 file_path_obj.eachFileRecurse { 310 file_path_obj.parent.eachFileRecurse {
311 if (it.size() == 0) { 311 if (it.size() == 0) {
312 stopNow("For ${msg}, within\n" + 312 stopNow("For ${msg}, within\n" +
313 "[ ${file_path} ],\nthe following file is of size 0: ${it.name}") 313 "[ ${file_path} ],\nthe following file is of size 0: ${it.name}")
314 } 314 }
315 } 315 }