dauparas / ProteinMPNN

Code for the ProteinMPNN paper
MIT License
934 stars 284 forks source link

Example of using omit_AA? #41

Closed marissadolorfino closed 1 year ago

marissadolorfino commented 1 year ago

I am trying to make single point mutations in a sequence, where I will mutate the single position to all 20 canonical amino acids. I am trying to use design_only_positions and omit_AA, where the first list will include only one position and omit_AA will include all AA except for one.

I am getting an error regarding omit_AA. Is there an example of how to use omit_AA correctly? Thank you!

dauparas commented 1 year ago

Try using the --omit_AAs flag; e.g. to exclude everything except alanine use --omit_AAs "CDEFGHIKLMNPQRSTVWYX".

marissadolorfino commented 1 year ago

Oh I see, thank you!