Skip to content

Commit

Permalink
Update demux_run_dag.py
Browse files Browse the repository at this point in the history
updated recipes from DLP to SC_DLP
  • Loading branch information
darrelln32 committed Jun 3, 2024
1 parent 6a5be03 commit 8407306
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demux_run_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def demux(ds, **kwargs):
def get_dlp_chip(samplesheet, project):
samplesheet.df_ss_data.reset_index()
for index, row in samplesheet.df_ss_data.iterrows():
if row['Sample_Well'] == 'DLP' and project == row['Sample_Project']:
if row['Sample_Well'] == 'SC_DLP' and project == row['Sample_Project']:
# return chip from 071PP_DLP_UNSORTED_128624A_13_12_IGO_09443_CU_1_1_121
sample = row['Sample_ID']
return get_dlp_chip_from_sample_name(sample)
Expand Down Expand Up @@ -135,7 +135,7 @@ def stats(ds, **kwargs):
if "REFERENCE" in samplesheet_path:
return "No stats for reference " + samplesheet_path

if "DLP" in sample_sheet.recipe_set:
if "SC_DLP" in sample_sheet.recipe_set:
scripts.get_total_reads_from_demux.run_DLP(sample_sheet, sequencer_and_run)
scripts.upload_stats.upload_stats(sequencer_and_run)

Expand Down

0 comments on commit 8407306

Please sign in to comment.