-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
53 lines (45 loc) · 1.16 KB
/
nextflow.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
50
51
52
53
params {
// 'refseq' or 'genbank'
ncbi_section = 'refseq'
// Smallest ST (number of members) to keep in the final dataset
minstsize = 5
// Keep upto maxstsize genomes to detect recombination with Gubbins
maxstsize = 15
// PHEnix mapper
mapper = 'bwa'
// PHEnix variant caller
variant = 'gatk'
// Simulate fastq files with this much coverage
coverage = 100
// Simulate fastq files with this readlength
readlength = 250
// Boilerplate defaults
outdir = false
help = false
contig_dir = false
chromosome_dir = false
taxid = false
scheme = false
force = false
tracedir = "${params.outdir}/pipeline_info"
mapper_av = [ "minimap2", "bwa", "bowtie2" ]
variant_av = ["gatk", "mpileup"]
ncbi_section_av = [ "refseq", "genbank" ]
force_av = [ true, false ]
}
timeline {
enabled = true
file = "${params.tracedir}/execution_timeline.html"
}
report {
enabled = true
file = "${params.tracedir}/execution_report.html"
}
trace {
enabled = true
file = "${params.tracedir}/execution_trace.txt"
}
dag {
enabled = true
file = "${params.tracedir}/pipeline_dag.svg"
}