@@ -9,13 +9,13 @@ rule pansnspec_toref:
9
9
config ['output' ] + '/wfmash/target.fa'
10
10
threads :
11
11
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'
19
19
shell :
20
20
'''
21
21
samtools faidx \
@@ -26,33 +26,33 @@ rule pansnspec_toref:
26
26
'''
27
27
28
28
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' ],
34
34
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' ],
48
48
tmpdir = config ['wfmash' ]['tmpdir' ]
49
- shell :
50
- '''
49
+ shell :
50
+ '''
51
51
wfmash \
52
52
{input.target} \
53
53
{input.asm} \
54
54
-X \
55
55
-t {threads} \
56
56
-B {params.tmpdir} \
57
57
{params.flags}
58
- '''
58
+ '''
0 commit comments