From 25116f6ce9ce29ff3bb4d7e8c9459b0650edc6c4 Mon Sep 17 00:00:00 2001 From: Shing Zhan Date: Fri, 6 Oct 2023 08:22:37 +0100 Subject: [PATCH] Mention bitwise flag values in nodes_flag and individuals_flag --- python/tskit/trees.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/tskit/trees.py b/python/tskit/trees.py index 01c572dccf..84113566b9 100644 --- a/python/tskit/trees.py +++ b/python/tskit/trees.py @@ -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). @@ -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).