-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error with sklearn on installing by pip #54
Comments
I came into the same issues. Is it fixed? |
Yes, you can use a docker container of AltAnalyze provided here:frankligy/SNAF: Splicing Neo Antigen Finder (SNAF) is an easy-to-use Python package to identify splicing-derived tumor neoantigens from RNA sequencing data, it further leverages both deep learning and hierarchical Bayesian models to prioritize certain candidates for experimental validationgithub.comBest,NathanOn Sep 23, 2024, at 7:46 AM, macoreL ***@***.***> wrote:
I came into the same issues. Is it fixed?
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
I am afraid this docker container is also not work as well. I tried to access it with singularity. |
Hi @ciel1021, Could you elaborate on what issue you encounter when using the container? Some instructions on installation and how to use it are provided here: install: https://snaf.readthedocs.io/en/latest/installation.html#step-1-altanalyze Best, |
Hi @frankligy `singularity exec --bind /mnt/data1/home/jaquino altanalyze_0.7.0.1.sif altanalyze INFO: Converting SIF file to temporary sandbox... FATAL: "altanalyze": executable file not found in $PATH INFO: Cleaning up image... ` |
Hi @ciel1021, Just to answer the installation and running docker container question. First, when you pull the image from docker hub, since this is not a read-only image, you should use --sandbox and write it to a folder: singularity build --sandbox altanalyze/ docker://frankligy123/altanalyze:0.7.0.1 instead of singularity build altanalyze.sif docker://frankligy123/altanalyze:0.7.0.1 Then when you run the container, you should bind your host system to /mnt folder in virtual container, and use the writable folder instead of read-only sif: singularity run -B $PWD:/mnt --writable altanalyze/ identify bam 4 There will be other caveats but these are the two I spotted from what I saw so far. Best, |
I am trying to install altanalyze in a conda environment on linux server. I tried to install directly by
pip install AltAnalyze
but there comes an error:I tried to download the
sklearn-0.0.post9.tar.gz
, changed the line which occurs the problem according to:https://stackoverflow.com/questions/12541370/typeerror-encoding-is-an-invalid-keyword-argument-for-this-function
from
to
and install it before altanalyze but it seemed that
sklearn
is not supported now:Is there any update on scikit-learn to fix the problem?
The text was updated successfully, but these errors were encountered: