nf-core_modules/software/hisat2/extractsplicesites/main.nf
2020-11-12 14:55:16 +00:00

30 lines
868 B
Text

// Import generic module functions
include { saveFiles; getSoftwareName } from './functions'
params.options = [:]
def VERSION = '2.2.0'
process HISAT2_EXTRACTSPLICESITES {
tag "$gtf"
publishDir "${params.outdir}",
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:'') }
conda (params.enable_conda ? "bioconda::hisat2=2.2.0" : null)
container "quay.io/biocontainers/hisat2:2.2.0--py37hfa133b6_4"
input:
path gtf
output:
path "*.splice_sites.txt", emit: txt
path "*.version.txt" , emit: version
script:
def software = getSoftwareName(task.process)
"""
hisat2_extract_splice_sites.py $gtf > ${gtf.baseName}.splice_sites.txt
echo $VERSION > ${software}.version.txt
"""
}