Skip to content

Commit

Permalink
Refine nextflow schema
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjtaylor committed Aug 3, 2023
1 parent c9025ef commit 15265e3
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 16 deletions.
47 changes: 32 additions & 15 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,28 +29,45 @@
"type": "string",
"format": "directory-path",
"description": "The output directory where the results will be saved. You have to use absolute paths to storage on Cloud infrastructure.",
"fa_icon": "fas fa-folder-open"
"fa_icon": "fas fa-folder-open",
"help_text": ""
}
}
},
"pipeline_options": {
"title": "Pipeline options",
"type": "object",
"description": "",
"default": "",
"properties": {
"outsuffix": {
"type": "string",
"default": "_cleaned",
"description": "Suffix for output files (default: _cleaned)"
},
"rm_svs_label": {
"type": "boolean",
"default": true,
"description": "Boolean indicating whether to remove the label image in SVS files (default: true)"
},
"rm_svs_macro": {
"type": "boolean",
"description": "Boolean indicating whether to remove the macro image in SVS files (default: true)"
},
"rm_ome_sa": {
"type": "boolean",
"default": true,
"description": "Boolean indicating whether to remove structural annotations in OME-XML files (default: true)"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/input_output_options"
}
],
"properties": {
"outsuffix": {
"type": "string",
"default": "_cleaned"
},
"rm_svs_label": {
"type": "string",
"default": "true"
},
"rm_ome_sa": {
"type": "string",
"default": "true"
{
"$ref": "#/definitions/pipeline_options"
}
}
]
}
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
tifftools == 1.3.12
ome-types == 0.4.1
synapseclient == 2.7.2
synapseclient == 2.7.2

0 comments on commit 15265e3

Please sign in to comment.