Skip to content

Commit 3bc6f59

Browse files
correct indentation in wfmash rule
1 parent b0c3994 commit 3bc6f59

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

cosigt_smk/workflow/rules/wfmash.smk

+28-28
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ rule pansnspec_toref:
99
config['output'] + '/wfmash/target.fa'
1010
threads:
1111
1
12-
resources:
13-
mem_mb=lambda wildcards, attempt: attempt * config['default']['mem_mb'],
14-
time=lambda wildcards, attempt: attempt * config['default']['time']
15-
container:
16-
'docker://davidebolo1993/cosigt_workflow:latest'
17-
benchmark:
18-
'benchmarks/pansnspec_toref.benchmark.txt'
12+
resources:
13+
mem_mb=lambda wildcards, attempt: attempt * config['default']['mem_mb'],
14+
time=lambda wildcards, attempt: attempt * config['default']['time']
15+
container:
16+
'docker://davidebolo1993/cosigt_workflow:latest'
17+
benchmark:
18+
'benchmarks/pansnspec_toref.benchmark.txt'
1919
shell:
2020
'''
2121
samtools faidx \
@@ -26,33 +26,33 @@ rule pansnspec_toref:
2626
'''
2727

2828
rule wfmash_align:
29-
'''
30-
https://github.com/waveygang/wfmash
31-
'''
32-
input:
33-
asm=config['assemblies'],
29+
'''
30+
https://github.com/waveygang/wfmash
31+
'''
32+
input:
33+
asm=config['assemblies'],
3434
target=rules.pansnspec_toref.output
35-
output:
36-
config['output'] + '/wfmash/{region}.paf'
37-
threads:
38-
config['wfmash']['threads']
39-
resources:
40-
mem_mb=lambda wildcards, attempt: attempt * config['wfmash']['mem_mb'],
41-
time=lambda wildcards, attempt: attempt * config['wfmash']['time']
42-
container:
43-
'docker://davidebolo1993/cosigt_workflow:latest'
44-
benchmark:
45-
'benchmarks/{region}.wfmash_align.benchmark.txt'
46-
params:
47-
flags=config['wfmash']['params'],
35+
output:
36+
config['output'] + '/wfmash/{region}.paf'
37+
threads:
38+
config['wfmash']['threads']
39+
resources:
40+
mem_mb=lambda wildcards, attempt: attempt * config['wfmash']['mem_mb'],
41+
time=lambda wildcards, attempt: attempt * config['wfmash']['time']
42+
container:
43+
'docker://davidebolo1993/cosigt_workflow:latest'
44+
benchmark:
45+
'benchmarks/{region}.wfmash_align.benchmark.txt'
46+
params:
47+
flags=config['wfmash']['params'],
4848
tmpdir=config['wfmash']['tmpdir']
49-
shell:
50-
'''
49+
shell:
50+
'''
5151
wfmash \
5252
{input.target} \
5353
{input.asm} \
5454
-X \
5555
-t {threads} \
5656
-B {params.tmpdir} \
5757
{params.flags}
58-
'''
58+
'''

0 commit comments

Comments
 (0)