-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
66 lines (51 loc) · 1.06 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
nextflow.enable.dsl=2
params {
help = false
// output directory
outdir = './RNAseq_Results'
// Input reads and reference files
indir = null
reads = false
cdna = false
fasta = false
gff = false
// Additional arguments
trim_args = "--fastqc"
salmonindex = null
sal_quant_args = "--libType=A --validateMappings"
hisatindex = null
threads = 16
}
process {
// Defaults for all processes
container = 'nfcore/rnaseq'
}
timeline {
enabled = true
file = "$params.outdir/timeline.html"
overwrite = true
}
report {
enabled = true
file = "$params.outdir/report.html"
overwrite = true
}
profiles {
slurm { includeConfig './configs/slurm.config' }
docker { docker.enabled = true }
singularity {
singularity.enabled = true
singularity.autoMounts = true
}
}
executor {
submitRateLimit = '10 sec'
}
manifest {
name = 'RNAseq-pipeline'
author = 'Sharu Paul'
homePage = 'https://github.com/SharuPaul/'
description = 'NextFlow dsl2 pipeline for RNASeq analysis'
mainScript = 'main.nf'
version = '1.0.0'
}