Skip to content

Commit 3edc0ba

Browse files
committed
Making fastq_screen_references value to use baseDir
1 parent ae2d549 commit 3edc0ba

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.nf-core.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
lint:
22
files_unchanged:
33
- .github/CONTRIBUTING.md
4+
nextflow_config:
5+
- config_defaults:
6+
- params.fastq_screen_references
47
nf_core_version: 3.2.0
58
repository_type: pipeline
69
template:

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ params {
2121
igenomes_ignore = false
2222

2323
// Fastqscreen options
24-
fastq_screen_references = './assets/example_fastq_screen_references.csv'
24+
fastq_screen_references = "${projectDir}/assets/example_fastq_screen_references.csv"
2525

2626
// MultiQC options
2727
multiqc_config = null

nextflow_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
},
9595
"fastq_screen_references": {
9696
"type": "string",
97-
"default": "./assets/example_fastq_screen_references.csv",
97+
"default": "${projectDir}/assets/example_fastq_screen_references.csv",
9898
"fa_icon": "fas fa-search",
9999
"description": "A .csv of reference genomes to be mapped against by FastQ Screen"
100100
}

0 commit comments

Comments
 (0)