Closed Old-Shatterhand closed 1 year ago
For completeness: The used os for this reported issue is macOS ventura 13.4, chip M1 Reference: https://github.com/kalininalab/DataSAIL/issues/2#issuecomment-1584467725
Hi @atabaigi,
as a first workarond, I suggest you install DataSAIL from source and use it as a python package. Therefore, please run
conda create -n <env_name> python=3.10
conda activate <env_name>
mamba install -c mosek -c conda-forge -c bioconda -y numpy pandas networkx matplotlib pytest setuptools pyscipopt foldseek mmseqs2 cd-hit mash tmalign cvxpy pytest-cov rdkit pytest-cases scikit-learn
pip install grakel
(assuming mamba
is installed system-wide or in the base
environment of the conda installation)
Now, you should be able to use DataSAIL as a python package, e.g.,
from datasail.sail import datasail
_, splits, _ = datasail(techniques=["CCSe"], e_type="M", e_data="input2500.tsv")
I hope this works as a quick patch for you and I will investigate the problem, but this might take one or two weeks.
Best, Roman
Hi @atabaigi,
I'm sorry, I didn't read your post properly. You don't have an issue with installing DataSAIL on OSX (it succeeds for me), but you try to find it in the wrong channel. You need to run
conda search -c kalininalab datasail
DataSAIL is uploaded to the kalininalab
channel, therefore, you cannot find it in the conda-forge
channel.
If you run
mamba install -c kalininalab -c mosek -c conda-forge -c bioconda -y numpy pandas networkx matplotlib pytest setuptools pyscipopt foldseek mmseqs2 cd-hit mash tmalign cvxpy pytest-cov rdkit pytest-cases scikit-learn mosek
pip install grakel
you should be able to install DataSAIL.
Best, Roman
Hi @Old-Shatterhand, I install the mamba and then run your script. Thank you for your patience with me. Here is the error I encountered. I think it is the same as the previous error
best regards Vahid
Originally posted by @atabaigi in https://github.com/kalininalab/DataSAIL/issues/2#issuecomment-1584438874