-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextflow.config
64 lines (59 loc) · 1.62 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
54
55
56
57
58
59
60
61
62
63
64
params {
repoDir='/seqprg'
}
process {
executor = 'slurm'
clusterOptions = '--hold --no-kill'
queue = '128GB,256GB,256GBv1'
withLabel: trim {
container = 'goalconsortium/trim_galore:1.0.9'
}
withLabel: abra2 {
container = 'goalconsortium/abra2:1.0.9'
}
withLabel: profiling_qc {
container = 'goalconsortium/profiling_qc:1.0.9'
}
withLabel: dnaalign {
container = 'goalconsortium/dna_alignment:1.0.9'
}
withLabel: variantcalling {
container = 'goalconsortium/variantcalling:1.0.9'
}
withLabel: structuralvariant {
container = 'goalconsortium/structuralvariant:1.0.9'
}
withLabel: starfusion {
container = 'goalconsortium/starfusion:1.0.9'
}
withLabel: ralign {
container = 'goalconsortium/rna_alignment:1.0.9'
}
withLabel: geneabund {
container = 'goalconsortium/rna_gene_abundance:1.0.9'
}
}
singularity {
enabled = true
runOptions='--no-home --cleanenv'
cacheDir="$PWD"
}
trace {
enabled = true
file = 'pipeline_trace.txt'
field = 'task_id,native_id,process,name,status,exit,submit,start,complete,duration,realtime'
}
timeline {
enabled = false
file = 'timeline.html'
}
report {
enabled = false
file = 'report.html'
}
manifest {
homePage = 'https://github.com/bcantarel/school'
description = 'School is a collection of genomics analysis workflows that are used for detecting single nucleotide variants (SNVs), insertions/deletions (indels), copy number variants (CNVs) and translocations from RNA and DNA sequencing. These workflows have been validated in a CLIA laboratory at UTSW'
mainScript = 'dna.nf'
nextflowVersion = '>=0.31.0'
}