Skip to content

Commit

Permalink
style: Align all params by ='s
Browse files Browse the repository at this point in the history
Could also do it by section but currently it was just chaos
  • Loading branch information
edmundmiller committed Feb 27, 2024
1 parent 9179ae7 commit 5d899a2
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions nf_core/pipeline-template/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,53 +11,53 @@ params {

// TODO nf-core: Specify your pipeline's command line flags
// Input options
input = null
input = null

{%- if igenomes %}
// References
genome = null
igenomes_base = 's3://ngi-igenomes/igenomes/'
igenomes_ignore = false
genome = null
igenomes_base = 's3://ngi-igenomes/igenomes/'
igenomes_ignore = false
{% else %}
fasta = null
fasta = null
{%- endif %}

// MultiQC options
multiqc_config = null
multiqc_title = null
multiqc_logo = null
max_multiqc_email_size = '25.MB'
multiqc_methods_description = null
multiqc_config = null
multiqc_title = null
multiqc_logo = null
max_multiqc_email_size = '25.MB'
multiqc_methods_description = null

// Boilerplate options
outdir = null
publish_dir_mode = 'copy'
email = null
email_on_fail = null
plaintext_email = false
monochrome_logs = false
hook_url = null
help = false
version = false
outdir = null
publish_dir_mode = 'copy'
email = null
email_on_fail = null
plaintext_email = false
monochrome_logs = false
hook_url = null
help = false
version = false

// Config options
config_profile_name = null
config_profile_description = null
config_profile_name = null
config_profile_description = null

{%- if nf_core_configs %}
custom_config_version = 'master'
custom_config_base = "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}"
config_profile_contact = null
config_profile_contact_github = null
config_profile_contact_email = null
config_profile_url = null
custom_config_version = 'master'
custom_config_base = "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}"
config_profile_contact = null
config_profile_contact_github = null
config_profile_contact_email = null
config_profile_url = null
{% endif %}

// Max resource options
// Defaults only, expecting to be overwritten
max_memory = '128.GB'
max_cpus = 16
max_time = '240.h'
max_memory = '128.GB'
max_cpus = 16
max_time = '240.h'

// Schema validation default options
validationFailUnrecognisedParams = false
Expand Down

0 comments on commit 5d899a2

Please sign in to comment.