Datasets:
Add FlyAOC dataset package
Browse files- .gitattributes +3 -0
- README.md +112 -0
- benchmark.jsonl +0 -0
- corpus.jsonl +3 -0
- croissant.json +309 -0
- ground_truth_hidden.jsonl +0 -0
- hidden_go_terms.json +270 -0
- ontologies/fly_anatomy.obo +3 -0
- ontologies/fly_development.obo +0 -0
- ontologies/go-basic.obo +3 -0
- pmc_license_manifest.jsonl +0 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
corpus.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
ontologies/fly_anatomy.obo filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
ontologies/go-basic.obo filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
pretty_name: FlyAOC
|
| 4 |
+
task_categories:
|
| 5 |
+
- text-generation
|
| 6 |
+
- question-answering
|
| 7 |
+
- text-retrieval
|
| 8 |
+
language:
|
| 9 |
+
- en
|
| 10 |
+
tags:
|
| 11 |
+
- biology
|
| 12 |
+
- drosophila
|
| 13 |
+
- genetics
|
| 14 |
+
- scientific-literature
|
| 15 |
+
- ontology-curation
|
| 16 |
+
- benchmark
|
| 17 |
+
size_categories:
|
| 18 |
+
- 10K<n<100K
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
# FlyAOC: Agentic Ontology Curation Benchmark
|
| 22 |
+
|
| 23 |
+
FlyAOC is a benchmark for evaluating AI agents on end-to-end ontology curation from scientific literature. Given a *Drosophila melanogaster* gene symbol, systems search a corpus of full-text papers and produce structured annotations for gene function, expression, and synonyms.
|
| 24 |
+
|
| 25 |
+
This anonymous review package contains the benchmark inputs and labels, not model prediction dumps.
|
| 26 |
+
|
| 27 |
+
## Files
|
| 28 |
+
|
| 29 |
+
| File | Description |
|
| 30 |
+
|---|---|
|
| 31 |
+
| `corpus.jsonl` | 16,898 full-text PMC-OA articles converted from BioC JSON. |
|
| 32 |
+
| `pmc_license_manifest.jsonl` | Per-record provenance and license metadata extracted from the BioC-PMC source files. |
|
| 33 |
+
| `benchmark.jsonl` | The 100 benchmark genes, with FlyBase IDs, symbols, Gene Snapshot summaries, PMCID retrieval sets, and canonical verified labels for all three tasks. |
|
| 34 |
+
| `ground_truth_hidden.jsonl` | Hidden-term benchmark variant labels. |
|
| 35 |
+
| `hidden_go_terms.json` | The GO terms hidden for the specificity-gap setting. |
|
| 36 |
+
| `ontologies/go-basic.obo` | Gene Ontology source used for Task 1 term lookup and semantic evaluation. |
|
| 37 |
+
| `ontologies/fly_anatomy.obo` | FlyBase anatomy ontology source used for Task 2 anatomy lookup and semantic evaluation. |
|
| 38 |
+
| `ontologies/fly_development.obo` | FlyBase developmental stage ontology source used for Task 2 stage lookup and semantic evaluation. |
|
| 39 |
+
| `croissant.json` | Croissant metadata with core and minimal Responsible AI fields. |
|
| 40 |
+
|
| 41 |
+
## Data Schema
|
| 42 |
+
|
| 43 |
+
Each `corpus.jsonl` record contains:
|
| 44 |
+
|
| 45 |
+
- `pmcid`: PubMed Central identifier.
|
| 46 |
+
- `title`: article title.
|
| 47 |
+
- `abstract`: article abstract.
|
| 48 |
+
- `sections`: mapping from section type to paragraphs, using section keys such as `INTRO`, `METHODS`, `RESULTS`, `DISCUSS`, and `CONCL`.
|
| 49 |
+
|
| 50 |
+
Each `benchmark.jsonl` record contains one gene:
|
| 51 |
+
|
| 52 |
+
- `gene_id`, `gene_symbol`, `summary`, `pmcids`
|
| 53 |
+
- `task1_function`: Gene Ontology annotations with GO ID, qualifier, aspect, evidence reference, and corpus-grounding fields.
|
| 54 |
+
- `task2_expression`: expression annotations with anatomy/stage ontology IDs, assay metadata, evidence reference, and corpus-grounding fields.
|
| 55 |
+
- `task3_synonyms`: full-name and symbol synonyms with corpus-grounding fields.
|
| 56 |
+
|
| 57 |
+
## Intended Use
|
| 58 |
+
|
| 59 |
+
FlyAOC is intended for evaluating systems that retrieve and synthesize structured biological annotations from a large literature corpus. The primary use case is benchmark evaluation of curation agents under controlled retrieval budgets. The dataset is not intended to train production biomedical systems without additional validation by domain experts.
|
| 60 |
+
|
| 61 |
+
## Provenance and Annotation
|
| 62 |
+
|
| 63 |
+
The literature corpus was retrieved from the PubMed Central Open Access subset via the BioC-PMC API. Benchmark labels are derived from FlyBase release FB2025_04 and then annotated with corpus-grounding labels that indicate whether the supporting source is present in the provided corpus. The included ontology files define the controlled vocabularies used by the benchmark tools and semantic evaluation. The hidden-term variant removes selected GO terms from ontology search to test whether systems can describe missing concepts when no suitable ontology term is available.
|
| 64 |
+
|
| 65 |
+
## License and Access
|
| 66 |
+
|
| 67 |
+
This package has mixed provenance and should not be treated as having a single blanket license.
|
| 68 |
+
|
| 69 |
+
- Literature records come from the PubMed Central Open Access subset. Article licenses vary by paper; see `pmc_license_manifest.jsonl` for per-record license metadata.
|
| 70 |
+
- FlyBase-derived benchmark labels and FlyBase ontology files are based on FlyBase data released under CC-BY 4.0.
|
| 71 |
+
- Gene Ontology files are released under CC-BY 4.0.
|
| 72 |
+
- Users are responsible for following the terms associated with each source record. Users with stricter licensing requirements may use the PMCID manifest to re-fetch source articles from PMC directly.
|
| 73 |
+
|
| 74 |
+
## Responsible AI Notes
|
| 75 |
+
|
| 76 |
+
### Limitations
|
| 77 |
+
|
| 78 |
+
The benchmark covers 100 well-studied *Drosophila* genes and open-access literature available through PMC-OA. It does not represent all genes, all organisms, non-English literature, paywalled papers, unpublished curation evidence, or all valid biological annotations.
|
| 79 |
+
|
| 80 |
+
### Biases
|
| 81 |
+
|
| 82 |
+
The corpus reflects publication and open-access biases in the scientific record. Well-studied genes, English-language publications, and journals indexed in PMC-OA are overrepresented. FlyBase labels reflect expert curation priorities and may lag newer literature.
|
| 83 |
+
|
| 84 |
+
### Sensitive Information
|
| 85 |
+
|
| 86 |
+
The dataset contains scientific articles and biological database annotations. It is not designed to contain human-subject records, demographic attributes, or private personal information. Some source articles may include author names, affiliations, and acknowledgments as part of the public scholarly record.
|
| 87 |
+
|
| 88 |
+
### Social Impact
|
| 89 |
+
|
| 90 |
+
The benchmark may help improve tools that assist biological database curation and scientific literature review. Misuse risks include over-trusting automated annotations or deploying systems without expert review. FlyAOC should be used as an evaluation resource, not as a substitute for professional biological curation.
|
| 91 |
+
|
| 92 |
+
### Synthetic Data
|
| 93 |
+
|
| 94 |
+
The corpus and benchmark labels are not synthetic. Model-generated predictions are not included in this dataset package.
|
| 95 |
+
|
| 96 |
+
## Loading
|
| 97 |
+
|
| 98 |
+
```python
|
| 99 |
+
from datasets import load_dataset
|
| 100 |
+
|
| 101 |
+
corpus = load_dataset("json", data_files="corpus.jsonl")["train"]
|
| 102 |
+
benchmark = load_dataset("json", data_files="benchmark.jsonl")["train"]
|
| 103 |
+
```
|
| 104 |
+
|
| 105 |
+
For review, the intended hosted dataset path is:
|
| 106 |
+
|
| 107 |
+
```python
|
| 108 |
+
from datasets import load_dataset
|
| 109 |
+
|
| 110 |
+
corpus = load_dataset("anonymous-042/flyaoc", data_files="corpus.jsonl")["train"]
|
| 111 |
+
benchmark = load_dataset("anonymous-042/flyaoc", data_files="benchmark.jsonl")["train"]
|
| 112 |
+
```
|
benchmark.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
corpus.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b7236a3dba5578b3f8f29c06d42bd4a8d36b1b8985324b257d64102698af8d8
|
| 3 |
+
size 660303756
|
croissant.json
ADDED
|
@@ -0,0 +1,309 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"@context": {
|
| 3 |
+
"@language": "en",
|
| 4 |
+
"@vocab": "https://schema.org/",
|
| 5 |
+
"citeAs": "cr:citeAs",
|
| 6 |
+
"column": "cr:column",
|
| 7 |
+
"conformsTo": "dct:conformsTo",
|
| 8 |
+
"cr": "http://mlcommons.org/croissant/",
|
| 9 |
+
"data": {
|
| 10 |
+
"@id": "cr:data",
|
| 11 |
+
"@type": "@json"
|
| 12 |
+
},
|
| 13 |
+
"dataType": {
|
| 14 |
+
"@id": "cr:dataType",
|
| 15 |
+
"@type": "@vocab"
|
| 16 |
+
},
|
| 17 |
+
"dct": "http://purl.org/dc/terms/",
|
| 18 |
+
"equivalentProperty": "cr:equivalentProperty",
|
| 19 |
+
"examples": "cr:examples",
|
| 20 |
+
"extract": "cr:extract",
|
| 21 |
+
"field": "cr:field",
|
| 22 |
+
"fileObject": "cr:fileObject",
|
| 23 |
+
"fileProperty": "cr:fileProperty",
|
| 24 |
+
"fileSet": "cr:fileSet",
|
| 25 |
+
"format": "cr:format",
|
| 26 |
+
"includes": "cr:includes",
|
| 27 |
+
"isLiveDataset": "cr:isLiveDataset",
|
| 28 |
+
"jsonPath": "cr:jsonPath",
|
| 29 |
+
"key": "cr:key",
|
| 30 |
+
"md5": "cr:md5",
|
| 31 |
+
"parentField": "cr:parentField",
|
| 32 |
+
"path": "cr:path",
|
| 33 |
+
"recordSet": "cr:recordSet",
|
| 34 |
+
"references": "cr:references",
|
| 35 |
+
"regex": "cr:regex",
|
| 36 |
+
"repeated": "cr:repeated",
|
| 37 |
+
"replace": "cr:replace",
|
| 38 |
+
"samplingRate": "cr:samplingRate",
|
| 39 |
+
"sc": "https://schema.org/",
|
| 40 |
+
"separator": "cr:separator",
|
| 41 |
+
"source": "cr:source",
|
| 42 |
+
"subField": "cr:subField",
|
| 43 |
+
"transform": "cr:transform",
|
| 44 |
+
"rai": "http://mlcommons.org/croissant/RAI/",
|
| 45 |
+
"prov": "http://www.w3.org/ns/prov#"
|
| 46 |
+
},
|
| 47 |
+
"@type": "sc:Dataset",
|
| 48 |
+
"name": "FlyAOC: Agentic Ontology Curation Benchmark",
|
| 49 |
+
"description": "A benchmark for evaluating AI agents on end-to-end ontology curation from a corpus of Drosophila full-text scientific articles.",
|
| 50 |
+
"url": "https://huggingface.co/datasets/anonymous-042/flyaoc",
|
| 51 |
+
"sameAs": "https://github.com/anonymous-flyaoc/flyaoc",
|
| 52 |
+
"citeAs": "FlyAOC: Agentic Ontology Curation Benchmark. NeurIPS 2026 Evaluations and Datasets Track submission.",
|
| 53 |
+
"datePublished": "2026-04-30",
|
| 54 |
+
"version": "1.0.0",
|
| 55 |
+
"conformsTo": "http://mlcommons.org/croissant/1.1",
|
| 56 |
+
"license": [
|
| 57 |
+
"https://creativecommons.org/licenses/by/4.0/",
|
| 58 |
+
"Article-level PMC-OA licenses vary; see pmc_license_manifest.jsonl."
|
| 59 |
+
],
|
| 60 |
+
"distribution": [
|
| 61 |
+
{
|
| 62 |
+
"@type": "cr:FileObject",
|
| 63 |
+
"@id": "corpus-jsonl",
|
| 64 |
+
"name": "corpus.jsonl",
|
| 65 |
+
"contentUrl": "corpus.jsonl",
|
| 66 |
+
"encodingFormat": "application/jsonlines",
|
| 67 |
+
"sha256": "8b7236a3dba5578b3f8f29c06d42bd4a8d36b1b8985324b257d64102698af8d8"
|
| 68 |
+
},
|
| 69 |
+
{
|
| 70 |
+
"@type": "cr:FileObject",
|
| 71 |
+
"@id": "pmc-license-manifest-jsonl",
|
| 72 |
+
"name": "pmc_license_manifest.jsonl",
|
| 73 |
+
"contentUrl": "pmc_license_manifest.jsonl",
|
| 74 |
+
"encodingFormat": "application/jsonlines",
|
| 75 |
+
"sha256": "a0e6daca2986fe7ca3eef30bec5bce9225fc70f81fde36493c180fccf036cc9d"
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"@type": "cr:FileObject",
|
| 79 |
+
"@id": "benchmark-jsonl",
|
| 80 |
+
"name": "benchmark.jsonl",
|
| 81 |
+
"contentUrl": "benchmark.jsonl",
|
| 82 |
+
"encodingFormat": "application/jsonlines",
|
| 83 |
+
"sha256": "a27e5f2dd9f65678de01366649c2d657195704a9ebc42eea020c44a84f9e2c9a"
|
| 84 |
+
},
|
| 85 |
+
{
|
| 86 |
+
"@type": "cr:FileObject",
|
| 87 |
+
"@id": "hidden-ground-truth-jsonl",
|
| 88 |
+
"name": "ground_truth_hidden.jsonl",
|
| 89 |
+
"contentUrl": "ground_truth_hidden.jsonl",
|
| 90 |
+
"encodingFormat": "application/jsonlines",
|
| 91 |
+
"sha256": "576395b1aafa47cc499ca5a0e4c82dfe9d567f0dac8d795f022b820b222cbab4"
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"@type": "cr:FileObject",
|
| 95 |
+
"@id": "hidden-go-terms-json",
|
| 96 |
+
"name": "hidden_go_terms.json",
|
| 97 |
+
"contentUrl": "hidden_go_terms.json",
|
| 98 |
+
"encodingFormat": "application/json",
|
| 99 |
+
"sha256": "26a4ead741351b96303d81316235a8edd775565a757e8f64ae0b39a0efa7d936"
|
| 100 |
+
},
|
| 101 |
+
{
|
| 102 |
+
"@type": "cr:FileObject",
|
| 103 |
+
"@id": "go-basic-obo",
|
| 104 |
+
"name": "ontologies/go-basic.obo",
|
| 105 |
+
"contentUrl": "ontologies/go-basic.obo",
|
| 106 |
+
"encodingFormat": "text/obo",
|
| 107 |
+
"sha256": "4e3ce039a6ad3d45e2752097625330152cc8ae97d35d824c7fcb0735b45d0fc3"
|
| 108 |
+
},
|
| 109 |
+
{
|
| 110 |
+
"@type": "cr:FileObject",
|
| 111 |
+
"@id": "fly-anatomy-obo",
|
| 112 |
+
"name": "ontologies/fly_anatomy.obo",
|
| 113 |
+
"contentUrl": "ontologies/fly_anatomy.obo",
|
| 114 |
+
"encodingFormat": "text/obo",
|
| 115 |
+
"sha256": "50cbbc694414f765b2cae8b27984fc96e0627774e2e1e55e02197259e292f2be"
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"@type": "cr:FileObject",
|
| 119 |
+
"@id": "fly-development-obo",
|
| 120 |
+
"name": "ontologies/fly_development.obo",
|
| 121 |
+
"contentUrl": "ontologies/fly_development.obo",
|
| 122 |
+
"encodingFormat": "text/obo",
|
| 123 |
+
"sha256": "6f9803cc02a3bf8fe843cdc66d8af08de3cd6f71f87337b9acbaaa6f085fa686"
|
| 124 |
+
}
|
| 125 |
+
],
|
| 126 |
+
"recordSet": [
|
| 127 |
+
{
|
| 128 |
+
"@type": "cr:RecordSet",
|
| 129 |
+
"@id": "corpus-records",
|
| 130 |
+
"name": "Literature corpus records",
|
| 131 |
+
"field": [
|
| 132 |
+
{
|
| 133 |
+
"@type": "cr:Field",
|
| 134 |
+
"@id": "corpus-records/pmcid",
|
| 135 |
+
"name": "pmcid",
|
| 136 |
+
"dataType": "sc:Text",
|
| 137 |
+
"source": {
|
| 138 |
+
"fileObject": {
|
| 139 |
+
"@id": "corpus-jsonl"
|
| 140 |
+
},
|
| 141 |
+
"extract": {
|
| 142 |
+
"jsonPath": "$.pmcid"
|
| 143 |
+
}
|
| 144 |
+
}
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"@type": "cr:Field",
|
| 148 |
+
"@id": "corpus-records/title",
|
| 149 |
+
"name": "title",
|
| 150 |
+
"dataType": "sc:Text",
|
| 151 |
+
"source": {
|
| 152 |
+
"fileObject": {
|
| 153 |
+
"@id": "corpus-jsonl"
|
| 154 |
+
},
|
| 155 |
+
"extract": {
|
| 156 |
+
"jsonPath": "$.title"
|
| 157 |
+
}
|
| 158 |
+
}
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"@type": "cr:Field",
|
| 162 |
+
"@id": "corpus-records/abstract",
|
| 163 |
+
"name": "abstract",
|
| 164 |
+
"dataType": "sc:Text",
|
| 165 |
+
"source": {
|
| 166 |
+
"fileObject": {
|
| 167 |
+
"@id": "corpus-jsonl"
|
| 168 |
+
},
|
| 169 |
+
"extract": {
|
| 170 |
+
"jsonPath": "$.abstract"
|
| 171 |
+
}
|
| 172 |
+
}
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"@type": "cr:Field",
|
| 176 |
+
"@id": "corpus-records/sections",
|
| 177 |
+
"name": "sections",
|
| 178 |
+
"dataType": "sc:Text",
|
| 179 |
+
"source": {
|
| 180 |
+
"fileObject": {
|
| 181 |
+
"@id": "corpus-jsonl"
|
| 182 |
+
},
|
| 183 |
+
"extract": {
|
| 184 |
+
"jsonPath": "$.sections"
|
| 185 |
+
}
|
| 186 |
+
}
|
| 187 |
+
}
|
| 188 |
+
]
|
| 189 |
+
},
|
| 190 |
+
{
|
| 191 |
+
"@type": "cr:RecordSet",
|
| 192 |
+
"@id": "benchmark-records",
|
| 193 |
+
"name": "Benchmark gene records with verified ground truth",
|
| 194 |
+
"field": [
|
| 195 |
+
{
|
| 196 |
+
"@type": "cr:Field",
|
| 197 |
+
"@id": "benchmark-records/gene_id",
|
| 198 |
+
"name": "gene_id",
|
| 199 |
+
"dataType": "sc:Text",
|
| 200 |
+
"source": {
|
| 201 |
+
"fileObject": {
|
| 202 |
+
"@id": "benchmark-jsonl"
|
| 203 |
+
},
|
| 204 |
+
"extract": {
|
| 205 |
+
"jsonPath": "$.gene_id"
|
| 206 |
+
}
|
| 207 |
+
}
|
| 208 |
+
},
|
| 209 |
+
{
|
| 210 |
+
"@type": "cr:Field",
|
| 211 |
+
"@id": "benchmark-records/gene_symbol",
|
| 212 |
+
"name": "gene_symbol",
|
| 213 |
+
"dataType": "sc:Text",
|
| 214 |
+
"source": {
|
| 215 |
+
"fileObject": {
|
| 216 |
+
"@id": "benchmark-jsonl"
|
| 217 |
+
},
|
| 218 |
+
"extract": {
|
| 219 |
+
"jsonPath": "$.gene_symbol"
|
| 220 |
+
}
|
| 221 |
+
}
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"@type": "cr:Field",
|
| 225 |
+
"@id": "benchmark-records/summary",
|
| 226 |
+
"name": "summary",
|
| 227 |
+
"dataType": "sc:Text",
|
| 228 |
+
"source": {
|
| 229 |
+
"fileObject": {
|
| 230 |
+
"@id": "benchmark-jsonl"
|
| 231 |
+
},
|
| 232 |
+
"extract": {
|
| 233 |
+
"jsonPath": "$.summary"
|
| 234 |
+
}
|
| 235 |
+
}
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"@type": "cr:Field",
|
| 239 |
+
"@id": "benchmark-records/pmcids",
|
| 240 |
+
"name": "pmcids",
|
| 241 |
+
"dataType": "sc:Text",
|
| 242 |
+
"source": {
|
| 243 |
+
"fileObject": {
|
| 244 |
+
"@id": "benchmark-jsonl"
|
| 245 |
+
},
|
| 246 |
+
"extract": {
|
| 247 |
+
"jsonPath": "$.pmcids"
|
| 248 |
+
}
|
| 249 |
+
}
|
| 250 |
+
},
|
| 251 |
+
{
|
| 252 |
+
"@type": "cr:Field",
|
| 253 |
+
"@id": "benchmark-records/task1_function",
|
| 254 |
+
"name": "task1_function",
|
| 255 |
+
"dataType": "sc:Text",
|
| 256 |
+
"source": {
|
| 257 |
+
"fileObject": {
|
| 258 |
+
"@id": "benchmark-jsonl"
|
| 259 |
+
},
|
| 260 |
+
"extract": {
|
| 261 |
+
"jsonPath": "$.task1_function"
|
| 262 |
+
}
|
| 263 |
+
}
|
| 264 |
+
},
|
| 265 |
+
{
|
| 266 |
+
"@type": "cr:Field",
|
| 267 |
+
"@id": "benchmark-records/task2_expression",
|
| 268 |
+
"name": "task2_expression",
|
| 269 |
+
"dataType": "sc:Text",
|
| 270 |
+
"source": {
|
| 271 |
+
"fileObject": {
|
| 272 |
+
"@id": "benchmark-jsonl"
|
| 273 |
+
},
|
| 274 |
+
"extract": {
|
| 275 |
+
"jsonPath": "$.task2_expression"
|
| 276 |
+
}
|
| 277 |
+
}
|
| 278 |
+
},
|
| 279 |
+
{
|
| 280 |
+
"@type": "cr:Field",
|
| 281 |
+
"@id": "benchmark-records/task3_synonyms",
|
| 282 |
+
"name": "task3_synonyms",
|
| 283 |
+
"dataType": "sc:Text",
|
| 284 |
+
"source": {
|
| 285 |
+
"fileObject": {
|
| 286 |
+
"@id": "benchmark-jsonl"
|
| 287 |
+
},
|
| 288 |
+
"extract": {
|
| 289 |
+
"jsonPath": "$.task3_synonyms"
|
| 290 |
+
}
|
| 291 |
+
}
|
| 292 |
+
}
|
| 293 |
+
]
|
| 294 |
+
}
|
| 295 |
+
],
|
| 296 |
+
"rai:dataLimitations": "FlyAOC covers 100 well-studied Drosophila genes and PMC-OA full-text literature. It does not cover all genes, all organisms, paywalled papers, non-English literature, unpublished evidence, or every valid biological annotation.",
|
| 297 |
+
"rai:dataBiases": "The corpus reflects publication and open-access biases, with overrepresentation of English-language, well-studied, and PMC-indexed literature. FlyBase-derived labels reflect expert curation priorities and may lag recent publications.",
|
| 298 |
+
"rai:personalSensitiveInformation": "The dataset is composed of scientific articles and biological database annotations. It is not designed to include human-subject records or private personal information, though source articles may contain public author names and affiliations.",
|
| 299 |
+
"rai:dataUseCases": "The dataset is intended to evaluate retrieval-augmented and agentic systems for ontology-grounded literature curation. It is not intended as a stand-alone source of validated biological annotations for production databases without expert review.",
|
| 300 |
+
"rai:dataSocialImpact": "The dataset can support research on curator-assistive systems for biological databases. Risks include over-trusting automated annotations or deploying systems without professional curator oversight.",
|
| 301 |
+
"rai:hasSyntheticData": false,
|
| 302 |
+
"prov:wasDerivedFrom": [
|
| 303 |
+
"https://www.ncbi.nlm.nih.gov/pmc/tools/openftlist/",
|
| 304 |
+
"https://flybase.org/",
|
| 305 |
+
"http://geneontology.org/",
|
| 306 |
+
"https://obofoundry.org/"
|
| 307 |
+
],
|
| 308 |
+
"prov:wasGeneratedBy": "PMC-OA articles were retrieved through the BioC-PMC API and converted to JSONL. FlyBase release FB2025_04 annotations were processed into three benchmark tasks, annotated with corpus-grounding labels, and merged with gene summaries and gene-to-paper mappings into benchmark.jsonl. Gene Ontology and FlyBase ontology source files were included to fix the controlled vocabularies used by the benchmark tools and semantic evaluation. A hidden-term variant marks selected GO labels for specificity-gap evaluation."
|
| 309 |
+
}
|
ground_truth_hidden.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
hidden_go_terms.json
ADDED
|
@@ -0,0 +1,270 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"hidden_terms": [
|
| 3 |
+
"GO:0000022",
|
| 4 |
+
"GO:0000070",
|
| 5 |
+
"GO:0000139",
|
| 6 |
+
"GO:0000159",
|
| 7 |
+
"GO:0000242",
|
| 8 |
+
"GO:0000381",
|
| 9 |
+
"GO:0000776",
|
| 10 |
+
"GO:0000779",
|
| 11 |
+
"GO:0000794",
|
| 12 |
+
"GO:0001222",
|
| 13 |
+
"GO:0001228",
|
| 14 |
+
"GO:0001580",
|
| 15 |
+
"GO:0001700",
|
| 16 |
+
"GO:0001742",
|
| 17 |
+
"GO:0001745",
|
| 18 |
+
"GO:0002052",
|
| 19 |
+
"GO:0003007",
|
| 20 |
+
"GO:0003726",
|
| 21 |
+
"GO:0004653",
|
| 22 |
+
"GO:0004691",
|
| 23 |
+
"GO:0005031",
|
| 24 |
+
"GO:0005096",
|
| 25 |
+
"GO:0005109",
|
| 26 |
+
"GO:0005525",
|
| 27 |
+
"GO:0005546",
|
| 28 |
+
"GO:0005615",
|
| 29 |
+
"GO:0005635",
|
| 30 |
+
"GO:0005640",
|
| 31 |
+
"GO:0005654",
|
| 32 |
+
"GO:0005700",
|
| 33 |
+
"GO:0005730",
|
| 34 |
+
"GO:0005739",
|
| 35 |
+
"GO:0005759",
|
| 36 |
+
"GO:0005771",
|
| 37 |
+
"GO:0005814",
|
| 38 |
+
"GO:0005834",
|
| 39 |
+
"GO:0005865",
|
| 40 |
+
"GO:0005914",
|
| 41 |
+
"GO:0005925",
|
| 42 |
+
"GO:0005927",
|
| 43 |
+
"GO:0007080",
|
| 44 |
+
"GO:0007098",
|
| 45 |
+
"GO:0007157",
|
| 46 |
+
"GO:0007254",
|
| 47 |
+
"GO:0007265",
|
| 48 |
+
"GO:0007283",
|
| 49 |
+
"GO:0007298",
|
| 50 |
+
"GO:0007300",
|
| 51 |
+
"GO:0007318",
|
| 52 |
+
"GO:0007395",
|
| 53 |
+
"GO:0007508",
|
| 54 |
+
"GO:0007512",
|
| 55 |
+
"GO:0007628",
|
| 56 |
+
"GO:0008335",
|
| 57 |
+
"GO:0008594",
|
| 58 |
+
"GO:0015030",
|
| 59 |
+
"GO:0016028",
|
| 60 |
+
"GO:0016327",
|
| 61 |
+
"GO:0016328",
|
| 62 |
+
"GO:0016528",
|
| 63 |
+
"GO:0019178",
|
| 64 |
+
"GO:0030165",
|
| 65 |
+
"GO:0030576",
|
| 66 |
+
"GO:0030619",
|
| 67 |
+
"GO:0030620",
|
| 68 |
+
"GO:0030621",
|
| 69 |
+
"GO:0030717",
|
| 70 |
+
"GO:0030721",
|
| 71 |
+
"GO:0031005",
|
| 72 |
+
"GO:0031036",
|
| 73 |
+
"GO:0031315",
|
| 74 |
+
"GO:0032226",
|
| 75 |
+
"GO:0033039",
|
| 76 |
+
"GO:0035170",
|
| 77 |
+
"GO:0035186",
|
| 78 |
+
"GO:0035199",
|
| 79 |
+
"GO:0036082",
|
| 80 |
+
"GO:0036098",
|
| 81 |
+
"GO:0042595",
|
| 82 |
+
"GO:0042691",
|
| 83 |
+
"GO:0043395",
|
| 84 |
+
"GO:0043505",
|
| 85 |
+
"GO:0045170",
|
| 86 |
+
"GO:0045199",
|
| 87 |
+
"GO:0045450",
|
| 88 |
+
"GO:0045855",
|
| 89 |
+
"GO:0046012",
|
| 90 |
+
"GO:0048190",
|
| 91 |
+
"GO:0048674",
|
| 92 |
+
"GO:0048846",
|
| 93 |
+
"GO:0050829",
|
| 94 |
+
"GO:0051382",
|
| 95 |
+
"GO:0052576",
|
| 96 |
+
"GO:0060289",
|
| 97 |
+
"GO:0060439",
|
| 98 |
+
"GO:0061176",
|
| 99 |
+
"GO:0070285",
|
| 100 |
+
"GO:0070300",
|
| 101 |
+
"GO:0070732",
|
| 102 |
+
"GO:0071212",
|
| 103 |
+
"GO:0071244",
|
| 104 |
+
"GO:0071276",
|
| 105 |
+
"GO:0071361",
|
| 106 |
+
"GO:0071632",
|
| 107 |
+
"GO:0071889",
|
| 108 |
+
"GO:0072553",
|
| 109 |
+
"GO:0090298",
|
| 110 |
+
"GO:0097150",
|
| 111 |
+
"GO:0098595",
|
| 112 |
+
"GO:0102757",
|
| 113 |
+
"GO:0106036",
|
| 114 |
+
"GO:0110069",
|
| 115 |
+
"GO:0110071",
|
| 116 |
+
"GO:0141009",
|
| 117 |
+
"GO:1900006",
|
| 118 |
+
"GO:1900074",
|
| 119 |
+
"GO:1900075",
|
| 120 |
+
"GO:1905866",
|
| 121 |
+
"GO:1990255",
|
| 122 |
+
"GO:1990474"
|
| 123 |
+
],
|
| 124 |
+
"primary_terms": [
|
| 125 |
+
"GO:0000022",
|
| 126 |
+
"GO:0000070",
|
| 127 |
+
"GO:0000139",
|
| 128 |
+
"GO:0000159",
|
| 129 |
+
"GO:0000242",
|
| 130 |
+
"GO:0000381",
|
| 131 |
+
"GO:0000776",
|
| 132 |
+
"GO:0000779",
|
| 133 |
+
"GO:0000794",
|
| 134 |
+
"GO:0001222",
|
| 135 |
+
"GO:0001228",
|
| 136 |
+
"GO:0001580",
|
| 137 |
+
"GO:0001700",
|
| 138 |
+
"GO:0001742",
|
| 139 |
+
"GO:0001745",
|
| 140 |
+
"GO:0002052",
|
| 141 |
+
"GO:0003007",
|
| 142 |
+
"GO:0003726",
|
| 143 |
+
"GO:0004653",
|
| 144 |
+
"GO:0004691",
|
| 145 |
+
"GO:0005031",
|
| 146 |
+
"GO:0005096",
|
| 147 |
+
"GO:0005109",
|
| 148 |
+
"GO:0005525",
|
| 149 |
+
"GO:0005546",
|
| 150 |
+
"GO:0005615",
|
| 151 |
+
"GO:0005635",
|
| 152 |
+
"GO:0005640",
|
| 153 |
+
"GO:0005654",
|
| 154 |
+
"GO:0005700",
|
| 155 |
+
"GO:0005730",
|
| 156 |
+
"GO:0005739",
|
| 157 |
+
"GO:0005759",
|
| 158 |
+
"GO:0005771",
|
| 159 |
+
"GO:0005814",
|
| 160 |
+
"GO:0005834",
|
| 161 |
+
"GO:0005865",
|
| 162 |
+
"GO:0005914",
|
| 163 |
+
"GO:0005925",
|
| 164 |
+
"GO:0005927",
|
| 165 |
+
"GO:0007080",
|
| 166 |
+
"GO:0007098",
|
| 167 |
+
"GO:0007157",
|
| 168 |
+
"GO:0007254",
|
| 169 |
+
"GO:0007265",
|
| 170 |
+
"GO:0007283",
|
| 171 |
+
"GO:0007298",
|
| 172 |
+
"GO:0007300",
|
| 173 |
+
"GO:0007318",
|
| 174 |
+
"GO:0007395",
|
| 175 |
+
"GO:0007508",
|
| 176 |
+
"GO:0007512",
|
| 177 |
+
"GO:0007628",
|
| 178 |
+
"GO:0008335",
|
| 179 |
+
"GO:0008594",
|
| 180 |
+
"GO:0015030",
|
| 181 |
+
"GO:0016028",
|
| 182 |
+
"GO:0016327",
|
| 183 |
+
"GO:0016328",
|
| 184 |
+
"GO:0016528",
|
| 185 |
+
"GO:0019178",
|
| 186 |
+
"GO:0030165",
|
| 187 |
+
"GO:0030576",
|
| 188 |
+
"GO:0030619",
|
| 189 |
+
"GO:0030620",
|
| 190 |
+
"GO:0030621",
|
| 191 |
+
"GO:0030717",
|
| 192 |
+
"GO:0030721",
|
| 193 |
+
"GO:0031005",
|
| 194 |
+
"GO:0031036",
|
| 195 |
+
"GO:0031315",
|
| 196 |
+
"GO:0032226",
|
| 197 |
+
"GO:0033039",
|
| 198 |
+
"GO:0035170",
|
| 199 |
+
"GO:0035186",
|
| 200 |
+
"GO:0035199",
|
| 201 |
+
"GO:0036082",
|
| 202 |
+
"GO:0036098",
|
| 203 |
+
"GO:0042595",
|
| 204 |
+
"GO:0042691",
|
| 205 |
+
"GO:0043395",
|
| 206 |
+
"GO:0043505",
|
| 207 |
+
"GO:0045170",
|
| 208 |
+
"GO:0045199",
|
| 209 |
+
"GO:0045450",
|
| 210 |
+
"GO:0045855",
|
| 211 |
+
"GO:0046012",
|
| 212 |
+
"GO:0048190",
|
| 213 |
+
"GO:0048674",
|
| 214 |
+
"GO:0048846",
|
| 215 |
+
"GO:0050829",
|
| 216 |
+
"GO:0051382",
|
| 217 |
+
"GO:0052576",
|
| 218 |
+
"GO:0060289",
|
| 219 |
+
"GO:0060439",
|
| 220 |
+
"GO:0061176",
|
| 221 |
+
"GO:0070285",
|
| 222 |
+
"GO:0070300",
|
| 223 |
+
"GO:0070732",
|
| 224 |
+
"GO:0071212",
|
| 225 |
+
"GO:0071244",
|
| 226 |
+
"GO:0071276",
|
| 227 |
+
"GO:0071361",
|
| 228 |
+
"GO:0071632",
|
| 229 |
+
"GO:0071889",
|
| 230 |
+
"GO:0072553",
|
| 231 |
+
"GO:0090298",
|
| 232 |
+
"GO:0097150",
|
| 233 |
+
"GO:0098595",
|
| 234 |
+
"GO:0102757",
|
| 235 |
+
"GO:0106036",
|
| 236 |
+
"GO:0110069",
|
| 237 |
+
"GO:0110071",
|
| 238 |
+
"GO:0141009",
|
| 239 |
+
"GO:1900006",
|
| 240 |
+
"GO:1900074",
|
| 241 |
+
"GO:1900075",
|
| 242 |
+
"GO:1905866",
|
| 243 |
+
"GO:1990255",
|
| 244 |
+
"GO:1990474"
|
| 245 |
+
],
|
| 246 |
+
"stats": {
|
| 247 |
+
"total_go_terms_in_benchmark": 1228,
|
| 248 |
+
"leaf_terms_in_benchmark": 524,
|
| 249 |
+
"nonleaf_terms_in_benchmark": 704,
|
| 250 |
+
"singleton_terms": 613,
|
| 251 |
+
"in_corpus_terms": 583,
|
| 252 |
+
"total_in_corpus_annotations": 1047,
|
| 253 |
+
"target_impact_ratio": 0.15,
|
| 254 |
+
"target_annotations": 157,
|
| 255 |
+
"singleton_leaf_in_corpus_available": 84,
|
| 256 |
+
"nonsingleton_leaf_in_corpus_available": 177,
|
| 257 |
+
"nonleaf_in_corpus_available": 322,
|
| 258 |
+
"selected_singleton_leaf": 84,
|
| 259 |
+
"selected_nonsingleton_leaf": 36,
|
| 260 |
+
"selected_nonleaf": 0,
|
| 261 |
+
"total_primary_hidden": 120,
|
| 262 |
+
"actual_in_corpus_impact": 157,
|
| 263 |
+
"actual_impact_ratio": 0.14995224450811842,
|
| 264 |
+
"primary_hidden_terms": 120,
|
| 265 |
+
"descendants_added": 0,
|
| 266 |
+
"total_hidden_terms": 120,
|
| 267 |
+
"total_hidden_annotations": 254,
|
| 268 |
+
"in_corpus_hidden_annotations": 157
|
| 269 |
+
}
|
| 270 |
+
}
|
ontologies/fly_anatomy.obo
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50cbbc694414f765b2cae8b27984fc96e0627774e2e1e55e02197259e292f2be
|
| 3 |
+
size 38424811
|
ontologies/fly_development.obo
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
ontologies/go-basic.obo
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e3ce039a6ad3d45e2752097625330152cc8ae97d35d824c7fcb0735b45d0fc3
|
| 3 |
+
size 31417323
|
pmc_license_manifest.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|