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
Running the pipeline in targeted mode without specifying --panel gives the following error message:
ERROR ~
The null is not defined. Currently, the available panels are:
- tso500
Looking at the code, the first if block was not triggered when it should have done, and so the second was used:
if (!params.containsKey('panel')) {
def panels = Constants.PANELS_DEFINED.join('\n - ')
log.error "\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n" +
" A panel is required to be set using the --panel CLI argument or in a \n" +
" configuration file.\n" +
" Currently, the available panels are:\n" +
" - ${panels}\n" +
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
Nextflow.exit(1)
} else if (!Constants.PANELS_DEFINED.contains(params.panel)) {
def panels = Constants.PANELS_DEFINED.join('\n - ')
log.error "\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n" +
" The ${params.panel} is not defined. Currently, the available panels are:\n" +
" - ${panels}\n" +
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
Nextflow.exit(1)
}
The text was updated successfully, but these errors were encountered:
Running the pipeline in targeted mode without specifying
--panel
gives the following error message:ERROR ~
Looking at the code, the first
if
block was not triggered when it should have done, and so the second was used:The text was updated successfully, but these errors were encountered: