Skip to content

Commit a547e5c

Browse files
authored
Merge pull request #175 from nextflow-io/patch/url-samplesheets
Patch/url samplesheets
2 parents 311c829 + 3fa5131 commit a547e5c

File tree

15 files changed

+59
-21
lines changed

15 files changed

+59
-21
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# nextflow-io/nf-schema: Changelog
22

3+
# Version 2.5.1
4+
5+
## Bug fixes
6+
7+
1. Fixed a bug where non-local samplesheets couldn't be validated and converted.
8+
39
# Version 2.5.0
410

511
## New features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Declare the plugin in your Nextflow pipeline configuration file:
2525

2626
```groovy title="nextflow.config"
2727
plugins {
28-
id 'nf-schema@2.5.0'
28+
id 'nf-schema@2.5.1'
2929
}
3030
```
3131

build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
implementation 'com.sanctionco.jmail:jmail:1.6.3' // Needed for e-mail format validation
99
}
1010

11-
version = '2.5.0'
11+
version = '2.5.1'
1212

1313
nextflowPlugin {
1414
nextflowVersion = '25.04.0'
@@ -31,4 +31,10 @@ nextflowPlugin {
3131
indexUrl = 'https://github.com/nextflow-io/plugins/blob/main/plugins.json'
3232
}
3333
}
34+
35+
test {
36+
jvmArgs += [
37+
'--add-opens', 'java.base/sun.net.www.protocol.ftp=ALL-UNNAMED'
38+
]
39+
}
3440
}

examples/helpMessage/pipeline/nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'nf-schema@2.5.0'
2+
id 'nf-schema@2.5.1'
33
}
44

55
params {

examples/paramsHelp/pipeline/nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'nf-schema@2.5.0'
2+
id 'nf-schema@2.5.1'
33
}
44

55
params {

examples/paramsSummaryLog/pipeline/nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'nf-schema@2.5.0'
2+
id 'nf-schema@2.5.1'
33
}
44

55
params {

examples/paramsSummaryMap/pipeline/nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'nf-schema@2.5.0'
2+
id 'nf-schema@2.5.1'
33
}
44

55
params {

examples/samplesheetToListBasic/pipeline/nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'nf-schema@2.5.0'
2+
id 'nf-schema@2.5.1'
33
}
44

55
params {

examples/samplesheetToListMeta/pipeline/nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'nf-schema@2.5.0'
2+
id 'nf-schema@2.5.1'
33
}
44

55
params {

examples/samplesheetToListOrder/pipeline/nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'nf-schema@2.5.0'
2+
id 'nf-schema@2.5.1'
33
}
44

55
params {

0 commit comments

Comments
 (0)