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 {
library = file_id.library
file_prefix = file_id.id
} else {
library = file_id
file_prefix = file_id
library = file_id[0]
file_prefix = file_id[0]
}
} else {
library = file_id
file_prefix = file_id
}
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.
Finish editing this message first!
Please register or to comment