aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/snakemake/blocks.smk
blob: fc10e7ae3ce1d7cfbb6e10ea6e2da1a0baabd83c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
rule A:
    """doc"""

if True:
    rule B:
        """doc"""

use rule other from somewhere

use rule other2 from somewhere as other_alias

use rule other3 from somewhere with:
    input: 2

use rule other4 from somewhere as other_alias2 with:
    input: 2

checkpoint C:
    input: "1"

module A:
    snakefile: "x.smk"