Metadata-Version: 2.4
Name: biobanking
Version: 0.0.1
Summary: Biobanking data processing, annotation, and association workflows
Author: Deepro Banerjee
License: MIT License
        
        Copyright (c) 2026 Deepro Banerjee
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Keywords: genomics,biobanks,rvas,phewas
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: scikit-learn
Requires-Dist: tqdm
Requires-Dist: pyarrow
Requires-Dist: gcsfs
Requires-Dist: google-cloud-storage
Requires-Dist: pandas-gbq
Dynamic: license-file

# Biobanking
Systematic collection, processing, storage, and analysis of biological samples and associated health data for medical research.

# Supported pipelines
## Preprocess

## QC (Quality Control)

## Annotation

## Association

## Summary

# Supported biobanks
## All of Us

## UK Biobank

# Internal Use
```bash
python -m pip install -U pip build
pip install twine
# linux
rm -rf dist build *.egg-info src/*.egg-info
# windows
Remove-Item -Recurse -Force dist, build, *.egg-info, src\*.egg-info
python -m build
pip install dist/biobanking-0.0.1-py3-none-any.whl
python -c "from biobanking.association.aou import prepare_continous_traits, create_regenie_burden_files; from rwe.preprocess.aou.measurements import save_measurements_in_wide_format; print('import ok')"
twine upload dist/*
```
