-
Notifications
You must be signed in to change notification settings - Fork 1
/
Snakefile
59 lines (46 loc) · 1.97 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
__author__ = "Taavi Päll"
__copyright__ = "Copyright 2020, Avilab"
__email__ = "taavi.pall@ut.ee"
__license__ = "MIT"
# Load libraries
import os
import pandas as pd
from snakemake.utils import validate, makedirs
from snakemake.utils import min_version
# Check for minimal version
min_version("5.12.3")
# Load configuration file with group and path info
configfile: "config.yaml"
validate(config, "schemas/config.schema.yaml")
# Load samples
def run_index_dict(df, level=0):
L = [{k: v.to_list()} for k,v in list(df.groupby(level=level)["run"])]
return {k: v for d in L for k, v in d.items()}
df = pd.read_csv("samples.tsv", sep="\s+", dtype=str).set_index(["group","sample","run"], drop=False).sort_index()
validate(df, "schemas/samples.schema.yaml")
# Sequencing run groups for contigs co-assembly
groups = run_index_dict(df, level=0)
# Sequencing run groups/biosamples for contigs mapping
samples = run_index_dict(df, level=1)
GROUP = [group for group,sample,run in df.index.tolist()]
SAMPLE = [sample for group,sample,run in df.index.tolist()]
RUN = [run for group,sample,run in df.index.tolist()]
N = list(range(0, config["splits"], 1))
# Path to reference genomes
HOST_GENOME = os.getenv("REF_GENOME_HUMAN_MASKED")
TAXON_DB = os.getenv("TAXON_DB")
# Wrappers Github repo: https://github.com/avilab/virome-wrappers
WRAPPER_PREFIX = "https://raw.githubusercontent.com/avilab/virome-wrappers"
# Report
report: "rules/report/workflow.rst"
rule all:
input:
expand(["output/{group}/multiqc.html", "output/{group}/contigs-fixed.fa", "output/{group}/viruses.csv", "output/{group}/non-viral.csv", "output/{group}/unassigned.fa"], group = list(groups.keys())),
expand(["output/{group}/{sample}/covstats.txt", "output/{group}/{sample}/lofreq.vcf"], zip, group = GROUP, sample = SAMPLE)
include: "rules/common.smk"
include: "rules/preprocess.smk"
include: "rules/assembly.smk"
include: "rules/mapping.smk"
include: "rules/qc.smk"
include: "rules/mask.smk"
include: "rules/blast.smk"