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 d17edfa commit 77bae50Copy full SHA for 77bae50
lib/WorkflowMain.groovy
@@ -71,7 +71,7 @@ class WorkflowMain {
71
NfcoreTemplate.checkConfigProvided(workflow, log)
72
73
// Check that conda channels are set-up correctly
74
- if (workflow.profile.contains('conda') || workflow.profile.contains('mamba')) {
+ if (workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1) {
75
Utils.checkCondaChannels(log)
76
}
77
0 commit comments