Skip to content

Commit

Permalink
Rename custom_sample_types to custom sample_type_colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Bas Leenknegt committed Aug 30, 2023
1 parent b90dde0 commit ff70205
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public void setOncoprintClinicalTracksConfigJson(String property) {
}

private static String skinPatientViewCustomSampleTypesJson;
@Value("${skin.patient_view.custom_sample_types_json:}") // default is empty string
@Value("${skin.patient_view.custom_sample_type_colors_json:}") // default is empty string
public void setSkinPatientViewCustomSampleTypesJson(String property) {
skinPatientViewCustomSampleTypesJson = property;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ skin.patient_view.structural_variant_table.columns.show_on_init=
### Define custom sample type colors
Define the colors of custom sample types in the patient view using a json object with for each sample type a color:
```
skin.patient_view.custom_sample_types_json=classpath:/skin-patient-view-custom-sample-types.json
skin.patient_view.custom_sample_type_colors_json=classpath:/skin-patient-view-custom-sample-types.json
```

### Choose the display name for authenticated users
Expand Down
2 changes: 1 addition & 1 deletion portal/src/main/webapp/config_service.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
obj.put("oncoprint_clinical_tracks_config_json",GlobalProperties.getOncoprintClinicalTracksConfigJson());
obj.put("skin_patient_view_custom_sample_types_json", GlobalProperties.getSkinPatientViewCustomSampleTypesJson());
obj.put("skin_patient_view_custom_sample_type_colors_json", GlobalProperties.getSkinPatientViewCustomSampleTypesJson());
obj.put("authenticationMethod",GlobalProperties.authenticationMethod());
Expand Down

0 comments on commit ff70205

Please sign in to comment.