From cdd4ed84e41a2bf66937c0259ed0b4afb98033a9 Mon Sep 17 00:00:00 2001 From: Mia Croiset <mia.croiset@ens-lyon.fr> Date: Fri, 2 Feb 2024 13:41:25 +0100 Subject: [PATCH] fix use of arima for cutsite --- bin/hicstuff_cutsite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/hicstuff_cutsite.py b/bin/hicstuff_cutsite.py index a53466a..058c907 100755 --- a/bin/hicstuff_cutsite.py +++ b/bin/hicstuff_cutsite.py @@ -414,6 +414,6 @@ if __name__ == "__main__": elif enzyme == "mboi": enzyme = "MboI" elif enzyme == "arima": - enzyme = ["DpnII","HinfI"] + enzyme = "DpnII,HinfI" cut_ligation_sites(reads1, reads2, out1, out2, enzyme, mode, seed_size, n_cpu) -- GitLab