This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Snakefile
92 lines (59 loc) · 2.2 KB
/
Snakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import pandas as pd
import yaml
from pathlib import Path
from snakemake.utils import validate, min_version
##### set minimum snakemake version #####
min_version("5.5.4")
wildcard_constraints:
enzyme="[^_]+",
run_id="[^_]+",
batch_id="batch\d+",
BASE_DIR = Path(workflow.basedir)
### Validation of schemas ###
##### load config and sample sheets ##
configfile: BASE_DIR / "config/config.yaml"
##### load rules #####
include: "rules/common.smk" # python helper functions
basecall_df, reference_df, mapping_df = create_config_dataframes()
paths = create_path_accessor()
include: "rules/refgenome.smk" # prepare the reference genome
include: "rules/reads.smk" # import fastqs, fast5s, sequencing summary
include: "rules/mapping.smk" # map and process resulting alignments
include: "rules/exports.smk" # export to alternative formats
include: "rules/methylation.smk" # use f5c to call cpg methylation
##### output paths #####
rule all:
input:
basecalls=expand_rows(paths.basecall.catalog, basecall_df),
refgenome=expand_rows(paths.refgenome.bwt, reference_df),
contacts=expand_rows(paths.merged_contacts.concatemers, mapping_df),
rule cooler:
input:
expand_rows(paths.matrix.mcool, mapping_df),
rule pairs:
input:
expand_rows(paths.pairs.index, mapping_df),
rule salsa:
input:
expand_rows(paths.assembly.salsa_bed, mapping_df),
rule juicer:
input:
expand_rows(paths.juicebox.hic, mapping_df),
rule mnd:
input:
expand_rows(paths.juicebox.mnd, mapping_df),
rule f5c_indexes:
# Create f5c indexes, but do not call methylation
input:
expand_rows(paths.basecall.f5c_index_all, mapping_df),
rule methylation:
input:
expand_rows(paths.methylation.per_locus_methylation, mapping_df),
rule test:
input:
expand_rows(paths.merged_contacts.concatemers, mapping_df),
expand_rows(paths.matrix.mcool, mapping_df), #expand_rows(paths.matrix.haplotyped_cools, mapping_df),
expand_rows(paths.pairs.index, mapping_df),
expand_rows(paths.assembly.salsa_bed, mapping_df),
expand_rows(paths.juicebox.hic, mapping_df),
expand_rows(paths.juicebox.mnd, mapping_df),