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 f2c9bea commit dc90f84Copy full SHA for dc90f84
BRB/run.py
@@ -54,7 +54,7 @@ def run_brb(configfile, stats):
54
setLog(logFile)
55
56
# Push stats on-demand
57
- if not stats is None:
+ if stats is not None:
58
# stats: is the FCID specified by using CLI argument
59
d = [d for d in glob.glob("{}/*/fastq.made".format(config.get('Paths', 'baseData'))) if stats in d]
60
assert len(d) == 1
@@ -87,5 +87,5 @@ def run_brb(configfile, stats):
87
BRB.findFinishedFlowCells.markFinished(config)
88
log.info('=== finished flowcell ===')
89
90
91
break # exit the main loop, don't do anything else.
0 commit comments