mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
2294ff7826
* add ncbi-genome-download module * Update modules/ncbigenomedownload/main.nf Co-authored-by: Gregor Sturm <mail@gregor-sturm.de> Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
56 lines
2.6 KiB
Text
56 lines
2.6 KiB
Text
// Import generic module functions
|
|
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
|
|
|
|
params.options = [:]
|
|
options = initOptions(params.options)
|
|
|
|
process NCBIGENOMEDOWNLOAD {
|
|
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::ncbi-genome-download=0.3.0" : null)
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
container "https://depot.galaxyproject.org/singularity/ncbi-genome-download:0.3.0--pyh864c0ab_1"
|
|
} else {
|
|
container "quay.io/biocontainers/ncbi-genome-download:0.3.0--pyh864c0ab_1"
|
|
}
|
|
|
|
input:
|
|
val meta
|
|
path accessions
|
|
|
|
output:
|
|
tuple val(meta), path("*_genomic.gbff.gz") , emit: gbk , optional: true
|
|
tuple val(meta), path("*_genomic.fna.gz") , emit: fna , optional: true
|
|
tuple val(meta), path("*_rm.out.gz") , emit: rm , optional: true
|
|
tuple val(meta), path("*_feature_table.txt.gz") , emit: features, optional: true
|
|
tuple val(meta), path("*_genomic.gff.gz") , emit: gff , optional: true
|
|
tuple val(meta), path("*_protein.faa.gz") , emit: faa , optional: true
|
|
tuple val(meta), path("*_protein.gpff.gz") , emit: gpff , optional: true
|
|
tuple val(meta), path("*_wgsmaster.gbff.gz") , emit: wgs_gbk , optional: true
|
|
tuple val(meta), path("*_cds_from_genomic.fna.gz"), emit: cds , optional: true
|
|
tuple val(meta), path("*_rna.fna.gz") , emit: rna , optional: true
|
|
tuple val(meta), path("*_rna_from_genomic.fna.gz"), emit: rna_fna , optional: true
|
|
tuple val(meta), path("*_assembly_report.txt") , emit: report , optional: true
|
|
tuple val(meta), path("*_assembly_stats.txt") , emit: stats , optional: true
|
|
path "versions.yml" , emit: versions
|
|
|
|
script:
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
|
def accessions_opt = accessions ? "-A ${accessions}" : ""
|
|
"""
|
|
ncbi-genome-download \\
|
|
$options.args \\
|
|
$accessions_opt \\
|
|
--output-folder ./ \\
|
|
--flat-output
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
${getProcessName(task.process)}:
|
|
${getSoftwareName(task.process)}: \$( ncbi-genome-download --version )
|
|
END_VERSIONS
|
|
"""
|
|
}
|