-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofiles.config
148 lines (146 loc) · 4.81 KB
/
profiles.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
profiles {
conda {
conda.enabled = true
conda.useMamba = false
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
}
docker {
docker.enabled = true
docker.sudo = false
docker.runOptions = "-u \$(id -u):\$(id -g) --platform=linux/amd64"
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
}
vm {
workDir = getWorkDir()
conda.cacheDir = getCondaCacheDir()
process {
errorStrategy = "terminate"
maxRetries = 0
resourceLimits = [ cpus: 24, memory: 96.GB, time: 72.h ]
}
}
slurm {
executor.queueSize = 30
process {
executor = "slurm"
queue = "cpu_batch"
errorStrategy = "retry" // "terminate"
maxRetries = 1
resourceLimits = [ cpus: 24, memory: 800.GB, time: 72.h ]
}
}
gcp {
workDir = "gs://arc-ctc-nextflow/scRecounter/prod/work"
fusion.enabled = false
wave.enabled = false
executor {
queueSize = 200
pollInterval = "15 sec"
}
params {
barcodes = "data/gcp/barcodes.csv"
star_indices = "data/gcp/star_indices.csv"
fasterq_tmp = "/tmp/TEMP"
}
process {
executor = "google-batch"
errorStrategy = "retry"
maxRetries = 2
scratch = true
resourceLimits = [ cpus: 36, memory: 700.GB, time: 120.h ]
}
google {
project = "c-tc-429521"
location = "us-east1"
batch {
serviceAccountEmail = "[email protected]"
spot = true
maxSpotAttempts = 3
bootDiskSize = 150.GB
}
storage {
multiplier = 2.0
}
}
}
dev {
params {
min_read_len = 20
db_name = "sragent-test"
fallback_max_spots = 10000000
}
}
vm_dev {
params {
barcodes = "data/barcodes_n2.csv"
star_indices = "data/star_indices.csv"
}
}
slurm_dev {
params {
barcodes = "data/barcodes_n2.csv"
star_indices = "data/star_indices.csv"
}
}
gcp_dev {
workDir = "gs://arc-ctc-nextflow/scRecounter/dev/work/"
params {
//barcodes = "data/gcp/barcodes_n2.csv"
barcodes = "data/gcp/barcodes.csv"
star_indices = "data/gcp/star_indices.csv"
}
}
acc_dev {
params {
accessions = "data/accessions_small_n2.csv"
output_dir = "gs://arc-ctc-nextflow/scRecounter/dev/results/acc-n2"
}
}
acc_dev_problems {
params {
accessions = "data/accessions_problems.csv"
output_dir = "gs://arc-ctc-nextflow/scRecounter/dev/results/acc-problems"
}
}
acc_all_org {
params {
accessions = "data/accessions_all-org.csv"
star_indices = "data/star_indices_all-org.csv"
output_dir = "/scratch/multiomics/nickyoungblut/scRecounter/acc_all-org"
define = true
}
}
no_acc_dev {
params {
accessions = ""
output_dir = "gs://arc-ctc-nextflow/scRecounter/dev/results/no-acc"
}
}
all_org {
params {
organisms = "Macaca mulatta,Anopheles gambiae,Arabidopsis thaliana,Bos taurus,Caenorhabditis elegans,Callithrix jacchus,Canis lupus familiaris,Danio rerio,Drosophila melanogaster,Equus caballus,Gallus gallus,Gorilla gorilla,Heterocephalus glaber,Oryctolagus cuniculus,Oryza sativa,Ovis aries,Pan troglodytes,Rattus norvegicus,Saccharomyces cerevisiae,Schistosoma mansoni,Solanum lycopersicum,Sus scrofa,Xenopus tropicalis,Zea mays"
}
}
report {
report {
enabled = true
overwrite = true
file = "${params.output_dir}/nf-report/${params.timestamp}.html"
}
}
trace {
trace {
enabled = true
overwrite = true
file = "${params.output_dir}/nf-trace/${params.timestamp}.txt"
fields = "task_id,hash,native_id,name,status,exit,submit,container,cpus,time,disk,memory,attempt,submit,duration,realtime,%cpu,peak_rss,peak_vmem,rchar,wchar,workdir,scratch"
}
}
}