├── .github └── workflows │ ├── build.yml │ ├── latest-changes.jinja2 │ └── latest-changes.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CITATION.cff ├── LICENSE ├── README.md ├── docs ├── api.md ├── changelog.md ├── index.md └── quickstart.ipynb ├── lamin-project.yaml ├── noxfile.py ├── pyproject.toml ├── readfcs ├── __init__.py ├── _core.py └── datasets │ ├── __init__.py │ └── _datasets.py └── tests └── test_notebooks.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/latest-changes.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/.github/workflows/latest-changes.jinja2 -------------------------------------------------------------------------------- /.github/workflows/latest-changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/.github/workflows/latest-changes.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/README.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- 1 | # API 2 | 3 | ```{eval-rst} 4 | .. automodule:: readfcs 5 | ``` 6 | -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/quickstart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/docs/quickstart.ipynb -------------------------------------------------------------------------------- /lamin-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/lamin-project.yaml -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readfcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/readfcs/__init__.py -------------------------------------------------------------------------------- /readfcs/_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/readfcs/_core.py -------------------------------------------------------------------------------- /readfcs/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/readfcs/datasets/__init__.py -------------------------------------------------------------------------------- /readfcs/datasets/_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/readfcs/datasets/_datasets.py -------------------------------------------------------------------------------- /tests/test_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laminlabs/readfcs/HEAD/tests/test_notebooks.py --------------------------------------------------------------------------------