The Data Discovery Engine (DDE) is a project designed to promote the principles of FAIR (Findable, Accessible, Interoperable, Reusable) data sharing practices. Recognizing the importance of well-structured and easily discoverable data in advancing scientific research and technological development, this initiative advocates for the widespread adoption of schema.org schemas. By leveraging schema.org’s rich vocabulary for structured data and providing tools to easily extend this vocabulary to fit your research goals, the project aims to make biomedical research easily finable by humans and machines alike. The DDE does this by providing a comprehensive set of tools for data creators to annotate their datasets effectively, extend schemas easily and share your metadata efficiently. The ultimate goal is adopting FAIR data sharing practices enables data to be easily indexed by search engines like Google. This enhances the discoverability of datasets, making it simpler for researchers, developers, and other stakeholders to find relevant data quickly.
-
Install Elasticsearch at localhost:9200 (follow this instruction)
-
Clone this repo
git clone https://github.com/biothings/discovery-app.git
-
Install system packages (on Ubuntu, for example)
sudo apt install libcurl4-openssl-dev libssl-dev
-
Change directory to project folder
cd discovery-app
-
Install python dependencies
pip install -r requirements.txt
-
Create a config_key.py under project folder with
COOKIE_SECRET = '<Any Random String>' GITHUB_CLIENT_ID = '<your Github application Client ID>' GITHUB_CLIENT_SECRET = '<your Github application Client Secret>'
Follow this instruction to create your Github Client ID and Secret.
-
Run dev server
python index.py --debug
You should now be able to access the homepage at http://localhost:8000/
First refer to step 6 above to setup the credentials required to run the program.
The following commands should be issued under the first level project folder.
Make sure you have port 8000
not in use when starting containers.
cd docker
docker compose up --detach
docker compose stop
docker compose start
docker compose exec web git pull
docker compose down
biothings_schema is a Python package for the creation, extension and exploration of the schemas defined using the schema.org standard.
https://github.com/biothings/biothings_schema.py