You are here

how does rosetta handle hydrogens?

3 posts / 0 new
Last post
how does rosetta handle hydrogens?
#1

heya, i am wondering how rosetta deals with hydrogens. should i make them all explicit? or only the polar ones? I am trying to relax and dock something, and its something i am not really sure with. thanks!

Category: 
Post Situation: 
Tue, 2021-08-31 00:48
patcD

It depends a bit on which "mode" you're working in.

In the most-commonly used fullatom mode (which is the default unless something explicitly switches to centroid mode), all hydrogens are present. In fact, all hydrogens are obligatory -- Rosetta will automatically add in any missing hydrogens. (It will also fill in any missing heavyatoms, assuming there's enough backbone atoms to place them.) So if you're using standard protein residues, it really doesn't matter if the hydrogens are present in the input structure or not. When Rosetta reads in the input, it will figure out which hydrogens are missing and add them back in. (As you'll see in the output: all hydrogens will be present.)

Generally, you only have to worry about hydrogens when you're making params files for ligands Rosetta doesn't know about (e.g. for ligand docking). In those situations, you do need to have all hydrogens explicit in the SDF or MOL2 file you're passing to the python script which makes the params file.

Centroid mode is the other "mode" to consider, used in certain protocols for a low-resoulution phase. Centroid mode uses a unified atom approach, where only polar hydrogens are represented (in addition, the protein sidechains are represented as a single superatom). But aside from that, things are similar to fullatom. Rosetta will automatically fill in any missing atoms and will ignore any extra atoms. For params file generation, the centroid parameters are typically auto-generated from the fullatom ones: either automatically internal to Rosetta, or from the Python script when the fullatom params files are first created (there's an option to do so).

Tue, 2021-08-31 05:42
rmoretti

thank you for your reply, this helped a lot. may i ask you an other question. 

 

i am not sure how rosetta deals with aromats. it seems as though when i create new .params files for ligands before i berform a global relax, that it does see them as aromats (i can iterate over atoms and check - it returns True), however then they get distorted during relaxing. not a lot but definately not planar

Wed, 2021-09-01 06:54
patcD