Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prediction of TCR-p complexes. #363

Open
Alexasparis opened this issue Dec 16, 2024 · 2 comments
Open

Prediction of TCR-p complexes. #363

Alexasparis opened this issue Dec 16, 2024 · 2 comments

Comments

@Alexasparis
Copy link

I am using HelixFold3 for modeling TCR-pMHC complexes, and it works when modeling protein chains. However, I encounter errors when I include the peptide in the complex.

Could you clarify whether HelixFold3 supports peptide modeling? If so, should the peptide be configured as a protein or as a ligand in the input?

Thank you for your assistance.

@xueeinstein
Copy link
Collaborator

@Alexasparis HelixFold3 supports to model peptide as protein chain ligand or ligand chain. If use ligand chain, you should use SMILES to represent the peptide.

Example: model peptide as ligand chain B:

{
    "entities": [
        {
            "type": "protein",
            "sequence": "ADVPAGVQLADKQTLVRNNGSEVQSLDPHKIE.....",
            "count": 1,
            "chain_id": "A"
        },
        {
            "type": "ligand",
            "smiles": "CC(C)C[C@H](NC(=O)[C@@H](N)CCCCN)C(=O)N[C@@H](CCCCN)C(=O)O",
            "count": 1,
            "chain_id": "B"
        }
    ]
}

Example: model peptide as short protein chain B:

{
    "entities": [
        {
            "type": "protein",
            "sequence": "ADVPAGVQLADKQTLVRNNGSEVQSLDPHKIE.....",
            "count": 1,
            "chain_id": "A"
        },
        {
            "type": "protein",
            "sequence": "KLK",
            "count": 1,
            "chain_id": "B"
        }
    ]
}

@Alexasparis
Copy link
Author

The problem is that when modeled as a protein, it raises the exception. Template too short. Length: 9 and uniptor_hits.sto is not generated for the peptide chain.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants