Skip to content

Commit

Permalink
Clean up whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher-hakkaart committed Oct 10, 2024
1 parent 9b95875 commit 0caf23b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ workflow {
params.outdir,
params.input
)

//
// WORKFLOW: Run main workflow
//
Expand Down
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@ validation {
"""
afterText = """${manifest.doi ? "* The pipeline\n" : ""}${manifest.doi.tokenize(",").collect { " https://doi.org/${it.trim().replace('https://doi.org/','')}"}.join("\n")}${manifest.doi ? "\n" : ""}
* The nf-core framework
https://doi.org/10.1038/s41587-020-0439-x
https://doi.org/10.1038/s41587-020-0439-x
* Software dependencies
https://github.com/${manifest.name}/blob/master/CITATIONS.md
https://github.com/${manifest.name}/blob/master/CITATIONS.md
"""
}
summary {
Expand Down
6 changes: 3 additions & 3 deletions subworkflows/local/utils_nfcore_demo_pipeline/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ workflow PIPELINE_INITIALISATION {
workflow.profile.tokenize(',').intersect(['conda', 'mamba']).size() >= 1
)


//
// Validate parameters and generate parameter summary to stdout
//
Expand All @@ -56,7 +56,7 @@ workflow PIPELINE_INITIALISATION {
validate_params,
null
)


//
// Check config provided to the pipeline
Expand Down Expand Up @@ -110,7 +110,7 @@ workflow PIPELINE_COMPLETION {
email // string: email address
email_on_fail // string: email address sent on pipeline failure
plaintext_email // boolean: Send plain-text email instead of HTML

outdir // path: Path to output directory where results will be published
monochrome_logs // boolean: Disable ANSI colour codes in log output
hook_url // string: hook URL for notifications
Expand Down
4 changes: 2 additions & 2 deletions workflows/demo.nf
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ workflow DEMO {
Channel.fromPath(params.multiqc_logo, checkIfExists: true) :
Channel.empty()


summary_params = paramsSummaryMap(
workflow, parameters_schema: "nextflow_schema.json")
ch_workflow_summary = Channel.value(paramsSummaryMultiqc(summary_params))
ch_multiqc_files = ch_multiqc_files.mix(
ch_workflow_summary.collectFile(name: 'workflow_summary_mqc.yaml'))

ch_multiqc_custom_methods_description = params.multiqc_methods_description ?
file(params.multiqc_methods_description, checkIfExists: true) :
file("$projectDir/assets/methods_description_template.yml", checkIfExists: true)
Expand Down

0 comments on commit 0caf23b

Please sign in to comment.