File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ Sample metadata access
49
49
sample_metadata
50
50
add_extra_metadata
51
51
clear_extra_metadata
52
+ cross_metadata
52
53
count_samples
53
54
lookup_sample
54
55
plot_samples_bar
Original file line number Diff line number Diff line change 12
12
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
13
13
14
14
project = "malariagen_data API"
15
- copyright = "2023 , MalariaGEN"
15
+ copyright = "2024 , MalariaGEN"
16
16
author = "MalariaGEN"
17
17
version = os .environ .get ("VERSION_TAG" , "dev" )
18
18
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ def _load_data_for_g123(
80
80
inline_array = True ,
81
81
chunks = "native" ,
82
82
).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 )
84
84
pos = pos [hap_site_mask ]
85
85
gt = gt .compress (hap_site_mask , axis = 0 )
86
86
You can’t perform that action at this time.
0 commit comments