-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 changed file
with
14 additions
and
10 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 |
---|---|---|
@@ -1,15 +1,19 @@ | ||
import styles from './OverviewSummary.module.css'; | ||
import styles from "./OverviewSummary.module.css"; | ||
|
||
export const OverviewSummary = () => { | ||
return ( | ||
<p className={styles.summary}> | ||
ROBOKOP is an open-source, knowledge graph–based, biomedical question-answering | ||
system that derives answers to user questions by applying reasoning algorithms to integrated and | ||
semantically harmonized biomedical knowledge sources. ROBOKOP is comprised of two main components: a | ||
ROBOKOP user interface or question-building tool; and ROBOKOP. The ROBOKOP question-building tool allows | ||
users to construct queries, submit them to ROBOKOP, and receive scored-and-ranked answers that can be | ||
dynamically explored. ROBOKOP Automat allows for programmatic access to the ROBOKOP KG and to a collection | ||
of harmonized biomedical KGs derived from various knowledge or data sources. | ||
ROBOKOP is an open-source, modular, knowledge graph (KG)–based system that | ||
includes several key components: a biomedical KG; a user interface and | ||
associated question-builder tool; a collection of harmonized and | ||
interoperable knowledge sources, represented as KGs in a service called | ||
Automat and accessible via application programming interfaces; and a | ||
variety of supporting resources, including reasoning algorithms and tools | ||
to support deep exploration of the ROBOKOP KG and the Automat KGs. The | ||
ROBOKOP question-building tool allows users to construct queries, submit | ||
them to ROBOKOP, and receive scored-and-ranked answers that can be | ||
dynamically explored. The ROBOKOP Automat allows for programmatic access | ||
to the ROBOKOP KG and the Automat collection of harmonized biomedical KGs. | ||
</p> | ||
) | ||
} | ||
); | ||
}; |