From 8e0f0c77f10b1eedcfa56bfb5e0b6ea290127793 Mon Sep 17 00:00:00 2001 From: "katarzyna.otylia.sikora@gmail.com" Date: Wed, 15 Nov 2023 13:46:12 +0100 Subject: [PATCH] does this work --- snakePipes/workflows/ChIP-seq/internals.snakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snakePipes/workflows/ChIP-seq/internals.snakefile b/snakePipes/workflows/ChIP-seq/internals.snakefile index 3d7916813..1d4108d17 100755 --- a/snakePipes/workflows/ChIP-seq/internals.snakefile +++ b/snakePipes/workflows/ChIP-seq/internals.snakefile @@ -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'] is None: chip_dict[chip_sample]['control'] = False chip_samples_wo_ctrl.add(chip_sample) else: