Hi. I succesfully tried bowtie2 as aligner by installing bowtie2 in the docker image, then replacing the aligner code in main.nf with the code below. Everything seems to work fine but of course all results are in the results/bwa folder. I wonder if it would be nice to let the user choose between BWA-mem, or Bowtie2. Ivo
"""
bowtie2 \\
-p $task.cpus \\
-x ${index}/${bwa_base} \\
-U $reads \\
| samtools view -@ $task.cpus -b -h -F 0x0100 -O BAM -o ${prefix}.bam -
"""
Hi. I succesfully tried bowtie2 as aligner by installing bowtie2 in the docker image, then replacing the aligner code in main.nf with the code below. Everything seems to work fine but of course all results are in the results/bwa folder. I wonder if it would be nice to let the user choose between BWA-mem, or Bowtie2. Ivo