You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to put everything in here but I'm confused on your install script. I get what conda install -y networkx=2.3 cffi=1.12.3 biopython=1.73 numpy=1.16.4 scipy=1.3.0 is doing. I'm a little confused on why portable-pypy is being used instead pip.
I have 2 directories:
/usr/local/devel/ANNOTATION/jespinoz/anaconda3/envs/swiftortho_env/bin
/usr/local/devel/ANNOTATION/jespinoz/anaconda3/envs/swiftortho_env/lib
Can I just move your bin and lib files into these directories?
It would be much easier to have a conda install -c bioconda swiftortho in the future if possible.
The text was updated successfully, but these errors were encountered:
Why use portable-pypy:
a. portable-pypy is used to install RPtyhon package. CPython is a very slow language, we used RPython to convert python code to c/c++, which significantly speeds up.
b. RRpython can be only installed on CPython 2.7 (or below) and PyPY. It is not compatible with Python 3.6 (or above).
c. SwiftOrtho has removed compatibility with CPython 2.7 because CPython 2.7's official support has been stopped,
You can try to move these files to those directories, but I do not test it yet and don't how if it works.
Using conda install may be easier but there is an environment issued of RPython that needs to be fixed. If you wanna make it easy to use, you can temporally use Linux alias.
Here is your
install.sh
script:I have a conda environment I've created for this program:
I want to put everything in here but I'm confused on your install script. I get what
conda install -y networkx=2.3 cffi=1.12.3 biopython=1.73 numpy=1.16.4 scipy=1.3.0
is doing. I'm a little confused on whyportable-pypy
is being used insteadpip
.I have 2 directories:
/usr/local/devel/ANNOTATION/jespinoz/anaconda3/envs/swiftortho_env/bin
/usr/local/devel/ANNOTATION/jespinoz/anaconda3/envs/swiftortho_env/lib
Can I just move your
bin
andlib
files into these directories?It would be much easier to have a
conda install -c bioconda swiftortho
in the future if possible.The text was updated successfully, but these errors were encountered: