Add residue labels. This will generate one label per a
residue within the selected atoms. The label will be at the
centroid of the atoms and styled according to the passed style.
The label text will be resnresi
m_add_res_labels(id, sel = m_sel(), style = m_style_label(), byframe)R3dmol id or a r3dmol object (the output from
r3dmol())
Atom selection specification
Style spec to add to specified atoms
if true, create labels for every individual frame, not just current
R3dmol id or a r3dmol object (the output from
r3dmol())
library(r3dmol)
r3dmol() %>%
  m_add_model(data = pdb_1j72, format = "pdb") %>%
  m_set_style(
    style = c(
      m_style_stick(radius = 0.15),
      m_style_cartoon()
    )
  ) %>%
  m_add_res_labels(
    sel = m_sel(resn = "GLY"),
    style = m_style_label(
      font = "Arial",
      fontColor = "white",
      backgroundColor = "black",
      showBackground = TRUE
    )
  ) %>%
  m_zoom_to()