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

main.nf: keep r2 id information

parent 7d211e60
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ Channel.fromPath( file(params.csv) ) ...@@ -17,7 +17,7 @@ Channel.fromPath( file(params.csv) )
fastq_r1 = file("${row.r1}") fastq_r1 = file("${row.r1}")
fastq_r2 = file("${row.r2}") fastq_r2 = file("${row.r2}")
r1: [['id': fastq_r1.simpleName, 'specie': row.specie, 'sex': row.sex, 'read': 'r1'], fastq_r1] r1: [['id': fastq_r1.simpleName, 'specie': row.specie, 'sex': row.sex, 'read': 'r1'], fastq_r1]
r2: [['id': fastq_r1.simpleName, 'specie': row.specie, 'sex': row.sex, 'read': 'r2'], fastq_r2] r2: [['id': fastq_r2.simpleName, 'specie': row.specie, 'sex': row.sex, 'read': 'r2'], fastq_r2]
} }
.set{ fastq } .set{ fastq }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment