-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSnakefile
68 lines (62 loc) · 1.72 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
#!/usr/bin python3
# coding=utf-8
__author__ = "Jean-Michel Garant"
__copyright__ = "Copyright (C) 2020, " + __author__
__email__ = "[email protected]"
__license__ = "GPLv3"
include: "snakefiles/comparative.snake"
configfile: "configs/sample_config.yaml"
rule slurmgpu:
"""
Jobs submission on dlhosts (guppy).
"""
input:
expand(
os.path.join(
"data",
"{sample}",
"guppy_basecall",
"sequencing_summary.txt"),
sample=list(config["samples"].keys())),
rule numbers:
"""
Jobs submission on numbers (tailfindr).
"""
input:
expand(
os.path.join(
"data",
"{sample}",
"tailfindr",
"polya_tails.csv"),
sample=list(config["samples"].keys())),
rule general:
"""
Set of jobs to be run on any cpu ressources.
"""
input:
expand(os.path.join(
"data",
"{sample}",
"tailfindr",
"plots",
"polya_tails_len_bins.html"
), sample=list(config["samples"].keys())),
expand(os.path.join(
"data",
"{sample}",
"flair",
"pass_catenated.isoform.read.map.txt",
), sample=list(config["samples"].keys())),
# expand(os.path.join(
# "data",
# "{sample}",
# "epinano",
# "pass_catenated.tsv.per.site.var.csv",
# ), sample=list(config["samples"].keys())),
expand(os.path.join(
"data",
"{sample}",
"epinano",
"epinano_summary.txt"
), sample=list(config["samples"].keys())),