Schug 🍲 is a service that gather data about genes, transcripts and exons from multiple sources and merge the information. There is a REST API with relevant endpoints.
You can test Schug on your local computer using Docker. Make sure you have Docker installed and type the following commands in a terminal window:
git clone https://github.com/Clinical-Genomics/schug
cd schug
docker-compose up
Then the app endpoints should be listed available at the following address http://localhost:8000/docs
The command to stop the demo is docker-compose down
.
Make sure poetry is installed
git clone https://github.com/Clinical-Genomics/schug
cd schug
poetry install
schug serve --reload
Go to http://localhost:8000/docs and check out the API.
Once having set up an instance of Schug, you can use the following endpoints:
-
/genes/ensembl_genes/
Downloads genes from Ensembl in text format. Specify a genome build by using the parameters
37
or38
.Usage:
curl -X 'GET' 'http://0.0.0.0:8000/genes/ensembl_genes/?build=38' > genes_GRCh38.txt
-
/transcripts/ensembl_transcripts/
Downloads gene transcripts from Ensembl in text format. Specify a genome build by using the parameters
37
or38
.Usage:
curl -X 'GET' 'http://0.0.0.0:8000/transcripts/ensembl_transcripts/?build=38' > transcripts_GRCh38.txt
-
/exons/ensembl_exons/
Downloads gene exons from Ensembl in text format. Specify a genome build by using the parameters
37
or38
.Usage:
curl -X 'GET' 'http://0.0.0.0:8000/exons/ensembl_exons/?build=38' > exons_GRCh38.txt
The basic structure is outlined and implemented, however there are many details left to implement before this can be used. Some of the basic endpoints are in place but these need to be extended according to the needs of the users. Also the gene information needs to be completed, this will be done in a similar fashion as in Scout.