2020-09-10 15:45:11 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
2020-10-14 17:29:50 +00:00
|
|
|
params.options = [:]
|
2021-03-15 12:16:43 +00:00
|
|
|
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"
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2020-10-14 17:29:50 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:'') }
|
2020-09-10 15:45:11 +00:00
|
|
|
|
2021-02-16 23:58:23 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::hisat2=2.2.0" : null)
|
2020-12-13 23:41:53 +00:00
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/hisat2:2.2.0--py37hfa133b6_4"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/hisat2:2.2.0--py37hfa133b6_4"
|
|
|
|
}
|
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 "*.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
|
|
|
|
"""
|
|
|
|
}
|