Skip to content

Commit

Permalink
fix HRA config and neo4j csv issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesamcl committed Oct 29, 2024
1 parent d737948 commit 7afed23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 06_prepare_db_import/grebi_make_neo_csv/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ fn write_edge(src_line:&[u8], edge:SlicedEdge, all_edge_props:&HashSet<String>,
edges_writer.write_all(&[(31 as u8)]).unwrap();
}
edges_writer.write_all(
&get_escaped_value(JsonParser::parse(sid).string())
&get_escaped_value(sid)
).unwrap();
});
edges_writer.write_all(b"\"").unwrap();
Expand Down
2 changes: 1 addition & 1 deletion configs/datasource_configs/hra_kg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ enabled: true
ingests:
- globs: ["/nfs/production/parkinso/spot/hra/dataload/tmp/out/ontologies.json"]
command: '
grebi_ingest_ols
grebi_ingest_ols --datasource-name $GREBI_INGEST_DATASOURCE_NAME
--ontologies ccf,hra
'

0 comments on commit 7afed23

Please sign in to comment.