Skip to content

Commit df737e4

Browse files
Merge pull request #2 from sapiris/master
Correction in the README.md
2 parents cb7c4de + 4fa9a18 commit df737e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The function get these parameters:
8787
```python
8888
from grma.match import Graph, matching
8989

90-
PATH_TO_DONORS_GRAPH = "data/donors_graph.pkl"
90+
PATH_TO_DONORS_GRAPH = "output/donors_graph.pkl"
9191
PATH_CONGIF_FILE = "conf/minimal-configuration.json"
9292

9393

@@ -97,7 +97,7 @@ donors_graph = Graph.from_pickle(PATH_TO_DONORS_GRAPH)
9797

9898
# matching_results is a dict - {patient_id: the patient's result dataframe}
9999
matching_results = matching(donors_graph,PATH_CONGIF_FILE, search_id=1, donors_info=[],
100-
threshold=0.1, cutof=100, save_to_csv=True, output_dir="results")
100+
threshold=0.1, cutoff=100, save_to_csv=True, output_dir="results")
101101

102102
```
103103

0 commit comments

Comments
 (0)