Skip to content

Commit

Permalink
does this work
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Nov 15, 2023
1 parent 7984c67 commit f90dee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snakePipes/workflows/ChIP-seq/internals.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ chip_samples_w_ctrl = set()
chip_samples_wo_ctrl = set()
for chip_sample, value in chip_dict.items():
# set control to False if not specified or set to False
if 'control' not in chip_dict[chip_sample] or chip_dict[chip_sample]['control'] = None:
if 'control' not in chip_dict[chip_sample] or chip_dict[chip_sample]['control'] == None:
chip_dict[chip_sample]['control'] = False
chip_samples_wo_ctrl.add(chip_sample)
else:
Expand Down

0 comments on commit f90dee5

Please sign in to comment.