Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix nextflow_schema.json structure #279

Merged
merged 5 commits into from
Oct 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}
}
]
}
Loading