Skip to content

Commit

Permalink
chore: comment to avoid pipeline failure due to use of mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
mageshwaran-lifebit committed Mar 27, 2024
1 parent 2c1e82b commit 84a2466
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/nextflow/src/main/groovy/nextflow/Session.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ class Session implements ISession {
// an exception is thrown is the version does not match
boolean important = false
if( version.startsWith('!') ) {
important = true
// important = true // commenting to avoid pipeline failure due to lower version. https://github.com/nf-core/raredisease/blob/master/nextflow.config#L295C5-L295C35
version = version.substring(1).trim()
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ class CmdRun extends CmdBase implements HubOptions {
}

void preloadLifebitPlugins() {
def plugins = sysEnv.get('NXF_LIFEBIT_PRELOAD_PLUGINS', '')
def plugins = sysEnv.get('NXF_LIFEBIT_PRELOAD_PLUGINS')
if( plugins ) {
log.debug("Pre-loading Lifebit's plugins '${plugins}'...")
Plugins.load([plugins: plugins.tokenize(',')])
Expand Down

0 comments on commit 84a2466

Please sign in to comment.