-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
19 lines (14 loc) · 888 Bytes
/
nextflow.config
File metadata and controls
19 lines (14 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
resume = true
process {
withName:'trimR1|trimR2|concatination|renameContigFastaHeader|topBlastHits' { container = 'quay.io/nf-core/ubuntu:20.04' }
withName:'revComp|renameR1|renameR2' { container = 'quay.io/biocontainers/bioawk:1.0--he4a0461_9' }
withName:alignment { container = 'quay.io/staphb/clustalo:1.2.4' }
withName:contig { container = 'quay.io/biocontainers/emboss:5.0.0--h079770c_4' }
withName:'blastn|blastIndex' { container = 'quay.io/biocontainers/blast:2.14.1--pl5321h6f7f691_0' }
}
singularity {
enabled = true
autoMounts = true
//runOptions = '-e TERM=xterm-256color'
envWhitelist = 'TERM'
}