Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "properly merge semmedb sentences" #224

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/graph/kg_edge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,7 @@ export default class KGEdge {
addAdditionalAttributes(name: string, value: string | string[] | TrapiAttribute[]): void {
// special handling for full edge attributes
if (name === 'edge-attributes') {
if (this.attributes[name]) this.attributes[name] = [...this.attributes[name], ...value as TrapiAttribute[]];
else this.attributes[name] = value as TrapiAttribute[];
this.attributes[name] = value as TrapiAttribute[];
return;
}

Expand Down
26 changes: 0 additions & 26 deletions src/graph/knowledge_graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,35 +174,9 @@ export default class KnowledgeGraph {
});

//handle TRAPI APIs (Situation A of https://github.com/biothings/BioThings_Explorer_TRAPI/issues/208) and APIs that define 'edge-atributes' in x-bte
const seenPmids = new Set();
kgEdge.attributes['edge-attributes']?.forEach((attribute) => {
// Do not add multiple SemmedDB sentences/other "supporting study results" from the same publication
if (attribute.attribute_type_id === "biolink:has_supporting_study_result" && attribute?.attributes?.find((attr) => attr.attribute_type_id === "biolink:publications")) {
const publication = attribute.attributes.find((attr) => attr.attribute_type_id === "biolink:publications").value;
// publication has been seen or cap reached
if (seenPmids.has(publication) || seenPmids.size >= 50) {
seenPmids.add(publication);
return;
}
seenPmids.add(publication);
}

attributes.push(attribute);
});

// update evidence count after PMIDs have been merged (for SemmedDB)
if (seenPmids.size != 0) {
const evidenceAttr = attributes.find(attr => attr.attribute_type_id === 'biolink:evidence_count');
if (evidenceAttr) {
evidenceAttr.value = seenPmids.size;
} else {
attributes.push({
attribute_type_id: 'biolink:evidence_count',
value: seenPmids.size,
});
}
}

return attributes;
}

Expand Down
Loading