-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnextflow.config
42 lines (36 loc) · 1.18 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
docker {
enabled = true
temp = 'auto'
runOptions = '-u $(id -u):$(id -g)'
}
executor {
name = 'local'
cpus = 30
memory = '150 GB'
}
params {
bed = "$baseDir/bin/primer_v4.1.bed"
prefix_fasta = "PH-RITM-"
trace_dir = "${params.out_dir}/pipeline_info"
usherDB = "$baseDir/assets/NC_045512v2.fasta"
usherProblemSites = "$baseDir/assets/problematic_sites_sarsCov2.vcf"
usherGlobalLineages = "http://hgdownload.soe.ucsc.edu/goldenPath/wuhCor1/UShER_SARS-CoV-2/public-latest.all.masked.pb.gz"
}
// Information on the pipeline and its execution
def trace_timestamp = new java.util.Date().format( 'yyyy-MM-dd_HH-mm-ss')
timeline {
enabled = true
file = "${params.trace_dir}/execution_timeline_${trace_timestamp}.html"
}
report {
enabled = true
file = "${params.trace_dir}/execution_report_${trace_timestamp}.html"
}
trace {
enabled = true
file = "${params.trace_dir}/execution_trace_${trace_timestamp}.txt"
}
dag {
enabled = true
file = "${params.trace_dir}/pipeline_dag_${trace_timestamp}.svg"
}