Add nf-amazon plugin for direct S3/MinIO access

WES does not stage S3 input files to the Nextflow workdir.
Adding nf-amazon plugin so Channel.of(file(params.pdb)) can
resolve s3:// paths directly from MinIO without WES staging.
This commit is contained in:
2026-03-23 14:51:34 +01:00
parent 4660bdf62a
commit 6aedad69e4

View File

@@ -8,6 +8,18 @@ manifest {
version = '1.0.0' version = '1.0.0'
} }
// S3/MinIO plugin for direct S3 access
plugins {
id 'nf-amazon'
}
aws {
client {
endpoint = 'http://datalake-hl.datalake.svc.cluster.local:9000'
s3PathStyleAccess = true
}
}
// Global default parameters // Global default parameters
params { params {
pdb = null pdb = null