Skip to content

Commit 6b49711

Browse files
authored
Merge branch 'master' into test-veff-1138
2 parents db5dadd + c66eb1a commit 6b49711

6 files changed

Lines changed: 21 additions & 0 deletions

File tree

malariagen_data/adar1.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ def __init__(
123123
gcs_region_urls=GCS_REGION_URLS,
124124
major_version_number=MAJOR_VERSION_NUMBER,
125125
major_version_path=MAJOR_VERSION_PATH,
126+
gff_gene_type="gene",
127+
gff_gene_name_attribute="Note",
128+
gff_default_attributes=("ID", "Parent", "Note", "description"),
126129
storage_options=storage_options,
127130
tqdm_class=tqdm_class,
128131
taxon_colors=TAXON_COLORS,

malariagen_data/adir1.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ def __init__(
123123
gcs_region_urls=GCS_REGION_URLS,
124124
major_version_number=MAJOR_VERSION_NUMBER,
125125
major_version_path=MAJOR_VERSION_PATH,
126+
gff_gene_type="protein_coding_gene",
127+
gff_gene_name_attribute="Note",
128+
gff_default_attributes=("ID", "Parent", "Note", "description"),
126129
storage_options=storage_options,
127130
tqdm_class=tqdm_class,
128131
taxon_colors=TAXON_COLORS,

malariagen_data/af1.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,9 @@ def __init__(
125125
gcs_region_urls=GCS_REGION_URLS,
126126
major_version_number=MAJOR_VERSION_NUMBER,
127127
major_version_path=MAJOR_VERSION_PATH,
128+
gff_gene_type="protein_coding_gene",
129+
gff_gene_name_attribute="Note",
130+
gff_default_attributes=("ID", "Parent", "Note", "description"),
128131
storage_options=storage_options,
129132
tqdm_class=tqdm_class,
130133
taxon_colors=TAXON_COLORS,

malariagen_data/ag3.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,9 @@ def __init__(
204204
gcs_region_urls=GCS_REGION_URLS,
205205
major_version_number=MAJOR_VERSION_NUMBER,
206206
major_version_path=MAJOR_VERSION_PATH,
207+
gff_gene_type="gene",
208+
gff_gene_name_attribute="Name",
209+
gff_default_attributes=("ID", "Parent", "Name", "description"),
207210
storage_options=storage_options,
208211
tqdm_class=tqdm_class,
209212
taxon_colors=TAXON_COLORS,

malariagen_data/amin1.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ def __init__(
123123
gcs_region_urls=GCS_REGION_URLS,
124124
major_version_number=MAJOR_VERSION_NUMBER,
125125
major_version_path=MAJOR_VERSION_PATH,
126+
gff_gene_type="protein_coding_gene",
127+
gff_gene_name_attribute="Note",
128+
gff_default_attributes=("ID", "Parent", "Note", "description"),
126129
storage_options=storage_options, # used by fsspec via init_filesystem()
127130
tqdm_class=tqdm_class,
128131
taxon_colors=TAXON_COLORS,

malariagen_data/anopheles.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@ def __init__(
128128
gcs_region_urls: Mapping[str, str],
129129
major_version_number: int,
130130
major_version_path: str,
131+
gff_gene_type: str,
132+
gff_gene_name_attribute: str,
133+
gff_default_attributes: Tuple[str, ...],
131134
tqdm_class,
132135
storage_options: Mapping,
133136
taxon_colors: Optional[Mapping[str, str]] = None,
@@ -152,6 +155,9 @@ def __init__(
152155
major_version_number=major_version_number,
153156
major_version_path=major_version_path,
154157
storage_options=storage_options,
158+
gff_gene_type=gff_gene_type,
159+
gff_gene_name_attribute=gff_gene_name_attribute,
160+
gff_default_attributes=gff_default_attributes,
155161
cohorts_analysis=cohorts_analysis,
156162
aim_analysis=aim_analysis,
157163
aim_metadata_dtype=aim_metadata_dtype,

0 commit comments

Comments
 (0)