-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
51 lines (42 loc) · 1.8 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
params {
// Mandatory parameters
input = null
design_directory = null // path for design files directory
rmap = null // virtual digest map file (.rmap)
baitmap = null // baitmap file (.baitmap)
// Optional
features_file = null // genomic feature file for enrichmment plots (optional)
// Chicago calls options
score_cutoff = 5 // Score threshold for calling significant interactions
export_format = 'interBed' // chicago export format for option "--export-format". multiple formats separated by comma. options are: interBed,washU_text,seqMonk,washU_track
}
profiles {
standard {
process.executor = 'local'
docker.enabled = false
singularity.enabled = false
}
dhslab {
executor.queueSize = 10
executor.submitRateLimit = '1/1sec'
process.executor = "lsf"
process.clusterOptions = { "-a 'docker(${task.container})' -q dspencer -G compute-dspencer -g /dspencer/chicago" }
}
ris_general {
executor.queueSize = 10
executor.submitRateLimit = '1/1sec'
process.executor = "lsf"
process.clusterOptions = { "-a 'docker(${task.container})' -q general -G compute-dspencer -g /dspencer/chicago" }
}
docker {
docker.enabled = true
docker.runOptions = '-u $(id -u):$(id -g)'
singularity.enabled = false
}
singularity {
docker.enabled = false
singularity.enabled = true
singularity.autoMounts = true
}
test_dhs { includeConfig 'conf/test_dhs.config' }
}