Skip to content

Commit

Permalink
Updated nextflow_schema.json, modules.json, and modules.config files
Browse files Browse the repository at this point in the history
  • Loading branch information
kylacochrane committed Apr 10, 2024
1 parent 9266173 commit a5f1ebc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 29 deletions.
28 changes: 0 additions & 28 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@

process {

// Publish directory names
assembly_directory_name = "assembly"
summary_directory_name = "summary"

publishDir = [
path: { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" },
mode: params.publish_dir_mode,
Expand All @@ -30,30 +26,6 @@ process {
]
}

withName: ASSEMBLY_STUB {
publishDir = [
path: { ["${params.outdir}", "${task.assembly_directory_name}"].join(File.separator) },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

withName: GENERATE_SUMMARY {
publishDir = [
path: { ["${params.outdir}", "${task.summary_directory_name}"].join(File.separator) },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

withName: IRIDA_NEXT_OUTPUT {
publishDir = [
path: { "${params.outdir}" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

withName: CUSTOM_DUMPSOFTWAREVERSIONS {
publishDir = [
path: { "${params.outdir}/pipeline_info" },
Expand Down
5 changes: 5 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
"https://github.com/nf-core/modules.git": {
"modules": {
"nf-core": {
"csvtk/concat": {
"branch": "master",
"git_sha": "3f5420aa22e00bd030a2556dfdffc9e164ec0ec5",
"installed_by": ["modules"]
},
"custom/dumpsoftwareversions": {
"branch": "master",
"git_sha": "de45447d060b8c8b98575bc637a4a575fd0638e1",
Expand Down
3 changes: 2 additions & 1 deletion nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"format": "directory-path",
"description": "Path to Bracken database (do not use symlinks)"
}
}
},
"required": ["kraken2_db", "bracken_db"]
},
"speciesabundance_pipeline_parameters": {
"title": "SpeciesAbundance Pipeline Parameters",
Expand Down

0 comments on commit a5f1ebc

Please sign in to comment.