File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1212# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1313
1414project = "malariagen_data API"
15- copyright = "2023 , MalariaGEN"
15+ copyright = "2024 , MalariaGEN"
1616author = "MalariaGEN"
1717version = os .environ .get ("VERSION_TAG" , "dev" )
1818
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments