Skip to content

Commit

Permalink
0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
reality committed Aug 12, 2022
1 parent 6b08be2 commit 4c2fcba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ patients described by HPO classes. For more information, please read the [prepri

## Installation

Here is the most recent [stable release](https://github.com/reality/klarigi/releases/tag/0.1.0). To install, you just have to extract either the ZIP or Tar file, then either run the ```klarigi``` binary from the extracted folder directly, or add it to your PATH (see the later linked tutorial for an example).
Here is the most recent [stable release](https://github.com/reality/klarigi/releases/tag/0.1.1). To install, you just have to extract either the ZIP or Tar file, then either run the ```klarigi``` binary from the extracted folder directly, or add it to your PATH (see the later linked tutorial for an example).

## Guide

Expand Down
2 changes: 1 addition & 1 deletion klarigi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@ jacocoTestReport {
}
}

version = '0.1.1-SNAPSHOT'
version = '0.1.1'
2 changes: 1 addition & 1 deletion klarigi/src/main/groovy/klarigi/Classifier.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class Classifier {
def scores = [:]

allExplanations.each { exps ->
scores[exps.cluster] = 1
scores[exps.cluster] = new Float(1.0)

def rs = sterms[exps.cluster].collect { e ->
def score = 0
Expand Down

0 comments on commit 4c2fcba

Please sign in to comment.