38 lines
645 B
Plaintext
38 lines
645 B
Plaintext
manifest {
|
|
name = 'bioemu'
|
|
author = 'Olamide'
|
|
description = 'BioEmu - Biomolecular Emulator for protein structure sampling and binding energy analysis'
|
|
mainScript = 'main.nf'
|
|
version = '1.0.0'
|
|
}
|
|
|
|
docker {
|
|
enabled = true
|
|
}
|
|
|
|
process {
|
|
container = 'harbor.cluster.omic.ai/omic/bioemu:v3'
|
|
cpus = 4
|
|
memory = '16 GB'
|
|
time = '2h'
|
|
}
|
|
|
|
profiles {
|
|
k8s {
|
|
process {
|
|
executor = 'k8s'
|
|
}
|
|
k8s {
|
|
pullPolicy = 'Always'
|
|
}
|
|
}
|
|
k8s_gpu {
|
|
process {
|
|
executor = 'k8s'
|
|
}
|
|
k8s {
|
|
pullPolicy = 'Always'
|
|
}
|
|
}
|
|
}
|