Skip to content

Commit

Permalink
fix value translations
Browse files Browse the repository at this point in the history
  • Loading branch information
vgp57214_gsk committed Apr 3, 2024
1 parent 2e90f69 commit 8042c75
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 13 deletions.
43 changes: 32 additions & 11 deletions jsons/parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -3496,18 +3496,39 @@
"value_type": "list"
},
{
"default_value": "",
"default_value": false,
"description": "Is the compensation required? Is the FCS pre-compensated? [TRUE, FALSE]",
"key_translations": {
"cytocluster_style_1": "--compensationRequired",
"cytocluster_style_1": "--compensationRequired_<DROP_KEY>",
"ursgal_style_1": "compensation_required"
},
"name": "compensation_required",
"tag": [
"cytocluster"
],
"triggers_rerun": true,
"value_translations": {},
"value_translations": {
"cytocluster_style_1": [
[
false,
""
],
[
true,
"--compensationRequired"
]
],
"ursgal_style_1": [
[
false,
false
],
[
true,
true
]
]
},
"value_type": "bool"
},
{
Expand Down Expand Up @@ -10108,9 +10129,9 @@
"description": "Directory with QC to plot",
"key_translations": {
"cytocluster_style_1": "--inputDir",
"ursgal_style_1": "input_dir"
"ursgal_style_1": "qc_dir"
},
"name": "input_dir",
"name": "qc_dir",
"tag": [
"cytocluster"
],
Expand Down Expand Up @@ -13953,9 +13974,9 @@
"description": "Output directory",
"key_translations": {
"cytocluster_style_1": "--outDir",
"ursgal_style_1": "out_dir"
"ursgal_style_1": "output_dir"
},
"name": "out_dir",
"name": "output_dir",
"tag": [
"cytocluster"
],
Expand Down Expand Up @@ -15888,19 +15909,19 @@
"value_type": "float"
},
{
"default_value": "",
"default_value": [],
"description": "Which QC methods you want to apply on the FCS file",
"key_translations": {
"cytocluster_style_1": "--qcMethod",
"ursgal_style_1": "qc_method"
"ursgal_style_1": "qc_methods"
},
"name": "qc_method",
"name": "qc_methods",
"tag": [
"cytocluster"
],
"triggers_rerun": true,
"value_translations": {},
"value_type": "str"
"value_type": "list"
},
{
"default_value": null,
Expand Down
6 changes: 4 additions & 2 deletions jsons/styles.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,15 @@
},
{
"name": "Cytocluster",
"reference": "Pirro, S., Ranff, T. CytoCluster is a framework for the analysis of flow cytometry data.",
"reference": "Pirro, S. CytoCluster is a framework for the analysis of flow cytometry data.",
"style": "cytocluster_style_1",
"versions": [
"1.2.5",
"1.2.6",
"1.2.7",
"1.2.8"
"1.2.8",
"1.2.9",
"1.2.10"
]
},
{
Expand Down

0 comments on commit 8042c75

Please sign in to comment.