- It will be deployed in the docker hub image
bluebrain/me-model-analysis
- It will be consumed by the frontend when we launch a validation of the single cell me-model.
- It will use the on-demand service in AWS
make docker_build
You need the proper dockerhub credentials
ORIGINAL_IMG="me-model-analysis:dev"
END_IMG="bluebrain/me-model-analysis:latest"
docker tag $ORIGINAL_IMG $END_IMG
docker push $END_IMG
const ws = new Ws(ME_MODEL_ON_DEMAND_SVC_API_GATEWAY_URL, TOKEN);
ws.send('set_model', { model_id: MODEL_ID }); // me-model id
// You might receive "Retry later" message back until the service is up
// so you need to try again and again until you get "Processing message".
// Once the model is downloaded and ready you will get "set_model_done" message.
// after this you can just start the analysis
ws.send('run_analysis', {});
// this process will update the me-model Nexus entity.
The development of this software was supported by funding to the Blue Brain Project, a research center of the École polytechnique fédérale de Lausanne (EPFL), from the Swiss government’s ETH Board of the Swiss Federal Institutes of Technology.
Copyright (c) 2024 Blue Brain Project/EPFL
This work is licensed under Apache 2.0