https://github.com/mantidproject/quasielasticbayes
This package provides a convenient set of Python wrappers for a set of routines used to perform Bayesian analysis on quasi-elastic neutron-scattering data.
https://github.com/mantidproject/quasielasticbayes
bayesian-analysis materials-science neutron-scattering quasi-elastic-neutron-scattering
Last synced: 5 months ago
JSON representation
This package provides a convenient set of Python wrappers for a set of routines used to perform Bayesian analysis on quasi-elastic neutron-scattering data.
- Host: GitHub
- URL: https://github.com/mantidproject/quasielasticbayes
- Owner: mantidproject
- License: bsd-3-clause
- Created: 2023-08-17T10:56:36.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-08T13:48:37.000Z (about 1 year ago)
- Last Synced: 2025-09-08T21:38:22.712Z (9 months ago)
- Topics: bayesian-analysis, materials-science, neutron-scattering, quasi-elastic-neutron-scattering
- Language: Fortran
- Homepage:
- Size: 1.56 MB
- Stars: 0
- Watchers: 14
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# quasielasticbayes
This package provides a convenient set of Python wrappers for a set of routines used to perform Bayesian analysis
on quasi-elastic neutron-scattering data. The original Fortran code was written by Dr. Devinder Sivia, with
supervision from Dr. Spencer Howells, in the 1980's. The longevity of the package is owed to the efforts of
Dr. Spencer Howells, and members of the Mantid Project team.
The package is available on [conda-forge](https://anaconda.org/conda-forge/quasielasticbayes) and [PyPi](https://pypi.org/project/quasielasticbayes).
## Install the package
To install this package from conda-forge, run
```sh
conda install -c conda-forge quasielasticbayes
```
## Develop: Building and testing locally
To create and activate the build environment, run
```sh
mamba env create -f conda_envs/qeb-build-env-[os].yml && conda activate qeb-build-env-[os]
```
To build and install the package locally, run
```sh
./scripts/rebuild.sh
```
To run the tests on the installed package
```sh
pytest src/quasielasticbayes/test
```