Skip to content

Commit

Permalink
Mention bitwise flag values in nodes_flag and individuals_flag
Browse files Browse the repository at this point in the history
  • Loading branch information
szhan authored and mergify[bot] committed Oct 6, 2023
1 parent d61e61a commit 25116f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/tskit/trees.py
Original file line number Diff line number Diff line change
Expand Up @@ -5660,7 +5660,7 @@ def individual_locations(self):
@property
def individuals_flags(self):
"""
Efficient access to the ``flags`` column in the
Efficient access to the bitwise ``flags`` column in the
:ref:`sec_individual_table_definition` as a numpy array (dtype=np.uint32).
Equivalent to ``ts.tables.individuals.flags`` (but avoiding the full copy
of the table data that accessing ``ts.tables`` currently entails).
Expand All @@ -5680,7 +5680,7 @@ def nodes_time(self):
@property
def nodes_flags(self):
"""
Efficient access to the ``flags`` column in the
Efficient access to the bitwise ``flags`` column in the
:ref:`sec_node_table_definition` as a numpy array (dtype=np.uint32).
Equivalent to ``ts.tables.nodes.flags`` (but avoiding the full copy
of the table data that accessing ``ts.tables`` currently entails).
Expand Down

0 comments on commit 25116f6

Please sign in to comment.