Replace distribution figures with new MuSProt plots
Browse files- .gitattributes +3 -0
- backend/assets/plots/Fidelity-distribution.png +3 -0
- backend/assets/plots/Function-rank-correlation.png +3 -0
- backend/assets/plots/Structure-similarity.png +3 -0
- backend/assets/plots/Unique-state-cluster-distribution.png +0 -0
- frontend/src/components/datasets/protein/StaticDistributionPlots.tsx +5 -7
.gitattributes
CHANGED
|
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
backend/assets/plots/Structure-similarity.png filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
backend/assets/plots/Function-rank-correlation.png filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
backend/assets/plots/Fidelity-distribution.png filter=lfs diff=lfs merge=lfs -text
|
backend/assets/plots/Fidelity-distribution.png
ADDED
|
Git LFS Details
|
backend/assets/plots/Function-rank-correlation.png
ADDED
|
Git LFS Details
|
backend/assets/plots/Structure-similarity.png
ADDED
|
Git LFS Details
|
backend/assets/plots/Unique-state-cluster-distribution.png
ADDED
|
frontend/src/components/datasets/protein/StaticDistributionPlots.tsx
CHANGED
|
@@ -1,15 +1,13 @@
|
|
| 1 |
import React from 'react';
|
| 2 |
|
| 3 |
const IMG_BASE = '/api/protein/plots';
|
| 4 |
-
const CACHE_BUST = '?v=
|
| 5 |
|
| 6 |
const plots = [
|
| 7 |
-
{ name: 'Structure Similarity', file: '
|
| 8 |
-
{ name: '
|
| 9 |
-
{ name: '
|
| 10 |
-
{ name: 'State Distribution', file: '
|
| 11 |
-
{ name: 'Sequence Length Distribution', file: 'Seq-Len.png' },
|
| 12 |
-
{ name: 'Function Rank Correlation vs. Structure Similarity', file: 'Func_rank.png' },
|
| 13 |
];
|
| 14 |
|
| 15 |
export const StaticDistributionPlots: React.FC = () => {
|
|
|
|
| 1 |
import React from 'react';
|
| 2 |
|
| 3 |
const IMG_BASE = '/api/protein/plots';
|
| 4 |
+
const CACHE_BUST = '?v=20260622';
|
| 5 |
|
| 6 |
const plots = [
|
| 7 |
+
{ name: 'Structure Similarity', file: 'Structure-similarity.png' },
|
| 8 |
+
{ name: 'Function Rank Correlation vs. Structure Similarity', file: 'Function-rank-correlation.png' },
|
| 9 |
+
{ name: 'Fidelity Distribution', file: 'Fidelity-distribution.png' },
|
| 10 |
+
{ name: 'Unique State Cluster Distribution', file: 'Unique-state-cluster-distribution.png' },
|
|
|
|
|
|
|
| 11 |
];
|
| 12 |
|
| 13 |
export const StaticDistributionPlots: React.FC = () => {
|