From de8c91a86045b0cb0e2a4def4b142dd7805a8c1a Mon Sep 17 00:00:00 2001 From: Laurent Modolo <laurent.modolo@ens-lyon.fr> Date: Wed, 6 Dec 2023 10:03:59 +0100 Subject: [PATCH] main.nf: fix typo :38 and :42 --- src/main.nf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.nf b/src/main.nf index 9f55cb0..a10faf1 100644 --- a/src/main.nf +++ b/src/main.nf @@ -35,11 +35,11 @@ workflow { COLLATEKMER( MERGEKMER.out.csv .filter{ it[0].sex == "male" } - .map{ it -> [it[0].specice, it[1]]} + .map{ it -> [it[0].specie, it[1]]} .join( MERGEKMER.out.csv .filter{ it[0].sex == "female" } - .map{ it -> [it[0].specice, it[1]]} + .map{ it -> [it[0].specie, it[1]]} ) ) KMERCLUST_LOAD(COLLATEKMER.out.csv, params_csv.collect()) -- GitLab