-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathnextflow.config
84 lines (78 loc) · 2.55 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
manifest.defaultBranch = 'main'
singularity.enabled = true
singularity.autoMounts = true
singularity.runOptions = '--contain --bind $(pwd):/tmp'
profiles {
standard {
process.executor = 'local'
process.container = 'library://cgroza/collection/graffite:latest'
}
cluster {
process.executor = 'slurm'
process.container = 'library://cgroza/collection/graffite:latest'
process.scratch = '$SLURM_TMPDIR'
}
cloud {
process.executor = 'aws'
process.container = 'library://cgroza/collection/graffite:latest'
}
}
// main parameters
params {
graffite_vcf = false
vcf = false
RM_dir = false // mainly for debug.
genotype = true
graph_method = "pangenie" // or giraffe or graphaligner
reads = "reads.csv"
longreads = false // if you want to use sniffles on long read alignments
assemblies = false // if you want to use svim-asm on genome alignments
break_scaffolds = false // if input assemblies are scaffolds and need to be broken at runs of N
reference = "reference.fa"
TE_library = "TE_library.fa"
out = "out"
tsd_win = 30 // add default value for TSD window search
cores = false // set to an integer
mammal = false
mini_K = "500M"
stSort_m = "4G"
stSort_t = 4
tsd_batch_size = 100
asm_divergence = "asm5"
aligner = "minimap2" // or winnowmap
min_mapq = 0
min_support = "2,4"
// cluster mode parameter
map_longreads_memory = null
map_longreads_threads = 1
map_asm_memory = null
map_asm_threads = 1
svim_asm_memory = null
svim_asm_threads = 1
sniffles_memory = null
sniffles_threads = 1
repeatmasker_memory = null
repeatmasker_threads = 1
pangenie_memory = null
pangenie_threads = 1
make_graph_memory = null
make_graph_threads = 1
graph_align_memory = null
graph_align_threads = 1
vg_call_memory = null
vg_call_threads = 1
merge_svim_sniffles2_threads = 1
merge_svim_sniffles2_memory = "10G"
merge_svim_sniffles2_time = "12h"
map_asm_time = "3h"
map_longreads_time = "12h"
graph_align_time = "12h"
svim_asm_time = "12h"
sniffles_time = "12h"
pangenie_time = "12h"
repeatmasker_time = "12h"
tsd_memory = "10G"
merge_vcf_memory = "10G"
merge_vcf_time = "1h"
tsd_time = "1h"
}