Skip to content
Snippets Groups Projects
main.nf 2.31 KiB
Newer Older
version = "2.3.4.1"
container_url = "lbmc/bowtie2:${version}"
params.index_fasta_out = ""
process index_fasta {
  container = "${container_url}"
  label "big_mem_multi_cpus"
  tag "$file_id"
  if (params.index_fasta_out != "") {
    publishDir "results/${params.index_fasta_out}", mode: 'copy'
  }
    tuple val(file_id), path(fasta)
    tuple val(file_id), path("*.index*"), emit: index
    tuple val(file_id), path("*_report.txt"), emit: report

  script:
"""
bowtie2-build --threads ${task.cpus} \
  ${fasta} \
  ${fasta.baseName}.index &> \
  ${fasta.baseName}_bowtie2_index_report.txt

if grep -q "Error" ${fasta.baseName}_bowtie2_index_report.txt; then
  exit 1
fi
"""
}

params.mapping_fastq = "--very-sensitive"
params.mapping_fastq_out = ""
process mapping_fastq {
  container = "${container_url}"
  label "big_mem_multi_cpus"
  tag "$file_id"
  if (params.mapping_fastq_out != "") {
    publishDir "results/${params.mapping_fastq_out}", mode: 'copy'
  tuple val(index_id), path(index)
  tuple val(file_id), path(reads)
  tuple val(file_id), path("*.bam"), emit: bam
  path "*_report.txt", emit: report

  script:
  index_id = index[0]
  for (index_file in index) {
    if (index_file =~ /.*\.1\.bt2/ && !(index_file =~ /.*\.rev\.1\.bt2/)) {
        index_id = ( index_file =~ /(.*)\.1\.bt2/)[0][1]
    }
  }
  if (file_id instanceof List){
    file_prefix = file_id[0]
  } else {
    file_prefix = file_id
  if (reads.size() == 2)
  """
  bowtie2 ${params.mapping_fastq} \
    -p ${task.cpus} \
    -x ${index_id} \
    -1 ${reads[0]} \
    -2 ${reads[1]} 2> \
    ${file_prefix}_bowtie2_mapping_report_tmp.txt | \
    samtools view -Sb - > ${file_prefix}.bam

  if grep -q "Error" ${file_prefix}_bowtie2_mapping_report_tmp.txt; then
    exit 1
  fi
  tail -n 19 ${file_prefix}_bowtie2_mapping_report_tmp.txt > \
    ${file_prefix}_bowtie2_mapping_report.txt
  """
  """
  bowtie2 ${params.mapping_fastq} \
    -p ${task.cpus} \
    -x ${index_id} \
    -U ${reads} 2> \
    ${file_prefix}_bowtie2_mapping_report_tmp.txt | \
    samtools view -Sb - > ${file_prefix}.bam

  if grep -q "Error" ${file_prefix}_bowtie2_mapping_report_tmp.txt; then
    exit 1
  fi
  tail -n 19 ${file_prefix}_bowtie2_mapping_report_tmp.txt > \
    ${file_prefix}_bowtie2_mapping_report.txt
  """