-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeltasvm-config.nf
48 lines (45 loc) · 1.68 KB
/
deltasvm-config.nf
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
// Nextflow configuration file for excecuting in Parker Lab Environment
// Universal params (independent of profile)
params {
model {
holdout_frac = 0.15
l = 10
k = 6
seed = 57
window_size = 150
}
}
// profile based params
profiles {
test {
params.input.cluster_peaks_dir = "/home/jeremybk/repos/snATAC_deltaSVM/tests/workflow/input/*.broadPeak.noblacklist"
params.input.bam_dir = "/home/jeremybk/repos/snATAC_deltaSVM/tests/workflow/input/*.bam"
params.input.snp_file = "/home/jeremybk/repos/snATAC_deltaSVM/tests/workflow/input/test.vcf"
params.input.eqtl_file = "/home/jeremybk/repos/snATAC_deltaSVM/tests/workflow/input/eqtl.tab.gz"
params.output.results_dir = "/home/jeremybk/repos/snATAC_deltaSVM/tests/workflow/results/"
workDir = "/home/jeremybk/repos/snATAC_deltaSVM/tests/workflow/work"
}
}
process {
withLabel: cluster_submit {
executor = "slurm"
containerOptions='--bind "/lab:/lab" --bind "/localscratch:/tmp"'
clusterOptions='--constraint=wolverine'
}
withLabel: container_conda {
container = '/lab/work/jeremybk/snATAC_deltaSVM/images/conda_env.img'
containerOptions='--bind "/lab:/lab" --bind "/localscratch:/tmp"'
}
withLabel: container_svmgkm {
container = '/home/porchard/github/snATAC_deltaSVM/containers/gkm_svm.img'
containerOptions='--bind "/lab:/lab" --bind "/localscratch:/tmp"'
}
withLabel: container_general {
container = '/lab/work/porchard/sn-muscle-project/singularity/general/general.simg'
containerOptions='--bind "/lab:/lab" --bind "/localscratch:/tmp"'
}
}
singularity {
enabled = true
autoMounts = true
}