class Gene(obj_tables.Model):
    id = obj_tables.StringAttribute(primary=True, unique=True, verbose_name='Id')
    symbol = obj_tables.StringAttribute(verbose_name='Symbol')
    location = obj_tables.OneToOneAttribute('Location', related_name='genes', verbose_name='Location')