-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.template.yaml
69 lines (58 loc) · 1.72 KB
/
config.template.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
61
62
63
64
65
66
67
68
69
########################################################################
# Basic parameters
########################################################################
# # Where to put output files
# data: data
# The genome
genome:
fna: 'fixme/genome.fna'
gtf: 'fixme/genome.gtf'
# Any additional annotations
#additional_gtf:
########################################################################
# Sample data
########################################################################
samples:
A1:
R1: 'fixme/A1_R1.fastq.gz'
R2: 'fixme/A1_R2.fastq.gz'
A2:
R1: 'fixme/A2_R1.fastq.gz'
R2: 'fixme/A2_R2.fastq.gz'
A3:
R1: 'fixme/A3_R1.fastq.gz'
R2: 'fixme/A3_R2.fastq.gz'
B1:
R1: 'fixme/B1_R1.fastq.gz'
R2: 'fixme/B1_R2.fastq.gz'
B2:
R1: 'fixme/B2_R1.fastq.gz'
R2: 'fixme/B2_R2.fastq.gz'
B3:
R1: 'fixme/B3_R1.fastq.gz'
R2: 'fixme/B3_R2.fastq.gz'
# fastp_args: "--trim_front1 1 --trim_front2 1 --adapter_sequence CTGTCTCTTATACACATCT"
# How do the reads map to the genome?
# orientation := "forward" # reads map to "sense"
# orientation := "reverse" # reads map to "antisense"
# If "orientation" is not set, then deduce heuristically
########################################################################
# Diff exp parameters
########################################################################
exps:
example:
fdr: 0.05
#pvalue: 0.05
foldchange: 2.0
control_name: 'A'
control_samples: ['A1', 'A2', 'A3']
treatment_name: 'B'
treatment_samples: ['B1', 'B2', 'B3']
unfiltered:
fdr: -1
pvalue: -1
foldchange: 1,5
control_name: 'A'
control_samples: ['A1', 'A2', 'A3']
treatment_name: 'B'
treatment_samples: ['B1', 'B2', 'B3']