-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
92 lines (63 loc) · 1.72 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
84
85
86
87
88
89
90
91
92
params {
// where to look for BAM files
fastq_dir = "${projectDir}/data"
// the reference FASTA to use for innoculum consensus building
ref_fasta = "${projectDir}/ref/SIVmac239.fasta"
// Reference file annotation GFF necessary to be lifted onto new consensus files for variant calling
ref_GFF = "${projectDir}/ref/SIVmac239.gff3"
// Amp of interest primers
amp_primers = "${projectDir}/ref/amp3_primers.fa"
// Inoc vs time1 analysis and variant call option (Default only compares t2 to t1)
var_t1 = true
// Inoculum sample SimpleName, must be exact
inoc_prefix_before_dash = "PC"
// Where to place results
results = "${launchDir}/sample_output"
// Memory allocation
memory = 10G
// CPU cores
cpus = 4
}
// WHETHER TO REMOVE TEMPORARY FILES AFTER A SUCCESSFUL RUN
//cleanup = params.cleanup
process.debug = false
process.containerOptions = '--privileged'
// PROFILE OPTIONS
profiles {
standard {
docker.enabled = true
singularity.enabled = false
conda.enabled = false
process.container = ""
}
docker {
docker.enabled = true
singularity.enabled = false
conda.enabled = false
process.container = ""
}
singularity {
singularity.enabled = true
singularity.cacheDir = "work/apptainer/"
singularity.autoMounts = true
docker.enabled = false
conda.enabled = false
process.container = ""
}
apptainer {
apptainer.enabled = true
apptainer.cacheDir = "work/apptainer/"
apptainer.autoMounts = true
docker.enabled = false
conda.enabled = false
process.container = ""
}
}
// MANIFEST
manifest {
homePage = ""
mainScript = "main.nf"
defaultBranch = "main"
description = "A Nextflow wrapper to call variants on Nextera fastq files"
author = "William Gardner"
}