Configure ImmuneBuilder pipeline for WES execution
Some checks failed
CodeQL / Analyze (python) (push) Has been cancelled

- Update container image to harbor.cluster.omic.ai/omic/immunebuilder:latest
- Update input/output paths to S3 (s3://omic/eureka/immunebuilder/)
- Remove local mount containerOptions (not needed in k8s)
- Update homepage to Gitea repo URL
- Clean history to remove large model weight blobs
This commit is contained in:
2026-03-16 15:31:38 +01:00
commit 8887cbe592
49 changed files with 8741 additions and 0 deletions

29
setup.py Normal file
View File

@@ -0,0 +1,29 @@
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='ImmuneBuilder',
version='1.2',
description='Set of functions to predict the structure of immune receptor proteins',
license='BSD 3-clause license',
maintainer='Brennan Abanades',
long_description=long_description,
long_description_content_type='text/markdown',
maintainer_email='brennan.abanadeskenyon@stx.ox.ac.uk',
include_package_data=True,
packages=find_packages(include=('ImmuneBuilder', 'ImmuneBuilder.*')),
entry_points={'console_scripts': [
'ABodyBuilder2=ImmuneBuilder.ABodyBuilder2:command_line_interface',
'TCRBuilder2=ImmuneBuilder.TCRBuilder2:command_line_interface',
'NanoBodyBuilder2=ImmuneBuilder.NanoBodyBuilder2:command_line_interface',
]},
install_requires=[
'numpy',
'scipy>=1.6',
'einops>=0.3',
'torch>=1.8',
'requests'
],
)