nf-core_modules/software/hifiasm/main.nf

53 lines
1.9 KiB
Text
Raw Normal View History

2021-03-16 09:54:29 +00:00
// Import generic module functions
include { initOptions; saveFiles; getSoftwareName } from './functions'
params.options = [:]
options = initOptions(params.options)
2021-03-16 13:14:43 +00:00
process HIFIASM {
//tag "$meta.id"
label 'process_high'
2021-03-16 09:54:29 +00:00
publishDir "${params.outdir}",
mode: params.publish_dir_mode,
2021-03-16 13:14:43 +00:00
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:'') } // publish_id:meta.id) }
2021-03-16 09:54:29 +00:00
2021-03-16 13:14:43 +00:00
conda (params.enable_conda ? "bioconda::hifiasm=0.14" : null)
2021-03-16 09:54:29 +00:00
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
2021-03-16 13:14:43 +00:00
container "https://depot.galaxyproject.org/singularity/hifiasm:0.14--h8b12597_0"
2021-03-16 09:54:29 +00:00
} else {
2021-03-16 13:14:43 +00:00
container "quay.io/biocontainers/hifiasm:0.14--h8b12597_0"
2021-03-16 09:54:29 +00:00
}
2021-03-16 13:14:43 +00:00
/* input:
tuple val(meta), path(reads) */
2021-03-16 09:54:29 +00:00
output:
2021-03-16 13:14:43 +00:00
/* tuple val(meta), path("*.html"), emit: html
tuple val(meta), path("*.zip") , emit: zip */
2021-03-16 09:54:29 +00:00
path "*.version.txt" , emit: version
script:
// Add soft-links to original FastQs for consistent naming in pipeline
def software = getSoftwareName(task.process)
2021-03-16 13:14:43 +00:00
//def prefix = options.suffix ? "${meta.id}.${options.suffix}" : "${meta.id}"
2021-03-16 15:55:59 +00:00
2021-03-16 13:14:43 +00:00
/* if (meta.single_end) {
2021-03-16 09:54:29 +00:00
"""
[ ! -f ${prefix}.fastq.gz ] && ln -s $reads ${prefix}.fastq.gz
fastqc $options.args --threads $task.cpus ${prefix}.fastq.gz
fastqc --version | sed -e "s/FastQC v//g" > ${software}.version.txt
"""
} else {
"""
[ ! -f ${prefix}_1.fastq.gz ] && ln -s ${reads[0]} ${prefix}_1.fastq.gz
[ ! -f ${prefix}_2.fastq.gz ] && ln -s ${reads[1]} ${prefix}_2.fastq.gz
fastqc $options.args --threads $task.cpus ${prefix}_1.fastq.gz ${prefix}_2.fastq.gz
fastqc --version | sed -e "s/FastQC v//g" > ${software}.version.txt
"""
2021-03-16 13:14:43 +00:00
} */
"""
hifiasm --version > ${software}.version.txt || exit 0
"""
2021-03-16 09:54:29 +00:00
}