-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
62 lines (58 loc) · 1.74 KB
/
Copy pathnextflow.config
File metadata and controls
62 lines (58 loc) · 1.74 KB
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
manifest {
name = 'tylergross97/nextflow_xengsort'
author = 'Tyler Gross'
description = 'Nextflow pipeline for xengsort classification'
version = '1.0.0'
mainScript = 'main.nf'
homePage = 'https://github.com/tylergross97/nextflow_xengsort'
defaultBranch = 'main'
}
params {
input = null
outdir_base = null
outdir_references = "${params.outdir_base}/references"
outdir_fastp = "${params.outdir_base}/fastp"
outdir_xengsort = "${params.outdir_base}/xengsort"
hg38_fasta = null
nsg_fasta = null
outdir_multiqc = "${params.outdir_base}/multiqc"
}
profiles {
docker {
docker {
enabled = true
}
}
singularity {
singularity {
enabled = true
autoMounts = true
}
}
test {
process {
// Reduce memory requirements for all processes in test mode
memory = '2.GB'
cpus = 2
// Specific configuration for memory-intensive processes
withName: 'XENGSORT_CLASSIFY' {
memory = '4.GB'
cpus = 2
}
withName: 'XENGSORT_INDEX' {
memory = '2.GB'
cpus = 2
}
}
params {
input = "${projectDir}/tests/data/xengsort/samplesheet.csv"
hg38_fasta = "${projectDir}/tests/data/xengsort/human.fa"
nsg_fasta = "${projectDir}/tests/data/xengsort/mouse.fa"
outdir_base = 'results_test'
outdir_references = "results_test/references"
outdir_fastp = "results_test/fastp"
outdir_xengsort = "results_test/xengsort"
outdir_multiqc = "results_test/multiqc"
}
}
}