forked from BenJamesMetcalf/GBS_Scripts_Reference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
83 lines (57 loc) · 2.07 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
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
queue = 'batch'
gsImage = "quay.io/shaze/gs"
manifest {
homePage = 'http://github.com/shaze/GS'
description = 'Wits Nextflow implemenration of the CDC genotyping'
mainScript = "main.nf"
}
process {
container = gsImage
}
profiles {
legacy {
env {
PATH='/opt/exp_soft/bioinf/ncbi-blast/2.2.29/:/opt/exp_soft/bioinf/bedtools/2.18.0:/opt/exp_soft/bioinf/velvet/1.2.10KM250:/opt/exp_soft/bioinf/freebayes/0.9.21:/opt/exp_soft/bioinf/cutadapt-1.8.3/bin:/opt/exp_soft/bioinf/prodigal/2.6.0/:/opt/exp_soft/bioinf/samtools/0.1.18/bin:/opt/exp_soft/bioinf/bowtie2/2.2.9/:/opt/exp_soft/bioinf/ncbi-blast-2.2:/opt/exp_soft/python27/bin/:/opt/exp_soft/bioinf/FastQC:/opt/exp_soft/bioinf/srst2/0.1.7/bin:/opt/exp_soft/bioinf/bin:/opt/exp_soft/python36/bin/:/opt/exp_soft/perl/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/exp_soft/bin:/bin:/opt/exp_soft/bioinf/vcftools/bin/:/opt/exp_soft/python27/bin/'
PYTHONPATH='/opt/exp_soft/bioinf/cutadapt-1.8.3'
SRST2_BOWTIE2='/opt/exp_soft/bioinf/bowtie2/2.2.9/bowtie2'
SRST2_BOWTIE2_BUILD='/opt/exp_soft/bioinf/bowtie2/2.2.9/bowtie2_build'
SRST2_SAMTOOLS='/opt/exp_soft/bioinf/samtools/0.1.18/bin/samtools'
}
}
standard {
process.executor = 'local'
}
slurm {
process.executor = 'slurm'
process.queue = queue
}
pbs {
process.executor = 'pbs'
process.queue = queue
}
singularity {
singularity.autoMounts = true
singularity.enabled = true
}
docker {
process.executor = 'local'
docker.remove = true
docker.registry = 'quay.io'
docker.enabled = true
docker.temp = 'auto'
docker.fixOwnership= true
docker.runOptions = '-u $(id -u):$(id -g) --rm'
docker.process.executor = 'local'
}
}
params {
out_dir = "output"
batch_dir = "0"
cutadapt_cores=4
strepA_DB = "/dataC/CRDM/GAS_Reference_DB"
strepB_DB = "/dataC/CRDM/GBS_Reference_DB"
max_forks=10
suffix="fastq.gz"
publish = "copy"
max_velvet_cpus=2
}