Skip to content

Commit

Permalink
Fixed a bug in the New Experiment Wizard where changing either "Store
Browse files Browse the repository at this point in the history
Reverse Complement" or "Only Randomized Region in Data" would modify the
others value.
  • Loading branch information
drivenbyentropy committed Sep 14, 2018
1 parent 149872a commit 7af5f6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void init() {
mapDBSelectionCycleBloomFilterCollisionProbabilityTextField.textProperty().bindBidirectional(getDataModel().getMapDBSelectionCycleBloomFilterCollisionProbability(), new NumberStringConverter());
performanceMaxNumberOfCoresSpinner.getValueFactory().valueProperty().bindBidirectional(getDataModel().getPerformanceMaxNumberOfCores());
storeReverseComplementComboBox.valueProperty().bindBidirectional(getDataModel().getStoreReverseComplement());
onlyRandomizedRegionInData.valueProperty().bindBidirectional(getDataModel().getStoreReverseComplement());
onlyRandomizedRegionInData.valueProperty().bindBidirectional(getDataModel().getOnlyRandomizedRegionInData() );
undeterminedToFileComboBox.valueProperty().bindBidirectional(getDataModel().getUndeterminedToFile());
checkReverseComplementComboBox.valueProperty().bindBidirectional(getDataModel().getCheckReverseComplement());

Expand Down

0 comments on commit 7af5f6b

Please sign in to comment.