├── .editorconfig ├── .github └── workflows │ ├── mkdocs.yml │ └── pytest.yml ├── .gitignore ├── .isort.cfg ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE ├── Makefile ├── README.md ├── docs ├── authors.md ├── contributing.md ├── examples │ └── reconcile_cell_types.md ├── history.md ├── index.md ├── installing.md └── reference │ ├── reconcile.md │ ├── utils.md │ └── webutils.md ├── mkdocs.yml ├── reconciler ├── __init__.py ├── main.py ├── utils.py └── webutils.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── test_reconcile.py ├── test_utils.py └── test_webutils.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/.github/workflows/mkdocs.yml -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [tool.isort] 2 | profile = "black" 3 | multi_line_output = 3 -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/README.md -------------------------------------------------------------------------------- /docs/authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/docs/authors.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/examples/reconcile_cell_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/docs/examples/reconcile_cell_types.md -------------------------------------------------------------------------------- /docs/history.md: -------------------------------------------------------------------------------- 1 | ../HISTORY.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /docs/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/docs/installing.md -------------------------------------------------------------------------------- /docs/reference/reconcile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/docs/reference/reconcile.md -------------------------------------------------------------------------------- /docs/reference/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/docs/reference/utils.md -------------------------------------------------------------------------------- /docs/reference/webutils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/docs/reference/webutils.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /reconciler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/reconciler/__init__.py -------------------------------------------------------------------------------- /reconciler/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/reconciler/main.py -------------------------------------------------------------------------------- /reconciler/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/reconciler/utils.py -------------------------------------------------------------------------------- /reconciler/webutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/reconciler/webutils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_reconcile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/tests/test_reconcile.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_webutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvfe/reconciler/HEAD/tests/test_webutils.py --------------------------------------------------------------------------------