Skip to content

Commit 76537f9

Browse files
committed
add -tsd_time option for tsd processes
1 parent 336eeb5 commit 76537f9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

main.nf

+4
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ params.pangenie_time = "12h"
5555
params.repeatmasker_time = "12h"
5656
params.tsd_memory = "10G"
5757
params.merge_vcf_memory = "10G"
58+
params.tsd_time = "1h"
5859

5960
// SAY HELLO
6061

@@ -355,6 +356,7 @@ process repeatmask_VCF {
355356

356357
process tsd_prep {
357358
memory params.tsd_memory
359+
time params.tsd_time
358360

359361
input:
360362
path("genotypes_repmasked_filtered.vcf")
@@ -377,6 +379,7 @@ process tsd_prep {
377379

378380
process tsd_search {
379381
memory params.tsd_memory
382+
time params.tsd_time
380383

381384
input:
382385
file indels
@@ -399,6 +402,7 @@ process tsd_search {
399402

400403
process tsd_report {
401404
memory params.tsd_memory
405+
time params.tsd_time
402406
publishDir "${params.out}/3_TSD_search", mode: 'copy'
403407

404408
input:

0 commit comments

Comments
 (0)