-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.yaml
66 lines (57 loc) · 1.79 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
61
62
63
64
65
66
# You won't typically have to change the following two lines!
metasheet: './metasheet.csv'
ref: './ref.yaml'
res_path: 'analysis'
# Tell us what assembly to use (!! MUST be defined in ./ref.yaml !!)
# typically we support {'mm10', 'hg38'}
assembly: 'mm10'
# Whethe you want to trim your RNA-seq reads adaptor first.
# {True, False}
trim: True
# threads used for trim adapator
trim_threads: 4
# ALIGNER: if you want to use STAR, set your aligner as 'STAR' (not support yet)
# OTHERWISE leave it as 'salmon' (default)
# {'salmon', 'STAR'}
aligner: 'salmon'
# how many threads will aligner use
aligner_threads: 8
batch: False
# log fold change
lfc: [2, 3, 5]
# False dicovery rate
fdr: [0.01, 1e-5]
# auto define none
add_gene_name: auto
n_gene: 20
plot_gene_name: []
# Whether you want to process lisa on your differential expression genes.
# Please make sure on you have already installed lisa by the instruction in README.md
# {True, False}
lisa: True
# DEFINE the samples - each sample should have a name, e.g. SAMPLE1
# and a path to the input file, e.g. data/sample1.fastq.gz
# VALID INPUTS: fastq, fastq.gz, CEL.gz
# NOTE: for PAIRED-END fastq/fastq.gz, give both pairs to the sample:
# SAMPLE_1_PE:
# - data/sample1_pair1.fastq
# - data/sample1_pair2.fastq
# WARNING: DO not mix Paired-END and Single-End samples!!!
# ALSO: having the string '.' in your sample name will throw an ERROR
# '.' causes Rscripts chop off names
# If you want to use geo_start.py, delete or comment whole "sample" part.
samples:
SAMPLE1:
- data/SAMPLE1_R1.fastq.gz
- data/SAMPLE2_R2.fastq.gz
SAMPLE2:
- data/SAMPLE1_R1.fastq.gz
- data/SAMPLE2_R2.fastq.gz
SAMPLE3:
- data/SAMPLE3.fastq.gz
SAMPLE4:
- data/SAMPLE4.fastq.gz
SAMPLE5:
- data/SAMPLE5.fastq.gz
SAMPLE6:
- data/SAMPLE6.fastq.gz