Skip to content

Commit b5f8b6e

Browse files
authored
Merge pull request #1210 from khushthecoder/fix/GH1209-restore-aim-gff-params
fix: restore gene_names parameter passing to AnophelesGenomeFeaturesData
2 parents 22dcc29 + 8d6f9be commit b5f8b6e

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

malariagen_data/ag3.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ def __init__(
212212
taxon_colors=TAXON_COLORS,
213213
aim_species_colors=AIM_SPECIES_COLORS,
214214
virtual_contigs=VIRTUAL_CONTIGS,
215+
gene_names=GENE_NAMES,
215216
inversion_tag_path=INVERSION_TAG_PATH,
216217
unrestricted_use_only=unrestricted_use_only,
217218
surveillance_use_only=surveillance_use_only,

malariagen_data/anopheles.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ def __init__(
136136
taxon_colors: Optional[Mapping[str, str]] = None,
137137
aim_species_colors: Optional[Mapping[str, str]] = None,
138138
virtual_contigs: Optional[Mapping[str, Sequence[str]]] = None,
139+
gene_names: Optional[Mapping[str, str]] = None,
139140
inversion_tag_path: Optional[str] = None,
140141
unrestricted_use_only: Optional[bool] = None,
141142
surveillance_use_only: Optional[bool] = None,
@@ -173,6 +174,7 @@ def __init__(
173174
taxon_colors=taxon_colors,
174175
aim_species_colors=aim_species_colors,
175176
virtual_contigs=virtual_contigs,
177+
gene_names=gene_names,
176178
inversion_tag_path=inversion_tag_path,
177179
unrestricted_use_only=unrestricted_use_only,
178180
surveillance_use_only=surveillance_use_only,

0 commit comments

Comments
 (0)