Add init for ensembl mapping dict
Browse files- geneformer/__init__.py +1 -0
geneformer/__init__.py
CHANGED
@@ -4,6 +4,7 @@ from pathlib import Path
|
|
4 |
GENE_MEDIAN_FILE = Path(__file__).parent / "gene_median_dictionary.pkl"
|
5 |
TOKEN_DICTIONARY_FILE = Path(__file__).parent / "token_dictionary.pkl"
|
6 |
ENSEMBL_DICTIONARY_FILE = Path(__file__).parent / "gene_name_id_dict.pkl"
|
|
|
7 |
|
8 |
from . import (
|
9 |
collator_for_classification,
|
|
|
4 |
GENE_MEDIAN_FILE = Path(__file__).parent / "gene_median_dictionary.pkl"
|
5 |
TOKEN_DICTIONARY_FILE = Path(__file__).parent / "token_dictionary.pkl"
|
6 |
ENSEMBL_DICTIONARY_FILE = Path(__file__).parent / "gene_name_id_dict.pkl"
|
7 |
+
ENSEMBL_MAPPING_FILE = Path(__file__).parent / "ensembl_mapping_dict_gc95M.pickle"
|
8 |
|
9 |
from . import (
|
10 |
collator_for_classification,
|