mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
31 lines
963 B
Text
31 lines
963 B
Text
|
// Import generic module functions
|
||
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
||
|
|
||
|
process GFFREAD {
|
||
|
tag "$gff"
|
||
|
publishDir "${params.outdir}",
|
||
|
mode: params.publish_dir_mode,
|
||
|
saveAs: { filename -> saveFiles(filename:filename, options:options, publish_dir:getSoftwareName(task.process), publish_id:'') }
|
||
|
|
||
|
container "quay.io/biocontainers/gffread:0.11.7--h8b12597_0"
|
||
|
//container https://depot.galaxyproject.org/singularity/gffread:0.11.7--h8b12597_0
|
||
|
|
||
|
conda (params.conda ? "bioconda::gffread=0.11.7" : null)
|
||
|
|
||
|
input:
|
||
|
path gff
|
||
|
val options
|
||
|
|
||
|
output:
|
||
|
path "*.gtf" , emit: gtf
|
||
|
path "*.version.txt", emit: version
|
||
|
|
||
|
script:
|
||
|
def software = getSoftwareName(task.process)
|
||
|
def ioptions = initOptions(options)
|
||
|
"""
|
||
|
gffread $gff $ioptions.args -o ${gff.baseName}.gtf
|
||
|
echo \$(gffread --version 2>&1) > ${software}.version.txt
|
||
|
"""
|
||
|
}
|