-
Has anyone else had issues with installing the pgscatalog_utils on a mac with an M1? I've tried several things so appreciate any feedback: Firstly: I need to run it in a conda env as it fails to execute in local environment with Java version 23. ########## trying install in local environment ######## ERROR: Cannot find Java or it's a wrong version -- please make sure that Java 8 or later (up to 21) is installed I create conda env with java version 21 and it works to download:% curl -s https://get.nextflow.io | bash
Nextflow installation completed. Please note:
% mv nextflow ~/bin/ I ensure this in my path using .zshrc fileexport PATH=$PATH:~/bin % source ~/.zshrc installed mamba in conda env.% mamba install pgscatalog-util error libmamba Could not solve for environment specs There are no options for xopen version >= 1.8.0 and < 2.0 on conda |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Just an FYI in case it helps someone else withe similar problems: It works with docker in the conda env (which I tried and failed at some point but was probably trying it outside of the conda env along with many other attempts). Here is the command that works in activated conda env: (conda_env)... $nextflow run pgscatalog/pgsc_calc -profile docker --input <my_samplesheet.csv> --pgs_id PGS000020,PGS000036,PGS001294 --target_build GRCh37 |
Beta Was this translation helpful? Give feedback.
-
All of the packages are available in the bioconda or conda-forge channels. We don't use the default anaconda channel because they have restrictive license terms that apply to any user downloading software from the defaults channel. It might help to make sure your channels are set up in the right order:
But you shouldn't need to install the If you've got a conda environment where Nextflow is installed just use the |
Beta Was this translation helpful? Give feedback.
Just an FYI in case it helps someone else withe similar problems:
It works with docker in the conda env (which I tried and failed at some point but was probably trying it outside of the conda env along with many other attempts).
Here is the command that works in activated conda env:
(conda_env)... $nextflow run pgscatalog/pgsc_calc -profile docker --input <my_samplesheet.csv> --pgs_id PGS000020,PGS000036,PGS001294 --target_build GRCh37