mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
0d53a34eed
* initiate agrvate module * remove todos [ci skip] * initiate fastani draft [ci skip] * clean stubs [ci skip] * interim commit [ci skip] * accomodate the batch/per-sample processing [ci skip] * use the meta map [ci skip] * run first test [ci skip] * remove extra spaces [ci skip] * change output file name [ci skip] * update the expected output [ci skip] * update the files used for test [ci skip] * fix typo [ci skip] * test passing [ci skip] * update the description * remove extra files * accomodate CR suggestions [ci skip] Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * accomodate CR suggestions [ci skip] Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * accomodate CR suggestions [ci skip] Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * use meta map for batch analysis * fix the tests * rely upon tuples * Apply suggestions from code review * Update main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
52 lines
1.6 KiB
Text
52 lines
1.6 KiB
Text
// Import generic module functions
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
params.options = [:]
|
|
options = initOptions(params.options)
|
|
|
|
process FASTANI {
|
|
tag "$meta.id"
|
|
label 'process_medium'
|
|
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::fastani=1.32" : null)
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
container "https://depot.galaxyproject.org/singularity/fastani:1.32--he1c1bb9_0"
|
|
} else {
|
|
container "quay.io/biocontainers/fastani:1.32--he1c1bb9_0"
|
|
}
|
|
|
|
input:
|
|
tuple val(meta), path(query)
|
|
path reference
|
|
|
|
output:
|
|
tuple val(meta), path("*.ani.txt"), emit: ani
|
|
path "*.version.txt" , emit: version
|
|
|
|
script:
|
|
def software = getSoftwareName(task.process)
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
|
|
|
if (meta.batch_input) {
|
|
"""
|
|
fastANI \\
|
|
-ql $query \\
|
|
-rl $reference \\
|
|
-o ${prefix}.ani.txt
|
|
|
|
echo \$(fastANI --version 2>&1) | sed 's/version//;' > ${software}.version.txt
|
|
"""
|
|
} else {
|
|
"""
|
|
fastANI \\
|
|
-q $query \\
|
|
-r $reference \\
|
|
-o ${prefix}.ani.txt
|
|
|
|
echo \$(fastANI --version 2>&1) | sed 's/version//;' > ${software}.version.txt
|
|
"""
|
|
}
|
|
}
|