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

bwa: fix library variable definition

parent edd36c5b
No related branches found
No related tags found
No related merge requests found
...@@ -52,10 +52,11 @@ process mapping_fastq { ...@@ -52,10 +52,11 @@ process mapping_fastq {
library = file_id.library library = file_id.library
file_prefix = file_id.id file_prefix = file_id.id
} else { } else {
library = file_id library = file_id[0]
file_prefix = file_id file_prefix = file_id[0]
} }
} else { } else {
library = file_id
file_prefix = file_id file_prefix = file_id
} }
bwa_mem_R = "@RG\\tID:${library}\\tSM:${library}\\tLB:lib_${library}\\tPL:illumina" bwa_mem_R = "@RG\\tID:${library}\\tSM:${library}\\tLB:lib_${library}\\tPL:illumina"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment