Skip to content

Commit

Permalink
feat: Adding protein design
Browse files Browse the repository at this point in the history
  • Loading branch information
JaktensTid committed Dec 28, 2023
1 parent 371c045 commit cb9441a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 11 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,10 @@ The goal of the project is to accelerate bio research via making inference model

We are working on expanding both and adding a cell biolab and genetic biolab, and we will appreciate your support and contributions. Let's accelerate bio research!

<hr style="border:2px solid gray">
<img src="media/website-screenshot.jpg" width="100%">
<hr style="border:2px solid gray">

[<img src="media/amino-acid-lab.gif" width="100%">](media/NoLabs.mp4)
[<img src="media/drug-target.gif" width="100%">](media/NoLabs.mp4)
<img src="media/protein_design.gif" width="100%">
<img src="media/conformations.gif" width="100%">

<hr style="border:2px solid gray">

Expand Down Expand Up @@ -97,7 +95,7 @@ $ cd ..
$ cd protein_design
$ sudo docker buildx build --progress=plain -t protein-design -f Dockerfile .

$ cd ..
$ cd ../build
# Build the docker image
$ sudo docker buildx build --progress=plain -t nolabs -f build/Dockerfile .

Expand Down
Binary file removed media/amino-acid-lab.gif
Binary file not shown.
Binary file removed media/drug-target.gif
Binary file not shown.
2 changes: 1 addition & 1 deletion src/server/frontend/src/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const store = createStore({
state.conformations.experiments.push(experiment);
},
conformations_deleteExperiment(state, experiment) {
state.conformations.experiments = state.conformations.experiments.filter(exp => exp.id !== experiment.metaData.id);
state.conformations.experiments = state.conformations.experiments.filter(exp => exp.metaData.id !== experiment.metaData.id);
},
proteinDesign_loadExperiment(state, { experiment }) {
state.proteinDesign.experiment = experiment;
Expand Down
5 changes: 0 additions & 5 deletions src/server/frontend/src/views/ExperimentsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,6 @@ export default {
<div v-for="experiment in state.experiments" :key="experiment.metaData.id" class="max-auto experiment" @click="selectExperiment(experiment)">
<h3>{{ experiment.metaData.name }}</h3>
<p>Last Modified: {{ experiment.metaData.date }}</p>
<div class="tags">

<span v-for="type in ['gene ontology', 'folding', 'solubility', 'localisation']" :key="type" class="tag"> {{ type }} </span>

</div>
<div class="progress" style="margin-top: 10px; height: 5px;">
<div class="progress-bar bg-success" role="progressbar"
:style="{ width: experiment.metaData.progress + '%' }"
Expand Down

0 comments on commit cb9441a

Please sign in to comment.