-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase.config
49 lines (43 loc) · 983 Bytes
/
base.config
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
/*
* -------------------------------------------------
* Nextflow config file for processes options
* -------------------------------------------------
* Defines general paths for input files and
* parameters for the FLORA workflow
*/
params {
/*
General parameters
*/
// Help message
help = false
monochrome_logs = false
name = false
email = false
email_on_fail = false
hostnames = false
/*
Parameters for your own analysis
*/
// Project name
projectName = ""
// Output directory to publish workflow results
outdir = "${baseDir}/results/${projectName}"
/*
Outputs steps directory names in output directory
*/
results_dirname = "02_final_results"
/*
Configuration of input data
*/
rawdata = ""
rrna_db = ""
samples_file = ""
/*
TrimGalore parameters
*/
min_length = "36"
min_quality = "20"
stringency = "1"
error_rate = "0.1"
}