Skip to content

Commit 6030d8d

Browse files
authored
Merge pull request #3436 from plotly/fix-image-urls
Fix bioinformatics image urls
2 parents 4bcf992 + 84891bc commit 6030d8d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

doc/python/bio-alignment-chart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jupyter:
2929
order: 1
3030
page_type: u-guide
3131
permalink: python/alignment-chart/
32-
thumbnail: thumbnail/alignment-chart.png
32+
thumbnail: thumbnail/alignment_chart.png
3333
---
3434

35-
## Alignment Viewer (link to dash alignment section below)
35+
## Alignment Viewer
3636

3737
The Alignment Viewer (MSA) component is used to align multiple genomic or proteomic sequences from a FASTA or Clustal file. Among its extensive set of features, the multiple sequence alignment viewer can display multiple subplots showing gap and conservation info, alongside industry standard colorscale support and consensus sequence. No matter what size your alignment is, Alignment Viewer is able to display your genes or proteins snappily thanks to the underlying WebGL architecture powering the component. You can quickly scroll through your long sequence with a slider or a heatmap overview.
3838

doc/python/bio-manhattanplot.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ jupyter:
2929
name: Manhattan Plot
3030
order: 1
3131
page_type: u-guide
32-
permalink: python/manhattan-plot/
33-
thumbnail: thumbnail/manhttan-plot.png
32+
permalink: python/manhattan-plot/
33+
thumbnail: thumbnail/manhttan_plot.png
3434
---
3535

3636
## Manhattan Plot
3737
ManhattanPlot allows you to visualize genome-wide association studies (GWAS) efficiently. Using WebGL under the hood, you can interactively explore overviews of massive datasets comprising hundreds of thousands of points at once, or take a closer look at a small subset of your data. Hover data and click data are accessible from within the Dash app.
3838

3939
```python
4040
import pandas as pd
41-
import dash_bio
41+
import dash_bio
4242

4343
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/manhattan_data.csv')
4444

@@ -53,7 +53,7 @@ Change the color of the points that are considered significant.
5353

5454
```python
5555
import pandas as pd
56-
import dash_bio
56+
import dash_bio
5757

5858

5959
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/manhattan_data.csv')

doc/python/bio-volcano-plot.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ jupyter:
3030
order: 1
3131
page_type: u-guide
3232
permalink: python/volcano-plot/
33-
thumbnail: thumbnail/volcano-plot.png
33+
thumbnail: thumbnail/volcano_plot.png
3434
---
3535

3636
## VolcanoPlot
3737
Volcano Plot interactively identifies clinically meaningful markers in genomic experiments, i.e., markers that are statistically significant and have an effect size greater than some threshold. Specifically, volcano plots depict the negative log-base-10 p-values plotted against their effect size.
3838

3939
```python
4040
import pandas as pd
41-
import dash_bio
41+
import dash_bio
4242

4343

4444
df = pd.read_csv(
@@ -57,7 +57,7 @@ Change the size of the points on the scatter plot, and the widths of the effect
5757

5858
```python
5959
import pandas as pd
60-
import dash_bio
60+
import dash_bio
6161

6262
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/volcano_data1.csv')
6363

0 commit comments

Comments
 (0)