We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3eddfad commit 24314b1Copy full SHA for 24314b1
modules/nextflow/src/main/groovy/nextflow/script/ScriptMeta.groovy
@@ -256,7 +256,7 @@ class ScriptMeta {
256
final result = new HashSet(definitions.size() + imports.size())
257
// local definitions
258
for( def item : definitions.values() ) {
259
- if( item instanceof WorkflowDef )
+ if( item instanceof WorkflowDef && item.name != null )
260
result.add(item.name)
261
}
262
// processes from imports
0 commit comments