Skip to content

Commit e5da8a3

Browse files
authored
Merge branch 'master' into 583-GWSS-colors
2 parents 60780e1 + 7348218 commit e5da8a3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

docs/source/Ag3.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ Sample metadata access
4949
sample_metadata
5050
add_extra_metadata
5151
clear_extra_metadata
52+
cross_metadata
5253
count_samples
5354
lookup_sample
5455
plot_samples_bar

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1313

1414
project = "malariagen_data API"
15-
copyright = "2023, MalariaGEN"
15+
copyright = "2024, MalariaGEN"
1616
author = "MalariaGEN"
1717
version = os.environ.get("VERSION_TAG", "dev")
1818

malariagen_data/anoph/g123.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def _load_data_for_g123(
8080
inline_array=True,
8181
chunks="native",
8282
).compute()
83-
hap_site_mask = np.in1d(pos, haplotype_pos, assume_unique=True)
83+
hap_site_mask = np.isin(pos, haplotype_pos, assume_unique=True)
8484
pos = pos[hap_site_mask]
8585
gt = gt.compress(hap_site_mask, axis=0)
8686

0 commit comments

Comments
 (0)