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

SNP_calling.nf: add RG info in bowtie22

parent 2555926a
No related branches found
No related tags found
No related merge requests found
......@@ -129,6 +129,9 @@ process mapping_fastq {
}
"""
bowtie2 --very-sensitive -p ${task.cpus} -x ${index_id} \
--rg-id ${sample_name} \
--rg SM:${sample_name} \
--rg PL:Illumina \
-1 ${reads[0]} -2 ${reads[1]} 2> \
${pair_id}_bowtie2_report.txt | \
samtools view -Sb - > ${pair_id}.bam
......
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