-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnextflow.config
More file actions
62 lines (51 loc) · 1.1 KB
/
nextflow.config
File metadata and controls
62 lines (51 loc) · 1.1 KB
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
params {
bwa_index= null
minimap2_index = null
database_fasta = null
taxonomy = null
complexity_filter = null
homology_filter = null
plasmid_filter = null
project_cluster_opts = null
threads = 20
threads_samtools = 8
kmer_size = 32
taxrank = ["species", "genus", "family"]
platform= "illumina"
mapper = "minimap2"
kmer_cutoff = 0.7
count_cutoff = 10
fraction_cutoff = 0
input_files = null
samplesheet = null
}
executor {
$sge {
queueSize = 50
}
$local {
cpus = 30
memory = '300 GB'
}
}
profiles {
standard {
process.executor = 'local'
}
cluster {
process {
executor='pbspro'
clusterOptions = params.project_cluster_opts
withLabel: big_mem {
cpus = params.threads
memory = 300.GB
time='1h'
}
withLabel: low_mem {
cpus = 1
memory = 10.GB
time='5h'
}
}
}
}