Skip to content

Commit

Permalink
Update pipeline schema to new format
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels committed Jul 28, 2020
1 parent c4b2a9e commit 704acad
Showing 1 changed file with 55 additions and 13 deletions.
68 changes: 55 additions & 13 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"title": "nf-core/atacseq pipeline parameters",
"description": "ATACSeq peak-calling and differential analysis pipeline.",
"type": "object",
"properties": {
"Input/output options": {
"definitions": {
"input_output_options": {
"title": "Input/output options",
"type": "object",
"properties": {
"input": {
Expand Down Expand Up @@ -53,7 +54,8 @@
],
"fa_icon": "fas fa-terminal"
},
"Reference genome options": {
"reference_genome_options": {
"title": "Reference genome options",
"type": "object",
"properties": {
"genome": {
Expand Down Expand Up @@ -136,7 +138,8 @@
},
"fa_icon": "fas fa-dna"
},
"Adapter trimming options": {
"adapter_trimming_options": {
"title": "Adapter trimming options",
"type": "object",
"properties": {
"clip_r1": {
Expand Down Expand Up @@ -189,7 +192,8 @@
},
"fa_icon": "fas fa-cut"
},
"Alignment options": {
"alignment_options": {
"title": "Alignment options",
"type": "object",
"properties": {
"keep_mito": {
Expand Down Expand Up @@ -248,7 +252,8 @@
},
"fa_icon": "fas fa-map-signs"
},
"Peak calling options": {
"peak_calling_options": {
"title": "Peak calling options",
"type": "object",
"properties": {
"narrow_peak": {
Expand Down Expand Up @@ -310,7 +315,8 @@
},
"fa_icon": "fas fa-chart-area"
},
"Differential analysis options": {
"differential_analysis_options": {
"title": "Differential analysis options",
"type": "object",
"properties": {
"deseq2_vst": {
Expand All @@ -330,7 +336,8 @@
},
"fa_icon": "fas fa-not-equal"
},
"Process skipping options": {
"process_skipping_options": {
"title": "Process skipping options",
"type": "object",
"properties": {
"skip_fastqc": {
Expand Down Expand Up @@ -384,7 +391,8 @@
},
"fa_icon": "fas fa-forward"
},
"Institutional config options": {
"institutional_config_options": {
"title": "Institutional config options",
"type": "object",
"properties": {
"custom_config_version": {
Expand Down Expand Up @@ -434,7 +442,8 @@
},
"fa_icon": "fas fa-university"
},
"Max job request options": {
"max_job_request_options": {
"title": "Max job request options",
"type": "object",
"properties": {
"max_cpus": {
Expand Down Expand Up @@ -464,7 +473,8 @@
},
"fa_icon": "fab fa-acquisitions-incorporated"
},
"Generic options": {
"generic_options": {
"title": "Generic options",
"type": "object",
"properties": {
"help": {
Expand Down Expand Up @@ -561,5 +571,37 @@
},
"fa_icon": "fas fa-file-import"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/input_output_options"
},
{
"$ref": "#/definitions/reference_genome_options"
},
{
"$ref": "#/definitions/adapter_trimming_options"
},
{
"$ref": "#/definitions/alignment_options"
},
{
"$ref": "#/definitions/peak_calling_options"
},
{
"$ref": "#/definitions/differential_analysis_options"
},
{
"$ref": "#/definitions/process_skipping_options"
},
{
"$ref": "#/definitions/institutional_config_options"
},
{
"$ref": "#/definitions/max_job_request_options"
},
{
"$ref": "#/definitions/generic_options"
}
]
}

0 comments on commit 704acad

Please sign in to comment.