Files
synthea-alldiseases/nextflow.config
Olamide Isreal 02d93f9360 Fix image pull and gender arg for WES
- Push as Docker V2 manifest (no OCI index/attestation) so K8s can pull
- Tag as v3 to avoid cached image issues
- Fix gender: omit -g flag for 0.5 (both), Synthea only accepts M or F
2026-03-25 14:29:59 +01:00

45 lines
780 B
Plaintext

manifest {
name = 'synthea-alldiseases'
description = 'Synthea synthetic patient generator pipeline'
mainScript = 'main.nf'
version = '1.0.0'
}
params {
disease_name = null
outdir = null
population = 10
gender = 0.5
min_age = 0
max_age = 90
seed = null
}
profiles {
standard {
docker {
enabled = true
temp = 'auto'
}
}
k8s {
process {
executor = 'k8s'
container = 'harbor.cluster.omic.ai/omic/synthea-alldiseases:v3'
}
docker {
enabled = true
}
k8s {
storageClaimName = 'eureka-pvc'
storageMountPath = '/omic/eureka'
}
}
}
process {
cpus = 2
memory = '4 GB'
}