// Manifest for Nextflow metadata manifest { name = 'pocketminer-Nextflow' author = 'Olamide' homePage = 'https://github.com/Mickdub/gvp' description = 'Nextflow pipeline for PocketMiner - cryptic binding pocket prediction using geometric deep learning' mainScript = 'main.nf' version = '1.0.0' } // Global default parameters params { pdb = null outdir = null debug = false } profiles { standard { docker { enabled = true runOptions = '--rm' } } k8s { process { container = 'harbor.cluster.omic.ai/omic/pocketminer:latest' } } } // Process configurations process { cpus = 2 memory = '8 GB' }