forked from andersen-lab/Freyja-SRA
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnextflow.config
executable file
·55 lines (43 loc) · 1.18 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
nextflow {
cleanup {
enabled = false
remove = true
}
}
report {
overwrite = true
}
profiles {
singularity {
process.executor = 'slurm'
params.profile = 'singularity'
singularity.enabled = true
process.container = 'docker://dylanpilz/freyja-nf:latest'
singularity.cacheDir = "$PWD"
singularity.autoMounts = false
singularity.runOptions = "--bind $PWD"
}
docker {
params.profile = 'docker'
docker.enabled = true
process.container = 'dylanpilz/freyja-nf:latest'
docker.temp = 'auto'
docker.runOptions = '-u $(id -u):$(id -g)'
}
}
params {
// SARS-CoV-2 reference data
ref = "$baseDir/data/NC_045512_Hu-1.fasta"
annot = "$baseDir/data/NC_045512_Hu-1.gff"
bedfile = "/home/dpilz/Freyja-nf/data/bedfiles/ARTICv5.3.2.bed"
// Amplicon schema
bedfiles = "$baseDir/data/bedfiles"
// Directory to save variants/demix/covariants subdirectories
output = "$baseDir/outputs"
// Freyja demix
eps = 0.0001
depthCutoff = 0
// Freyja covariants parameters (S-gene by default)
min_site = 21563
max_site = 25384
}