-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextflow.config
133 lines (116 loc) · 3.2 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
//
// Notes to End Users.
//
// The workflow should run without editing this configuration file,
// however there may be instances in which you wish to edit this
// file for compute performance or other reasons. Please see:
//
// https://nextflow.io/docs/latest/config.html#configuration
//
// for further help editing this file.
def trace_timestamp = new java.util.Date().format( 'yyyy-MM-dd_HH-mm-ss')
params {
// Boilerplate options
out_dir = "output"
//tracedir = "${params.out_dir}/pipeline_info/${trace_timestamp}"
publish_dir_mode = 'copy'
email = null
email_on_fail = null
plaintext_email = false
monochrome_logs = false
hook_url = null
help = false
version = false
validate_params = true
show_hidden_params = false
schema_ignore_params = false
fasta = null
output_intermediates = false
seq_qc = false
assembly_refs = null
default_assembly_refs = "data/empty.fa"
no_mask = false
no_itr_mask = false
additional_mask = null
default_additional_mask = "data/empty.csv"
extract_cds = false
concatenate = false
clade = null
run_phylo = false
run_apobec3_phylo = false
include_background = false
additional_background = null
default_additional_background = "data/empty.fa"
outgroups = null
extra_flags = null
wf {
example_cmd = [
"--fasta squirrel/data/NC_063383.fasta",
]
agent = null
container = "community.wave.seqera.io/library/squirrel"
container_version = "1.0.10--dc85d171b951f751"
}
}
manifest {
name = 'aineniamh/squirrel'
author = 'Aine OToole'
homePage = 'https://github.com/aineniamh/squirrel/'
description = 'Some QUIck Rearranging to Resolve Evolutionary Links.'
mainScript = 'main.nf'
nextflowVersion = '>=20.10.0'
version = '1.0.12'
}
executor {
$local {
cpus = 8
memory = "8 GB"
}
}
// used by default for "standard" (docker) and singularity profiles,
// other profiles may override.
process {
shell = ['/bin/bash', '-euo', 'pipefail']
}
profiles {
// the "standard" profile is used implicitely by nextflow
// if no other profile is given on the CLI
standard {
docker {
enabled = true
runOptions = "--user \$(id -u):\$(id -g) --group-add 100"
}
}
// using singularity instead of docker
singularity {
singularity {
enabled = true
autoMounts = true
}
}
conda {
conda.enabled = true
}
// local profile for simplified development testing
local {
process.executor = 'local'
}
}
timeline {
enabled = true
overwrite = true
file = "${params.out_dir}/execution/timeline.html"
}
report {
enabled = true
overwrite = true
file = "${params.out_dir}/execution/report.html"
}
trace {
enabled = true
overwrite = true
file = "${params.out_dir}/execution/trace.txt"
}
env {
PYTHONNOUSERSITE = 1
}