-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
52 lines (46 loc) · 1.07 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
manifest {
description = 'IPA-derived multi-omics analysis pipeline implemented with Nextflow'
nextflowVersion = '>=23.04.0'
}
/*
* default params
*/
params {
out_dir = "${projectDir}/results/"
log_dir = "${projectDir}/logs/"
}
params {
run_mode = "full"
}
params {
genome_index = "${projectDir}/data/STAR_index"
annotation_gtf = "${projectDir}/data/gencode.v42.annotation.gtf"
polya_sites_bed = "${projectDir}/data/SCINPAS_all_normal_q15Expr_sorted.bed"
genome_fa = "${projectDir}/data/GRCh38.primary_assembly.genome.fa"
threads_pe = 16
threads_se = 8
}
/*
* defines execution profiles for different environments
*/
profiles {
slurm {
includeConfig "conf/envs/slurm.config"
}
slurm_med {
includeConfig "conf/envs/slurm_med.config"
}
docker {
docker.enabled = true
}
singularity {
enabled = true
autoMounts = true
cacheDir = "${HOME}/.singularity/cache/library"
libraryDir = "${HOME}/.singularity/cache/library"
}
conda {
conda.enabled = true
process.conda = "${HOME}/miniconda3/envs/ipa-immune"
}
}