mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 02:58:17 +00:00
Fix bug in gffread module
Update the output name in the command so it does no fail when the input has a .gtf extension.
This commit is contained in:
parent
0f59b07945
commit
6b71e72ca5
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ process GFFREAD {
|
||||||
script:
|
script:
|
||||||
def software = getSoftwareName(task.process)
|
def software = getSoftwareName(task.process)
|
||||||
"""
|
"""
|
||||||
gffread $gff $options.args -o ${gff.baseName}.gtf
|
gffread $gff $options.args -o ${gff.baseName}.out.gtf
|
||||||
echo \$(gffread --version 2>&1) > ${software}.version.txt
|
echo \$(gffread --version 2>&1) > ${software}.version.txt
|
||||||
"""
|
"""
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue