-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.yaml
51 lines (48 loc) · 1.52 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
# tools and scripts
path:
samtools: /path/to/samtools
hisat3n: /path/to/hisat-3n
hisat3ntable: /path/to/hisat-3n-table
join_pileup.py: ../bin/join_pileup.py
group_pileup.py: ../bin/group_pileup.py
select_sites.py: ../bin/select_sites.py
filter_sites.py: ../bin/filter_sites.py
# global config
#
# prepare genes index
# premap to rRNA, tRNA and other small RNA
# If study virus, then also premap to virus genome
# customized_genes:
# - a.fa
# - b.fa
# library: INLINE
# makedup: false
# reference genome and index
reference:
contamination:
fa: ~/reference/genome/contamination/contamination.fa
hisat3n: ~/reference/index/hisat3n/contamination/contamination
genes:
fa: ~/reference/genome/Homo_sapiens.GRCh38.sncRNA.fa
hisat3n: ~/reference/index/hisat3n/Homo_sapiens.GRCh38.sncRNA/Homo_sapiens.GRCh38.sncRNA
genome:
fa: ~/reference/genome/Homo_sapiens.GRCh38.genome.fa
hisat3n: ~/reference/index/hisat3n/Homo_sapiens.GRCh38.genome/Homo_sapiens.GRCh38.genome
# Sample name should be indentical and listed in the 2nd level of the yaml file
# Each sample will be analysis seperately, but
# samples sharing the same group id will be regared as biological replicates and combined in the comparing step
samples:
CONTROL-rep1:
data:
- R1: ../data/test1_R1.fq.gz
R2: ../data/test1_R2.fq.gz
group: CONTROL
DRUG-rep1:
data:
- R1: ../data/test2_R1.fq.gz
group: DRUG
DRUG-rep2:
data:
- R1: ../data/test3_R1.fq.gz
R2: ../data/test3_R2.fq.gz
group: DRUG