VTG_PREPROCESS_MIN_RECORDS_THRESHOLD
Development build
make docker PKG_NAME=vtg.chisqRelease build (should only be triggered by CI, see release section below)
make docker PKG_NAME=vtg.chisq TAG=x.x.xYou can also use the specialized make rules for building the image, for example:
make chisqto build a development image for the vtg.chisq package. Or you can build a release image with (should only be triggered by CI, see release section below):
make chisq TAG=x.x.xTo make a release you need to tag the commit with the algorithm and version number, for example:
git tag -a [ALGORITHM]/1.0.0 -m "Release 1.0.0"
git push origin [ALGORITHM]/1.0.0With [ALGORITHM] being the name of the algorithm:
chisqsummarysurvfitsurvdiffcoxphcrosstab
The documentation is generated using sphinx. To generate the documentation you need to install the dependencies:
pip install -r docs/requirements.txtThen you can generate the documentation with:
cd docs
make livehtmlThen you can view the documentation at http://localhost:8000.