Follow the steps below to install and set up BioGITOM:
Clone the repository from GitHub to your local system:
git clone https://github.com/lias-laboratory/biogitom.git
Change to the directory where the repository was cloned:
cd biogitom
Using a virtual environment ensures that dependencies do not conflict with other Python projects. Create and activate a virtual environment as follows:
-
Create the Environment:
python -m venv env
-
Activate the Environment:
- On Linux/Mac:
source env/bin/activate
- On Windows:
env\Scripts\activate
- On Linux/Mac:
Once the virtual environment is activated, install the required dependencies:
pip install -r requirements.txt
Run the following script to download and extract the required data files:
python download_data.py
- What this script does:
- Downloads a compressed archive of the required data files from the remote server.
- Extracts the files into a temporary
temp/
directory. - Moves the files to the appropriate locations within the repository (e.g.,
Datasets/
,Tasks/
). - Deletes the temporary
temp/
directory after extraction.
By following these steps, BioGITOM will be ready for use! For guidance on executing tasks and running experiments, refer to the Reproducibility Guide section.