-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
33 lines (30 loc) · 867 Bytes
/
nextflow.config
File metadata and controls
33 lines (30 loc) · 867 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
process{
container = 'barryd237/test:dev'
containerOptions = ' -B /data/'
}
params{
input = "/data/test/test-datasets/fastq/*_{1,2}.fastq.gz"
fasta = "/data/test/test-datasets/reference/chrI.fa"
gtf = "/data/test/test-datasets/reference/chrI.gtf"
transcriptome = null
kallisto_index = null
outdir = "/data/test/"
save_qc_intermediates = true
save_transcriptome = true
save_index = true
run_qc = true
}
singularity.enabled = true
singularity.autoMounts = true
singularity.cacheDir = '/data/containers'
profiles {
docker {
docker.enabled = true
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
docker.runOptions = '-u \$(id -u):\$(id -g)'
}
test { includeConfig 'conf/test.config' }
}