Skip to content

Commit 7f0e072

Browse files
Feature/add fermentdb (#9)
* feat: add FermentDB project in tools page * 🚚 move style code to css file --------- Co-authored-by: txellext <[email protected]>
1 parent 1037360 commit 7f0e072

File tree

3 files changed

+52
-1
lines changed

3 files changed

+52
-1
lines changed

4tools.md

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,41 @@ permalink: /tools/
5252
</details>
5353

5454

55+
<details open>
56+
<summary>FermentDB</summary>
57+
58+
<h3>A Standard Data Model for Precision Fermentation</h3>
59+
<div style="text-align: justify; margin: 2em 0;">
60+
<b>FermentDB</b> is a platform for bioprocess data <i>Integration</i>, <i>Analysis</i> and <i>Visualization</i>.<br><br>
61+
It is designed to address key challenges in precision fermentation by establishing a community standard for biofoundries. It streamlines the integration of high-throughput bioprocess data, supporting the development and scaling of biosustainable production processes.<br><br>
62+
As an open-source database, FermentDB addresses the main obstacles related to FAIR data principles. By providing a standardized data model, it offers the scientific community a powerful computational tool for bioprocess data integration.<br><br>
63+
It also supports the upscaling of research through descriptive analytics for fermentation monitoring, enabling more efficient scaling of biomanufacturing and reducing time to market for new bioproducts.<br><br>
64+
By enabling seamless integration of new datasets from collaborators, including omics data and in silico testing and optimization, FermentDB reduces time and resource demands and accelerates innovation in biomanufacturing.
65+
</div>
66+
67+
<p>A graphical image of FermentDB workflow is shown in the figure below:</p>
68+
<a href="#zoomed">
69+
<img src="{{ site.baseurl }}/public/assets/graphical_abst_fermentDB.png"
70+
alt="Graphical_Abstract"
71+
style="cursor: zoom-in; max-width: 100%;">
72+
</a>
73+
74+
<!-- Zoom overlay -->
75+
<div id="zoomed" class="zoom-overlay">
76+
<a href="#" style="text-decoration: none;">
77+
<img src="{{ site.baseurl }}/public/assets/graphical_abst_fermentDB.png"
78+
alt="Zoomed_Image"
79+
style="max-width: 90%; max-height: 90%; cursor: zoom-out;
80+
transform: translate(5%, -5%);">
81+
</a>
82+
</div>
83+
<p>FermentDB is freely available on the website<a href="fermentdb.streamlit.app">fermentdb.streamlit.app</a></p>
84+
85+
<p style="text-align: justify;">The application code is publicly available in GitGub: <a href="https://github.com/Multiomics-Analytics-Group/FermentDB"> FermentDB Graph </a> and <a href="https://github.com/Multiomics-Analytics-Group/fermentdb_api"> FermentDB API</a>.</p>
86+
87+
</details>
88+
89+
5590
<details open>
5691
<summary>Additional Tool (Template)</summary>
5792

@@ -63,4 +98,4 @@ permalink: /tools/
6398

6499
<p>More text here if you want</p>
65100

66-
</details>
101+
</details>
506 KB
Loading

public/css/hyde.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,4 +382,20 @@ summary {
382382
}
383383
summary:hover {
384384
color: rgb(134,184,212);
385+
}
386+
387+
/* Zooming sections */
388+
.zoom-overlay {
389+
display: none;
390+
position: fixed;
391+
top: 0; left: 0;
392+
width: 100vw; height: 100vh;
393+
background: white;
394+
justify-content: center;
395+
align-items: center;
396+
z-index: 999;
397+
}
398+
399+
.zoom-overlay:target {
400+
display: flex;
385401
}

0 commit comments

Comments
 (0)