wenruifan commited on
Commit
0c61481
·
verified ·
1 Parent(s): c422cbb

Replace distribution figures with new MuSProt plots

Browse files
.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

  • SHA256: 0b186f8b352d25081a4e175bc2ecb493e53c4d9d3a676d360be7bda1b28ce8be
  • Pointer size: 131 Bytes
  • Size of remote file: 111 kB
backend/assets/plots/Function-rank-correlation.png ADDED

Git LFS Details

  • SHA256: 9cc13b0d354462109d26a5c2be686b1c517059de4f7762abe2e9611939e5238d
  • Pointer size: 131 Bytes
  • Size of remote file: 113 kB
backend/assets/plots/Structure-similarity.png ADDED

Git LFS Details

  • SHA256: 258913240a592a673ba87969edecf2d614930cfdd475a4dcfb73fe8691aa11e0
  • Pointer size: 131 Bytes
  • Size of remote file: 566 kB
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=20260527';
5
 
6
  const plots = [
7
- { name: 'Structure Similarity', file: 'TM-RMSD.png' },
8
- { name: 'TM-Align Distribution', file: 'TM-Dis.png' },
9
- { name: 'RMSD Distribution', file: 'RMSD-Dis.png' },
10
- { name: 'State Distribution', file: 'States-Dis.png' },
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 = () => {