We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3676776 commit 5a7c685Copy full SHA for 5a7c685
config/modules.config
@@ -60,16 +60,10 @@ process {
60
process {
61
withName: SPLIT_DREP_MAIN {
62
publishDir = [
63
- path: "${params.outdir}",
64
- saveAs: { filename ->
65
- def output_file = file(filename)
66
- if ( output_file.name == "clusters_split.txt" ) {
67
- return "additional_data/intermediate_files/clusters_split.txt"
68
- }
69
- return null
70
- },
71
- mode: "copy",
72
- failOnError: true
+ path: "${params.outdir}/additional_data/intermediate_files",
+ pattern: "clusters_split.txt",
+ mode: "copy",
+ failOnError: true
73
]
74
}
75
0 commit comments