Skip to content

Commit

Permalink
Merge pull request #279 from nf-core/fix-nextflow-schema
Browse files Browse the repository at this point in the history
  • Loading branch information
atrigila authored Oct 26, 2024
2 parents 4d28759 + 320037a commit 9e11c07
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,21 @@
}
}
},
"downstream_csv_options": {
"title": "Downstream CSV options",
"type": "object",
"description": "Options to customize downstream csv creation",
"default": "",
"properties": {
"strandedness": {
"type": "string",
"enum": ["unstranded", "auto", "reverse", "forward"],
"default": "auto",
"description": "Specifies the strandedness of RNA-Seq data for downstream sample sheet generation. This parameter does not affect the demultiplexing process but is used to generate the appropriate field in the nf-core/rnaseq samplesheet",
"fa_icon": "fas fa-arrows-alt-v"
}
}
},
"institutional_config_options": {
"title": "Institutional config options",
"type": "object",
Expand Down Expand Up @@ -273,6 +288,9 @@
{
"$ref": "#/$defs/demultiplex_options"
},
{
"$ref": "#/$defs/downstream_csv_options"
},
{
"$ref": "#/$defs/institutional_config_options"
},
Expand All @@ -282,11 +300,5 @@
{
"$ref": "#/$defs/generic_options"
}
],
"properties": {
"strandedness": {
"type": "string",
"default": "auto"
}
}
]
}

0 comments on commit 9e11c07

Please sign in to comment.