-1

The error I am getting is this right when I try to download the pipeline and test it on a minimal dataset with a single command:

$ nextflow run nf-core/rnaseq -profile test,conda --outdir /Users/aggardik/workflow
N E X T F L O W  \~  version 0.30.1
Launching `nf-core/rnaseq` \[jovial_nightingale\] - revision: 6e1e448f53 \[master\]
ERROR \~ Unknown config attribute `params.genomes.GRCh37.projectDir` -- check config file: /Users/aggardik/anaconda3/envs/RNAseq/share/nextflow/assets/nf-core/rnaseq/nextflow.config

\-- Check '.nextflow.log' file for details
(RNAseq)
Steve
  • 51,466
  • 13
  • 89
  • 103
Angeliki
  • 3
  • 1
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Feb 23 '23 at 13:16

1 Answers1

0

Two things I think are needed here:

  • A newer version of Nextflow which enables DSL2 be default; and
  • To specify a revision when running the workflow

For example:

nextflow run nf-core/rnaseq \
    -profile test,conda \
    -revision 3.10.1 \
    --outdir /Users/aggardik/workflow

Note that release 3.10.1 requires Nextflow >= 22.10.11

If you installed nextflow using Conda, you could try using conda update nextflow to update Nextflow to the latest version. Otherwise, please see the installation documentation to get started.

Steve
  • 51,466
  • 13
  • 89
  • 103