Skip to content

Commit fac2400

Browse files
committed
Document missing arrays
1 parent 2e42bfc commit fac2400

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

docs/python-api.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@ for more information.
9797
TreeSequence.mutations_node
9898
TreeSequence.mutations_parent
9999
TreeSequence.mutations_time
100+
TreeSequence.mutations_derived_state
101+
TreeSequence.mutations_metadata
102+
TreeSequence.mutations_edge
103+
TreeSequence.mutations_inherited_state
100104
TreeSequence.migrations_left
101105
TreeSequence.migrations_right
102106
TreeSequence.migrations_right

python/tests/test_highlevel.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1218,6 +1218,7 @@ def test_trees(self, ts):
12181218
def test_mutations(self, ts):
12191219
self.verify_mutations(ts)
12201220

1221+
@pytest.mark.skipif(not _tskit.HAS_NUMPY_2, reason="Requires NumPy 2.0 or higher")
12211222
@pytest.mark.parametrize("ts", tsutil.get_example_tree_sequences())
12221223
def test_mutation_inherited_state_property(self, ts):
12231224
inherited_states = ts.mutations_inherited_state

0 commit comments

Comments
 (0)