Source code for tacular.gno.dclass

from dataclasses import dataclass

from ..obo_entity import OboEntity


[docs] @dataclass(frozen=True, slots=True) class GnoInfo(OboEntity): """Class to store information about a PSI-MOD modification""" @property def id_tag(self) -> str: if self.id.startswith("G"): return self.id[1:].lstrip("0") return self.id.lstrip("0")