Skip to content

Commit

Permalink
Fix number of runfolders processed not being correctly added to scrip…
Browse files Browse the repository at this point in the history
…t end log
  • Loading branch information
RachelDuffin committed Jul 9, 2024
1 parent 9c62af9 commit 4fd486c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/ad_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"pipeline_started_subj": f"{SCRIPT_MODE}. ALERT: Started pipeline for %s",
"binfx_recipient": MAIL_SETTINGS["binfx_email"],
# Oncology email address for email alerts
"oncology_ops_email": "synnovis.OncologyDutyScientist@nhs.net",
"oncology_ops_email": "synnovis.seglh-ods@nhs.net",
"wes_samplename_emaillist": [
"gst-tr.ViapathGeneticsAdmin@nhs.net",
"lu.liu@viapath.co.uk",
Expand All @@ -64,7 +64,7 @@
AD_LOGDIR = os.path.join(RUNFOLDERS, "automate_demultiplexing_logfiles")
MAIL_SETTINGS = MAIL_SETTINGS | { # Add test mail recipients
"pipeline_started_subj": f"{SCRIPT_MODE}. ALERT: Started pipeline for %s",
"binfx_recipient": "mokaguys@gmail.com",
"binfx_recipient": MAIL_SETTINGS["binfx_email"],
# Oncology email address for email alerts
"oncology_ops_email": "mokaguys@gmail.com",
"wes_samplename_emaillist": ["mokaguys@gmail.com"],
Expand Down
1 change: 1 addition & 0 deletions demultiplex/demultiplex.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ def check_run_processed(self, dr_obj: object, runfolder_name: str) -> None:
script_logger.log_msgs["script_success"],
runfolder_name,
)
return True

class DemultiplexRunfolder(DemultiplexConfig):
"""
Expand Down

0 comments on commit 4fd486c

Please sign in to comment.