Skip to content

Commit

Permalink
Replace with
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels committed Jul 18, 2023
1 parent f4b4da9 commit 27c7b12
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ nextflow.enable.dsl = 2
* given `params.foo` specify on the run command line `--foo some_value`.
*/

params.reads = "$baseDir/data/ggal/ggal_gut_{1,2}.fq"
params.transcriptome = "$baseDir/data/ggal/ggal_1_48850000_49020000.Ggal71.500bpflank.fa"
params.reads = "$projectDir/data/ggal/ggal_gut_{1,2}.fq"
params.transcriptome = "$projectDir/data/ggal/ggal_1_48850000_49020000.Ggal71.500bpflank.fa"
params.outdir = "results"
params.multiqc = "$baseDir/multiqc"
params.multiqc = "$projectDir/multiqc"

log.info """\
R N A S E Q - N F P I P E L I N E
Expand Down
8 changes: 4 additions & 4 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ manifest {
* default params
*/

params.reads = "$baseDir/data/ggal/ggal_gut_{1,2}.fq"
params.transcriptome = "$baseDir/data/ggal/ggal_1_48850000_49020000.Ggal71.500bpflank.fa"
params.reads = "$projectDir/data/ggal/ggal_gut_{1,2}.fq"
params.transcriptome = "$projectDir/data/ggal/ggal_1_48850000_49020000.Ggal71.500bpflank.fa"
params.outdir = "results"
params.multiqc = "$baseDir/multiqc"
params.multiqc = "$projectDir/multiqc"

/*
* defines execution profiles for different environments
Expand Down Expand Up @@ -111,6 +111,6 @@ profiles {
}

conda {
process.conda = "$baseDir/conda.yml"
process.conda = "$projectDir/conda.yml"
}
}

0 comments on commit 27c7b12

Please sign in to comment.