-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
471 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
tmp | ||
.git | ||
00_fetch_data | ||
*.gz | ||
*.tsv | ||
*.csv | ||
*.xml | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ foo.jsonl | |
*.jsonl | ||
*.gz | ||
*.csv | ||
*.xml | ||
cargo_home | ||
testowls | ||
.~lock.* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
|
||
FROM rust:1.74-buster as builder | ||
|
||
RUN apt-get update && apt-get install -y cmake clang | ||
|
||
COPY 01* 02* 03* 04* 05* 06* prefix_maps scripts Cargo.* build.rs grebi_shared /work/ | ||
|
||
RUN cd /work && ls && chmod +x /work/scripts/*.sh | ||
RUN cd /work && cargo build --release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"use_slurm":true, | ||
"slurm_max_workers": { | ||
"ingest": 100, | ||
"assign_ids": 100, | ||
"extract": 100 | ||
}, | ||
"slurm_max_memory": { | ||
"ingest": "32G", | ||
"build_equiv_groups": "64G", | ||
"assign_ids": "64G", | ||
"merge": "16G", | ||
"index": "64G", | ||
"extract": "8G", | ||
"materialize_edges": "8:0:0" | ||
}, | ||
"slurm_max_time": { | ||
"ingest": "8:0:0", | ||
"build_equiv_groups": "23:0:0", | ||
"assign_ids": "23:0:0", | ||
"merge": "23:0:0", | ||
"index": "23:0:0", | ||
"extract": "23:0:0", | ||
"materialize_edges": "8:0:0" | ||
}, | ||
"bytes_per_merged_file": 104857600, | ||
"equivalence_props": [ | ||
"owl:equivalentClass", | ||
"owl:equivalentProperty", | ||
"owl:sameAs", | ||
"grebi:equivalentTo", | ||
"ols:iri", | ||
"hgnc:ensembl_gene_id", | ||
"obo:chebi/inchi", | ||
"obo:chebi/inchikey", | ||
"obo:chebi/smiles", | ||
"impc:pmId" | ||
], | ||
"exclude_edges": [ | ||
"ols:iri", | ||
"ols:shortForm", | ||
"ols:curie", | ||
"oboinowl:id" | ||
], | ||
"datasource_configs": [ | ||
"./configs/datasource_configs/ols.json" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.