Skip to content

Commit

Permalink
add test profile and fixed include base.config
Browse files Browse the repository at this point in the history
  • Loading branch information
jhayer committed Aug 28, 2023
1 parent 9a25d19 commit d696ab4
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ manifest {

// default parameters
params {
cpus = "2"
memory = "16g"
help = false
profile = false

Expand Down Expand Up @@ -53,6 +51,7 @@ profiles {

docker {
docker.enabled = true
includeConfig "$baseDir/conf/base.config"
includeConfig "$baseDir/conf/containers.config"
docker.runOptions='-u "$( id -u ):$( id -g )"'
}
Expand All @@ -65,6 +64,7 @@ profiles {
}
singularity {
singularity.enabled = true
includeConfig "$baseDir/conf/base.config"
includeConfig "$baseDir/conf/containers.config"
}
local{
Expand All @@ -77,4 +77,14 @@ profiles {
name = 'slurm'
}
}
test {
params.contigs = "$baseDir/test/input/contigs"
params.genus = 'Escherichia'
params.species = 'coli'
params.species_taxid = 562
params.busco_lineage = 'enterobacterales_odb10'
params.output = './results_test'
}
}


0 comments on commit d696ab4

Please sign in to comment.