├── .env.template ├── .github └── workflows │ └── release.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples ├── 1536_well_simple.xlsx ├── 24_well_simple.xlsx ├── 384_well_simple.xlsx ├── 48_well_simple.xlsx ├── 96_well_simple.xlsx ├── MultiPlateMetadata.xlsx ├── byonoy_absolute_example.csv ├── dummy_48_well_example.csv ├── glomax_example.csv ├── tecan_infinite_example.xlsx └── tecan_spark_example.xlsx ├── images ├── platechain.png ├── spark_parsed.png └── spark_raw.png ├── notebooks ├── simple_48_well_with_platemap.ipynb └── simple_with_platemap.ipynb ├── poetry.lock ├── pyproject.toml └── src └── platechain ├── __init__.py ├── chain.py ├── constants.py ├── prompts.py └── utils.py /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/.env.template -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/README.md -------------------------------------------------------------------------------- /examples/1536_well_simple.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/examples/1536_well_simple.xlsx -------------------------------------------------------------------------------- /examples/24_well_simple.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/examples/24_well_simple.xlsx -------------------------------------------------------------------------------- /examples/384_well_simple.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/examples/384_well_simple.xlsx -------------------------------------------------------------------------------- /examples/48_well_simple.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/examples/48_well_simple.xlsx -------------------------------------------------------------------------------- /examples/96_well_simple.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/examples/96_well_simple.xlsx -------------------------------------------------------------------------------- /examples/MultiPlateMetadata.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/examples/MultiPlateMetadata.xlsx -------------------------------------------------------------------------------- /examples/byonoy_absolute_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/examples/byonoy_absolute_example.csv -------------------------------------------------------------------------------- /examples/dummy_48_well_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/examples/dummy_48_well_example.csv -------------------------------------------------------------------------------- /examples/glomax_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/examples/glomax_example.csv -------------------------------------------------------------------------------- /examples/tecan_infinite_example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/examples/tecan_infinite_example.xlsx -------------------------------------------------------------------------------- /examples/tecan_spark_example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/examples/tecan_spark_example.xlsx -------------------------------------------------------------------------------- /images/platechain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/images/platechain.png -------------------------------------------------------------------------------- /images/spark_parsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/images/spark_parsed.png -------------------------------------------------------------------------------- /images/spark_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/images/spark_raw.png -------------------------------------------------------------------------------- /notebooks/simple_48_well_with_platemap.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/notebooks/simple_48_well_with_platemap.ipynb -------------------------------------------------------------------------------- /notebooks/simple_with_platemap.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/notebooks/simple_with_platemap.ipynb -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/platechain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/src/platechain/__init__.py -------------------------------------------------------------------------------- /src/platechain/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/src/platechain/chain.py -------------------------------------------------------------------------------- /src/platechain/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/src/platechain/constants.py -------------------------------------------------------------------------------- /src/platechain/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/src/platechain/prompts.py -------------------------------------------------------------------------------- /src/platechain/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinxbio/platechain/HEAD/src/platechain/utils.py --------------------------------------------------------------------------------