Skip to content

Commit 259c093

Browse files
committed
Updated tpv with bwa-mem2 rule
1 parent a0343f2 commit 259c093

1 file changed

Lines changed: 20 additions & 1 deletion

File tree

ansible/files/galaxy/config/tpv_rules_local.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,29 @@ tools:
7171
toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/.*:
7272
cores: min(max(int(input_size * 4), 1), 16)
7373
mem: min(max(int(input_size * 7), 5.6), 120)
74-
7574
toolshed.g2.bx.psu.edu/repos/bgruening/sylph_profile/sylph_profile/.*:
7675
cores: 4
7776
mem: 16
77+
toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/.*:
78+
cores: 32
79+
mem: 240
80+
rules:
81+
- id: bwa_mem2_small_input_rule
82+
if: input_size < 0.1
83+
cores: 2
84+
mem: 5.6
85+
- id: bwa_mem2_medium_input_rule
86+
if: 0.1 <= input_size < 1
87+
cores: 4
88+
mem: 14
89+
- id: bwa_mem2_large_input_rule
90+
if: 1 <= input_size < 20
91+
cores: 8
92+
mem: 28
93+
- id: bwa_mem2_pretty_large_input_rule
94+
if: 20 <= input_size < 100
95+
cores: 16
96+
mem: 120
7897

7998
roles:
8099
training.*:

0 commit comments

Comments
 (0)