-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
38 lines (36 loc) · 971 Bytes
/
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
profiles {
slurm {
process.executor = 'SLURM'
singularity.enabled = 'true'
process {
withName: 'trim_fastp' {
memory = '32 GB'
}
}
}
test_local {
process.executor = 'local'
singularity.enabled = true
singularity.cacheDir = 'simgs/cache'
}
}
process {
withName: 'trim_fastp' {
container = 'docker://biocontainers/fastp:v0.20.1_cv1'
}
withName: 'align_w_spikein|align|rRNA' {
container = 'library://default/pipeline/bowtie2:v2.4.1'
}
withName: 'get_spike_bam|filter_align|index' {
container = 'library://elin.axelsson/software/sam_bed_tools:v1.9_2.28.0'
}
withName: 'dedup_umi' {
container = 'docker://genomicpariscentre/umi-tools:0.5.3'
}
withName: fastqc {
container = 'library://elin.axelsson/software/fastqc_cutadapt_galore:v0.11.5_2.10_0.6.5'
}
withName: 'bw_rev|bw_fwd' {
container = 'library://elin.axelsson/software/deeptools:v3.4.3'
}
}