Metadata-Version: 2.4
Name: stillsuit
Version: 0.1.0
Summary: A place to store all that is precious.
Author-email: Chad Hanna <crh184@psu.edu>
Project-URL: Homepage, https://git.ligo.org/greg/stillsuit
Project-URL: Documentation, https://greg.docs.ligo.org/stillsuit
Project-URL: Issues, https://git.ligo.org/greg/stillsuit/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pyyaml
Provides-Extra: docs
Requires-Dist: mkdocs; extra == "docs"
Requires-Dist: mkdocs-material; extra == "docs"
Requires-Dist: mkdocstrings[python]; extra == "docs"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Provides-Extra: lint
Requires-Dist: black; extra == "lint"
Requires-Dist: flake8; extra == "lint"
Requires-Dist: flake8-pyproject; extra == "lint"
Requires-Dist: isort; extra == "lint"
Provides-Extra: dev
Requires-Dist: stillsuit[docs]; extra == "dev"
Requires-Dist: stillsuit[lint]; extra == "dev"
Requires-Dist: stillsuit[test]; extra == "dev"
Dynamic: license-file

# stillsuit

A place to store the buffers

## Example

```bash
e1-056827:offline crh184$ cat merge.sh 
# First stage clustering
stillsuit-merge-reduce \
	--config-schema fake_cbc.yaml \
	--clustering-column network_chisq_weighted_snr \
	--clustering-window 0.1 \
	--db-to-insert-into cluster1.sqlite \
	--verbose \
        --dbs out.sqlite 

# Second stage clustering
stillsuit-merge-reduce \
	--config-schema fake_cbc.yaml \
	--clustering-column likelihood \
	--clustering-window 4.0 \
	--db-to-insert-into cluster2.sqlite \
	--verbose \
        --dbs cluster1.sqlite 
```

