-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.yaml
60 lines (48 loc) · 1.05 KB
/
config.yaml
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
# config for scraps snakemake pipeline #
DATA:
# Data folder containing FASTQs
"sample_data/raw_data"
# results directory
RESULTS:
"results"
# path to STAR executable, if not in PATH
STAR:
"STAR"
# path to STAR genome index
STAR_INDEX:
"index/cr2020A_star"
# path to Chromium V3 whitelist
WHITELIST_V3:
"whitelist/3M-february-2018.txt"
# path to Chromium V2 whitelist
WHITELIST_V2:
"whitelist/737K-august-2016.txt"
POLYA_SITES:
# polya_db 3 on GRCh38 with 5 bases upstream and 3 bases
# downstream slop relative to annotated cleavage site
"ref/polyadb32.hg38.saf.gz"
#POLYA_FORMAT:
# SAF or GTF, currently auto detecting filename .saf or .saf.gz, case-insensitive
# "SAF"
# TSV relating all sequenced libraries to sane capture names and other metadata
FASTQS:
"sample_fastqs.tsv"
PAIRED_SAMPLES:
# Sample basenames
- test
- test2
- test3
R1_SAMPLES:
# Sample basenames
R2_SAMPLES:
- test
- test2
- test3
# for multiqc report
report_section_order:
cutadapt:
order: 1000
star:
order: 100
featureCounts:
order: -1000