refactor: Change output directory to match haplotypes
This commit is contained in:
parent
4751203579
commit
002bd44975
2 changed files with 3 additions and 3 deletions
4
main.nf
4
main.nf
|
@ -49,7 +49,7 @@ workflow {
|
|||
)
|
||||
HAPLINK_RAW_HAPLOTYPES
|
||||
.out
|
||||
.map{ [ it[0], 'raw', it[1] ] }
|
||||
.map{ [ it[0], 'HAPLINK_RAW_HAPLOTYPES', it[1] ] }
|
||||
.set{ ch_raw_haplotypes }
|
||||
|
||||
HAPLINK_ML_HAPLOTYPES(
|
||||
|
@ -58,7 +58,7 @@ workflow {
|
|||
)
|
||||
HAPLINK_ML_HAPLOTYPES
|
||||
.out
|
||||
.map{ [ it[0], 'ml', it[1] ] }
|
||||
.map{ [ it[0], 'HAPLINK_ML_HAPLOTYPES', it[1] ] }
|
||||
.set{ ch_ml_haplotypes }
|
||||
|
||||
ch_raw_haplotypes
|
||||
|
|
|
@ -11,7 +11,7 @@ process HAPLINK_SEQUENCES {
|
|||
output:
|
||||
tuple val(prefix), val(method), path("*.fasta")
|
||||
|
||||
publishDir "results/${method}-haplotypes", mode: 'copy'
|
||||
publishDir "results/${method}", mode: 'copy'
|
||||
|
||||
script:
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue