-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnextflow.config
More file actions
46 lines (40 loc) · 816 Bytes
/
nextflow.config
File metadata and controls
46 lines (40 loc) · 816 Bytes
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
manifest {
name = 'isugifNF/tutorial'
author = 'Andrew Severin'
homePage = 'www.bioinformaticsworkbook.org'
description = 'nextflow bash'
mainScript = 'main.nf'
version = '1.0.0'
}
params {
query = "$PWD/input.fasta"
dbDir = "$PWD/DB/"
dbName = "blastDB"
threads = 2
outdir = "out_dir"
outFileName = "input.blastout"
options = "-evalue 1e-3"
outfmt = "'6'"
app = "blastn"
help = false
chunkSize = 1
}
timeline {
enabled = true
file = "$params.outdir/timeline.html"
}
report {
enabled = true
file = "$params.outdir/report.html"
}
profiles {
slurm { includeConfig './configs/slurm.config' }
test { includeConfig './configs/test.config' }
docker {
docker.enabled = true
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
}
}