-
Notifications
You must be signed in to change notification settings - Fork 1
/
Snakefile
60 lines (52 loc) · 2.12 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
import pdb
########################################################################################################
# Configfile
########################################################################################################
configfile:'STARsolo_config.yaml'
########################################################################################################
# Directories and locations
########################################################################################################
DATADIR = config['DATADIR']
TMPDIR = config['TMPDIR']
########################################################################################################
# Variables and references
########################################################################################################
GENOME_FASTA = config['GENOME_FASTA']
GENES_GTF = config['GENES_GTF']
MERGEBP = str(config['MERGEBP'])
THRESH = str(config['THRESH'])
CORES = config['CORES']
########################################################################################################
# Executables
########################################################################################################
PICARD = config['PICARD']
DROPSEQ_EXEC = config['DROPSEQ']
GTFTOGENEPRED = config['GTFTOGENEPRED']
SAMTOOLS_EXEC = config["SAMTOOLS_EXEC"]
UMITOOLS_EXEC = config["UMITOOLS_EXEC"]
FEATURECOUNTS_EXEC = config["FEATURECOUNTS_EXEC"]
########################################################################################################
rule all:
input:
expand(
'{DATADIR}/{sample}/TAR/uTAR.{FORMAT}',
DATADIR=config['DATADIR'],
sample=config['Samples'],
FORMAT=["mtx.gz"] # ,"h5"
)
#####################################################################################
# Set up before running HMM
#####################################################################################
# Make output directory for TAR results in STARsolo directory
rule makeOutDir:
input:
'{DATADIR}/{sample}',
output:
directory('{DATADIR}/{sample}/TAR')
shell:
"""
mkdir {output}
"""
# include: "rules/0_dedup.smk"
include: "rules/1_hmm.smk"
include: "rules/2_mat.smk"