Closed mguaita closed 1 year ago
It is not possible to run IRIS with Python 3. The file conda_requirements_py3.txt
is for installing the snakemake workflow manager which will run the IRIS code using Python 2
From the output you posted it looks like the ./install
command was run in a directory named IRIS
(based on the command prompt), but somehow the conda commands were run in /root/
. My guess is that set_env_vars.sh
is not behaving as expected at this line: https://github.com/Xinglab/IRIS/blob/v2.0.1/set_env_vars.sh#L8
It's trying to find the directory of the script, but it seems like it's finding /root/ instead of the IRIS/ directory. You could edit that file to directly set SCRIPT_DIR='/path/to/IRIS/'
Hello Eric,
Your guess was right, we have been able to complete the installation of IRIS running ./install all.
We have another question that is whether is possible to run individual functions of IRIS without the Snakemake file and how? The command IRIS -h or _IRIS function -h_ does not seem to work. The command ./run for the example test does work though.
Thank you very much!
You can run individual IRIS commands when you have the conda environment activated
conda activate ./conda_env_2
IRIS -h
The ./run
script works by activating conda environments as needed
Thank you very much Eric!
Hello,
We are trying to install IRIS in our research cluster and we get this error.
Also, is it possible to run IRIS on Python 3? As there is a: 'conda_requirements_py3.txt'
This is the terminal installing output: