mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-18 02:46:13 -05:00
output constant sites as a val so it can be passed into iqtree (#429)
* output constant sites as a val as well as a file so it can be passed into iqtree * Using an env variable because that's far safer! * Update software/snpsites/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
This commit is contained in:
parent
ec15bae344
commit
212177d479
1 changed files with 3 additions and 0 deletions
|
@ -24,6 +24,7 @@ process SNPSITES {
|
||||||
path "*.fas" , emit: fasta
|
path "*.fas" , emit: fasta
|
||||||
path "*.sites.txt" , emit: constant_sites
|
path "*.sites.txt" , emit: constant_sites
|
||||||
path "*.version.txt", emit: version
|
path "*.version.txt", emit: version
|
||||||
|
env CONSTANT_SITES, emit: constant_sites_string
|
||||||
|
|
||||||
script:
|
script:
|
||||||
def software = getSoftwareName(task.process)
|
def software = getSoftwareName(task.process)
|
||||||
|
@ -34,6 +35,8 @@ process SNPSITES {
|
||||||
|
|
||||||
echo \$(snp-sites -C $alignment) > constant.sites.txt
|
echo \$(snp-sites -C $alignment) > constant.sites.txt
|
||||||
|
|
||||||
|
CONSTANT_SITES=\$(cat constant.sites.txt)
|
||||||
|
|
||||||
echo \$(snp-sites -V 2>&1) | sed 's/snp-sites //' > ${software}.version.txt
|
echo \$(snp-sites -V 2>&1) | sed 's/snp-sites //' > ${software}.version.txt
|
||||||
"""
|
"""
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue