-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
40 lines (36 loc) · 1.26 KB
/
Copy pathnextflow.config
File metadata and controls
40 lines (36 loc) · 1.26 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
manifest {
name = "tylergross97/samplesheet_generator_pdmr"
author = "Tyler Gross"
description = "Nextflow workflow for generating samplesheets for neoantigen prediction workflow (https://github.com/tylergross97/neoantigen_prediction_workflow)"
mainScript = "main.nf"
homePage = "https://github.com/tylergross97/samplesheet_generator_pdmr"
defaultBranch = "main"
}
params {
input_base = null // Required parameter, must be specified via command line
input_csv = null // Required parameter, must be specified via command line
output_base = null // Required parameter, must be specified via command line
rna = false // New parameter for RNA-only mode
}
profiles {
test {
// Override parameters for a test dataset
params {
input_base = "/projects/academic/prinicipal_investigator/research_project"
samplesheet = "${projectDir}/tests/data/samplesheet.csv"
outdir_base = "${projectDir}/tests/results/"
}
// No container configuration here - let it be set by other profiles
}
singularity {
singularity {
enabled = true
autoMounts = true
}
}
docker {
docker {
enabled = true
}
}
}