gitextract_ve7hzziz/ ├── .github/ │ └── workflows/ │ └── python-package.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── Makefile ├── README.md ├── mypy.ini ├── ncbitax2lin/ │ ├── __init__.py │ ├── data_io.py │ ├── fmt.py │ ├── lineage.py │ ├── ncbitax2lin.py │ ├── struct.py │ └── utils.py ├── pylintrc ├── pyproject.toml ├── tests/ │ ├── __init__.py │ ├── test___init__.py │ ├── test_data/ │ │ ├── names.head_20.dmp │ │ └── nodes.head_20.dmp │ ├── test_data_io.py │ ├── test_fmt.py │ ├── test_lineage.py │ ├── test_ncbitax2lin.py │ └── test_utils.py └── tox.ini