Skip to content

Commit e7ace44

Browse files
v1.0.0 fixes (#380)
* fix syntax of optional - fix ambiguity in features list definition * remove optional input definition
1 parent e409639 commit e7ace44

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/file_formatting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ params {
9696
features_table = "features_example.csv"
9797
features_table_separator = 'comma'
9898
features_unique_identifier = 'SAMPLE_ID'
99-
features_groups_list = [ ["BLADDER_LOCATION"], ["BLADDER_LOCATION", "SEX"], ["BLADDER_LOCATION", "SEX", "SMOKING_STATUS"] ]
99+
features_groups_list = "[ ["BLADDER_LOCATION"], ["BLADDER_LOCATION", "SEX"], ["BLADDER_LOCATION", "SEX", "SMOKING_STATUS"] ]"
100100
}
101101
```
102102

modules/local/expand_regions/main.nf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ process EXPAND_REGIONS {
77

88
input:
99
tuple val(meta), path(panel)
10-
path (domains, optional: true)
11-
path (exons, optional: true)
12-
path (custom, optional: true)
10+
path (domains)
11+
path (exons)
12+
path (custom)
1313

1414
output:
1515
tuple val(meta), path("*with_hotspots.tsv") , emit: panel_increased

0 commit comments

Comments
 (0)