Source-only snapshot of the cluster branch for WES execution. Large reference files (HPA/MANE/ensemble FASTA, model weights, ~597 MB) are omitted: they are baked into the container images at build time and mounted from the dreamdock-data PVC at runtime, and exceed the Gitea request size limit. Pipeline entry point is main.nf, which orchestrates the biotransformer, conplex and tissue modules as a single workflow. Ligand inputs are read from the eureka workspace; protein_zarr and chembl_db come from the dreamdock-data PVC.
73 lines
1.8 KiB
YAML
73 lines
1.8 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: digital-trials-nextflow
|
|
namespace: bioinformatics
|
|
spec:
|
|
progressDeadlineSeconds: 600
|
|
replicas: 1
|
|
revisionHistoryLimit: 10
|
|
selector:
|
|
matchLabels:
|
|
app: digital-trials-nextflow
|
|
strategy:
|
|
rollingUpdate:
|
|
maxSurge: 25%
|
|
maxUnavailable: 25%
|
|
type: RollingUpdate
|
|
template:
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
app: digital-trials-nextflow
|
|
spec:
|
|
containers:
|
|
- command:
|
|
- sleep
|
|
- infinity
|
|
image: nextflow/nextflow:25.04.6
|
|
imagePullPolicy: IfNotPresent
|
|
name: nextflow
|
|
workingDir: /mnt/dreamdock-data/digital_trials
|
|
resources:
|
|
limits:
|
|
cpu: "2"
|
|
memory: 4Gi
|
|
requests:
|
|
cpu: "1"
|
|
memory: 2Gi
|
|
terminationMessagePath: /dev/termination-log
|
|
terminationMessagePolicy: File
|
|
volumeMounts:
|
|
- mountPath: /mnt/ZINC-22
|
|
name: zinc-22-volume
|
|
- mountPath: /mnt/dreamdock-data
|
|
name: dreamdock-volume
|
|
dnsPolicy: ClusterFirst
|
|
restartPolicy: Always
|
|
schedulerName: default-scheduler
|
|
securityContext: {}
|
|
serviceAccount: nextflow-sa
|
|
serviceAccountName: nextflow-sa
|
|
terminationGracePeriodSeconds: 30
|
|
volumes:
|
|
- name: zinc-22-volume
|
|
hostPath:
|
|
path: /mnt/ZINC-22
|
|
type: Directory
|
|
- name: dreamdock-volume
|
|
persistentVolumeClaim:
|
|
claimName: dreamdock-data
|
|
# ---
|
|
# apiVersion: v1
|
|
# kind: PersistentVolumeClaim
|
|
# metadata:
|
|
# name: digital-trials-data
|
|
# namespace: bioinformatics
|
|
# spec:
|
|
# accessModes:
|
|
# - ReadWriteMany
|
|
# resources:
|
|
# requests:
|
|
# storage: 6000Gi
|
|
# storageClassName: truenas-nfs |