-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
53 lines (48 loc) · 1.37 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
#!/usr/bin/env nextflow
manifest {
description = 'single cell RNA-seq simulation pipeline implemented with Nextflow'
author = 'Mate Balajti, C.J. Herrmann'
nextflowVersion = '>=23.04.0'
}
/*
* default params
*/
params.outdir = "results"
params.trx_cnt = "${projectDir}/input_files/expression.csv"
params.annotation = "${projectDir}/input_files/test.gtf"
params.n_trx = 100
params.prob = 0.3
params.polyA_len = 250
params.genome = "${projectDir}/input_files/human.chr1.fa"
params.primerSeq = "${projectDir}/input_files/queryRNA_test.fa"
params.frag_mean = 300
params.frag_sd = 60
params.read_length = 50
/*
* defines execution profiles for different environments
*/
profiles {
standard {
process.container = 'docker.io/zavolab/scrnasim-toolz:latest'
}
docker {
process.container = 'docker.io/zavolab/scrnasim-toolz:latest'
docker.enabled = true
}
singularity {
process.container = 'docker.io/zavolab/scrnasim-toolz:latest'
singularity.enabled = true
singularity.autoMounts = true
}
conda {
conda.enabled = true
conda.channels = 'bioconda,conda-forge,defaults'
}
slurm {
process.container = 'docker.io/zavolab/scrnasim-toolz:latest'
process.executor = 'slurm'
singularity.enabled = true
singularity.cacheDir = "${HOME}/.singularity/cache/library"
singularity.libraryDir = "${HOME}/.singularity/cache/library"
}
}