nf-core_modules/modules/hisat2/extractsplicesites/main.nf

39 lines
1.2 KiB
Text
Raw Normal View History

2020-09-10 15:45:11 +00:00
// Import generic module functions
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
2020-09-10 15:45:11 +00:00
2020-10-14 17:29:50 +00:00
params.options = [:]
options = initOptions(params.options)
2020-10-14 17:29:50 +00:00
2020-09-10 15:45:11 +00:00
def VERSION = '2.2.0'
process HISAT2_EXTRACTSPLICESITES {
tag "$gtf"
label 'process_medium'
2020-09-10 15:45:11 +00:00
publishDir "${params.outdir}",
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:[:], publish_by_meta:[]) }
2020-09-10 15:45:11 +00:00
conda (params.enable_conda ? 'bioconda::hisat2=2.2.1' : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/hisat2:2.2.1--h1b792b2_3"
} else {
container "quay.io/biocontainers/hisat2:2.2.1--h1b792b2_3"
}
2020-12-17 23:50:24 +00:00
2020-09-10 15:45:11 +00:00
input:
path gtf
output:
path "*.splice_sites.txt", emit: txt
path "versions.yml" , emit: versions
2020-09-10 15:45:11 +00:00
script:
"""
hisat2_extract_splice_sites.py $gtf > ${gtf.baseName}.splice_sites.txt
cat <<-END_VERSIONS > versions.yml
${getProcessName(task.process)}:
${getSoftwareName(task.process)}: \$(echo $VERSION)
END_VERSIONS
2020-09-10 15:45:11 +00:00
"""
}