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
There is an issue with running manual demultiplexing for specific run folder with -r flag.
I think the issue lies in line 85 of demultiplex.py, where runfolder_names = [self.runfolder_names] should be runfolder_names = [runfolder_names]. self.runfolder_names has not been defined yet when the code in line 85 is trying to call it.
This issue only occurs when the run folder name is provided (e.g. -r <run_folder_name>). If the run folder name is not provided, this line is skipped so no issue. Cron job command line in the workstation does not have -r flag since it does not run for specific run folder, so it's not issue with current cron job command.
The text was updated successfully, but these errors were encountered:
There is an issue with running manual demultiplexing for specific run folder with
-r
flag.I think the issue lies in line 85 of
demultiplex.py
, whererunfolder_names = [self.runfolder_names]
should berunfolder_names = [runfolder_names]
.self.runfolder_names
has not been defined yet when the code in line 85 is trying to call it.This issue only occurs when the run folder name is provided (e.g.
-r <run_folder_name>
). If the run folder name is not provided, this line is skipped so no issue. Cron job command line in the workstation does not have-r
flag since it does not run for specific run folder, so it's not issue with current cron job command.The text was updated successfully, but these errors were encountered: