Installing the GUANinE Benchmark¶
GUANinE datasets are built on Git and Git LFS; optional (recommended) packages are twobitreader, pandas, transformers – but feel free to use your own tool to parse sequences, read files, and load models
Most systems (Colab, HPC, etc) come pre-packaged with
Git, but you should consult Git’s documentation ifwhich gitreturns nothing in your console
Next, to install
Git LFS, you should try:git lfs install
If this returns an error, it means your system can’t find the proper installation files (rip). Those using conda/mamba can try
conda install git-lfs. Alternatively, for mac you can trybrew install git-lfs, while for linux check the apt/deb/yum/rpm guide here.
Finally, to install the optional i/o tools with
pip:pip install twobitreader pip install pandas pip install transformers