mirror of
https://github.com/K-Dense-AI/claude-scientific-skills.git
synced 2026-03-27 07:09:27 +08:00
fix(example): correct radar chart syntax from x-axis to radar-beta
Changed from invalid 'radar' with 'x-axis' syntax to proper 'radar-beta' syntax with axis/curve keywords as per references/diagrams/radar.md. Also removed accTitle/accDescr (radar-beta doesn't support them) and added italic description above the code block per accessibility requirements.
This commit is contained in:
@@ -185,16 +185,19 @@ Full GUIDE-seq data available in supplementary data package (GEO accession pendi
|
|||||||
|
|
||||||
### Comparison with published benchmarks
|
### Comparison with published benchmarks
|
||||||
|
|
||||||
```mermaid
|
_Radar chart comparing three CRISPR delivery methods across five performance dimensions. Note: Radar charts do not support `accTitle`/`accDescr` — description provided above._
|
||||||
radar
|
|
||||||
accTitle: CRISPR Method Comparison Radar
|
|
||||||
accDescr: Multi-dimensional radar chart comparing our protocol against published Cas9 and base editing benchmarks across five performance axes
|
|
||||||
|
|
||||||
title Performance vs. Published Methods
|
```mermaid
|
||||||
x-axis ["Efficiency", "Specificity", "Delivery ease", "Cost", "Cell viability"]
|
radar-beta
|
||||||
"This study (RNP + Lipo)" : [78, 95, 80, 85, 90]
|
title Performance vs. Published Methods
|
||||||
"Plasmid Cas9 (lit.)" : [55, 70, 90, 95, 75]
|
axis eff["Efficiency"], spec["Specificity"], del["Delivery ease"], cost["Cost"], viab["Cell viability"]
|
||||||
"Electroporation RNP (lit.)" : [88, 96, 50, 60, 65]
|
curve this_study["This study (RNP + Lipo)"]{78, 95, 80, 85, 90}
|
||||||
|
curve plasmid["Plasmid Cas9 (lit.)"]{55, 70, 90, 95, 75}
|
||||||
|
curve electroporation["Electroporation RNP (lit.)"]{88, 96, 50, 60, 65}
|
||||||
|
max 100
|
||||||
|
graticule polygon
|
||||||
|
ticks 5
|
||||||
|
showLegend true
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
Reference in New Issue
Block a user