conda install -c g-r-eg bgwas3
bgwas3 make full
Returns:
pkg_resources.DistributionNotFound: The 'bgwas3==1.0' distribution was not found and is required by the application
I'm not sure what caused it. Potentially an issue with the OS installation of Python or the conda package. This was resolved with a manual installation with Python 3.8:
conda create -n bgwas3 python=3.8
- Install dependencies.
- Install bgwas3:
git clone https://github.com/gregoryleeman/bgwas3.git
cd bgwas3
pip install .
cd ..
bgwas3 --help
conda install -c g-r-eg bgwas3bgwas3 make fullReturns:
pkg_resources.DistributionNotFound: The 'bgwas3==1.0' distribution was not found and is required by the applicationI'm not sure what caused it. Potentially an issue with the OS installation of Python or the conda package. This was resolved with a manual installation with Python 3.8:
conda create -n bgwas3 python=3.8git clone https://github.com/gregoryleeman/bgwas3.gitcd bgwas3pip install .cd ..bgwas3 --help