From 9024d889fd618bce0439cb2b012ff0937afe4597 Mon Sep 17 00:00:00 2001
From: Laurent Modolo <laurent.modolo@ens-lyon.fr>
Date: Thu, 26 Oct 2023 17:52:05 +0200
Subject: [PATCH] main.nf: change channel factory :35

---
 src/main.nf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.nf b/src/main.nf
index 848adb8..2c60025 100644
--- a/src/main.nf
+++ b/src/main.nf
@@ -35,7 +35,7 @@ workflow {
   COLLATEKMER(MERGEKMER.out.csv.map{it -> [it[0].specie, it[1]] }.groupTuple())
   KMERCLUST_LOAD(COLLATEKMER.out.csv, params_csv.collect())
   KMERCLUST_BOOT(Channel.of(1..params.bootstrap).combine(KMERCLUST_LOAD.out.rdata))
-  KMERCLUST_CLUST(Channel.of(["XY", "XO", "OO"]).combine(KMERCLUST_LOAD.out.rdata))
+  KMERCLUST_CLUST(Channel.from(["XY", "XO", "OO"]).combine(KMERCLUST_LOAD.out.rdata))
   KMERCLUST_MERGE(KMERCLUST_BOOT.out.rdata.groupTuple())
   KMERCLUST_PLOT(KMERCLUST_MERGE.out.rdata.mix(KMERCLUST_LOAD.out.rdata).groupTuple())
 }
-- 
GitLab