Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
Update plugins/nf-validation/src/main/nextflow/validation/FormatValid…
Browse files Browse the repository at this point in the history
…ators/FilePathPatternValidator.groovy

Co-authored-by: Nicolas Vannieuwkerke <[email protected]>
  • Loading branch information
adamrtalbot and nvnieuwk committed Aug 1, 2024
1 parent 5a99d96 commit 1a93ea9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class FilePathPatternValidator implements FormatValidator {
@Override
public Optional<String> validate(final String subject) {
if (subject.matches("(s3://|az://|gs://).*")) {
log.debug("S3 paths are not supported by 'FilePathPatternValidator': '${subject}'")
log.debug("Cloud storage paths are not supported by 'FilePathPatternValidator': '${subject}'")
return Optional.empty()
}
ArrayList files = Nextflow.files(subject)
Expand Down

0 comments on commit 1a93ea9

Please sign in to comment.