We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc6dfc1 commit 3676776Copy full SHA for 3676776
config/modules.config
@@ -18,14 +18,8 @@ process {
18
process {
19
withName: DREP_CATALOGUE {
20
publishDir = [
21
- path: "${params.outdir}",
22
- saveAs: { filename ->
23
- def result_file = file(filename)
24
- if ( result_file.name == "drep_data_tables.tar.gz" ) {
25
- return "additional_data/intermediate_files/drep_data_tables.tar.gz"
26
- }
27
- return null
28
- },
+ path: "${params.outdir}/additional_data/intermediate_files",
+ pattern: "drep_data_tables.tar.gz",
29
mode: 'copy',
30
failOnError: true
31
]
0 commit comments