-
I am trying to run pgsc on a secured server, specifically Inuvika OVD. I have gotten my PGS score files and sample sheet in the right directory. The code below: mkdir: cannot create directory '/gpfs/software/genomics/nextflow/nextflow-pipelines/framework': permission denied Kindly guide on ways to troubleshoot this. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @Jega09, it seems like this is a permissions error that's blocking nextflow from running. I confirm your nextflow runs correctly (https://www.nextflow.io/docs/latest/install.html#install-nextflow), and then try our test command ( You can also find the specific guide for offline running of the pipeline here: https://pgsc-calc.readthedocs.io/en/latest/how-to/offline.html |
Beta Was this translation helpful? Give feedback.
-
By default Nextflow will try to download a copy of our code to:
If you don't have permissions to edit this directory you'll get an error. You can change the location where Nextflow downloads code to by changing the environment variable
Or by manually downloading a copy of our code:
(when running the code locally you need to run main.nf and not pgscatalog/pgsc_calc) |
Beta Was this translation helpful? Give feedback.
Hi @Jega09, it seems like this is a permissions error that's blocking nextflow from running. I confirm your nextflow runs correctly (https://www.nextflow.io/docs/latest/install.html#install-nextflow), and then try our test command (
nextflow run pgscatalog/pgsc_calc -profile test,conda
) before trying your own data.You can also find the specific guide for offline running of the pipeline here: https://pgsc-calc.readthedocs.io/en/latest/how-to/offline.html