Skip to content
Snippets Groups Projects
Verified Commit de8c91a8 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

main.nf: fix typo :38 and :42

parent c9fa48c2
No related branches found
No related tags found
No related merge requests found
...@@ -35,11 +35,11 @@ workflow { ...@@ -35,11 +35,11 @@ workflow {
COLLATEKMER( COLLATEKMER(
MERGEKMER.out.csv MERGEKMER.out.csv
.filter{ it[0].sex == "male" } .filter{ it[0].sex == "male" }
.map{ it -> [it[0].specice, it[1]]} .map{ it -> [it[0].specie, it[1]]}
.join( .join(
MERGEKMER.out.csv MERGEKMER.out.csv
.filter{ it[0].sex == "female" } .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()) KMERCLUST_LOAD(COLLATEKMER.out.csv, params_csv.collect())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment