private void populateShowMutationForm() {
    SearchService searchService = ServiceLocator.instance().getSearchService();

    this.getModel().getShowMutationForm().get("__target").setValue(this.getName());
    this.getModel().getListAllMutationsForm().get("select").setValue(this.getName());
    List<ValueLabel> mutationIdOptions = new ArrayList<ValueLabel>();
    mutationIdOptions.add(new ValueLabel("", "Select mutation"));
    for (VariantDTO variantDTO : searchService.getAllVariants())
      mutationIdOptions.add(
          new ValueLabel(
              variantDTO.getIdentifier(),
              variantDTO.getCdnaNotation() + " (" + variantDTO.getAaNotation() + ")"));
    ((SelectInput) this.getModel().getShowMutationForm().get("mid")).setOptions(mutationIdOptions);
    ((SelectInput) this.getModel().getShowMutationForm().get("mid")).setValue("Select mutation");
  }