2021-09-16 10:48:18 +00:00
|
|
|
// Import generic module functions
|
2021-09-27 08:41:24 +00:00
|
|
|
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
|
2021-09-16 10:48:18 +00:00
|
|
|
|
|
|
|
params.options = [:]
|
|
|
|
options = initOptions(params.options)
|
|
|
|
|
|
|
|
process PBCCS {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_low'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
|
|
|
|
|
|
|
|
conda (params.enable_conda ? "bioconda::pbccs=6.0.0" : null)
|
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/pbccs:6.0.0--h9ee0642_2"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/pbccs:6.0.0--h9ee0642_2"
|
|
|
|
}
|
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(bam), path(pbi)
|
|
|
|
val chunk_num
|
|
|
|
val chunk_on
|
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.ccs.bam") , emit: bam
|
|
|
|
tuple val(meta), path("*.ccs.bam.pbi") , emit: pbi
|
|
|
|
tuple val(meta), path("*.ccs_report.txt" ) , emit: ccs_report_txt
|
|
|
|
tuple val(meta), path("*.ccs_report.json" ) , emit: ccs_report_json
|
|
|
|
tuple val(meta), path("*.zmw_metrics.json.gz"), emit: zmw_metrics
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-09-16 10:48:18 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
def ccs = bam.toString().replaceAll(/bam$/, '') + chunk_num + '.ccs.bam'
|
|
|
|
def report_txt = bam.toString().replaceAll(/bam$/, '') + chunk_num + '.ccs_report.txt'
|
|
|
|
def report_json = bam.toString().replaceAll(/bam$/, '') + chunk_num + '.ccs_report.json'
|
|
|
|
def zmw_metrics = bam.toString().replaceAll(/bam$/, '') + chunk_num + '.zmw_metrics.json.gz'
|
|
|
|
"""
|
|
|
|
ccs \\
|
|
|
|
$bam \\
|
|
|
|
$ccs \\
|
|
|
|
--report-file $report_txt \\
|
|
|
|
--report-json $report_json \\
|
|
|
|
--metrics-json $zmw_metrics \\
|
|
|
|
--chunk $chunk_num/$chunk_on \\
|
|
|
|
-j $task.cpus \\
|
|
|
|
$options.args
|
|
|
|
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
${getProcessName(task.process)}:
|
2021-09-28 16:33:07 +00:00
|
|
|
${getSoftwareName(task.process)}: \$(echo \$(ccs --version 2>&1) | grep 'ccs' | sed 's/^.*ccs //; s/ .*\$//')
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2021-09-16 10:48:18 +00:00
|
|
|
"""
|
|
|
|
}
|