Skip to content

Commit baedaab

Browse files
fixing last few doc links
1 parent 6789c8c commit baedaab

4 files changed

+8
-8
lines changed

doc/python/bio-alignment-chart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Note that the AlignmentChart only returns a chart of the sequence, while Alignme
4444
import plotly.express as px
4545
import pandas as pd
4646

47-
df = (pd.read_csv('https://git.io/gene_conservation.csv')
47+
df = (pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/Dash_Bio/Genetic/gene_conservation.csv')
4848
.set_index('0')
4949
.loc[['consensus','conservation']]
5050
.T

doc/python/bio-clustergram.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import pandas as pd
4040
import dash_bio
4141

4242

43-
df = pd.read_csv('https://git.io/clustergram_brain_cancer.csv')
43+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/Dash_Bio/Chromosomal/clustergram_brain_cancer.csv')
4444

4545
dash_bio.Clustergram(
4646
data=df,
@@ -60,7 +60,7 @@ import pandas as pd
6060
import dash_bio
6161

6262

63-
df = pd.read_csv('https://git.io/clustergram_brain_cancer.csv')
63+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/Dash_Bio/Chromosomal/clustergram_brain_cancer.csv')
6464

6565
dash_bio.Clustergram(
6666
data=df,
@@ -86,7 +86,7 @@ import pandas as pd
8686
import dash_bio
8787

8888

89-
df = pd.read_csv('https://git.io/clustergram_brain_cancer.csv')
89+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/Dash_Bio/Chromosomal/clustergram_brain_cancer.csv')
9090

9191
dash_bio.Clustergram(
9292
data=df,

doc/python/bio-manhattanplot.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import pandas as pd
4141
import dash_bio
4242

4343

44-
df = pd.read_csv('https://git.io/manhattan_data.csv')
44+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/manhattan_data.csv')
4545

4646

4747
dash_bio.ManhattanPlot(
@@ -57,7 +57,7 @@ import pandas as pd
5757
import dash_bio
5858

5959

60-
df = pd.read_csv('https://git.io/manhattan_data.csv')
60+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/manhattan_data.csv')
6161

6262
dash_bio.ManhattanPlot(
6363
dataframe=df,

doc/python/bio-volcano-plot.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import pandas as pd
4141
import dash_bio
4242

4343

44-
df = pd.read_csv('https://git.io/volcano_data1.csv')
44+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/volcano_data1.csv')
4545

4646
dash_bio.VolcanoPlot(
4747
dataframe=df,
@@ -57,7 +57,7 @@ import pandas as pd
5757
import dash_bio
5858

5959

60-
df = pd.read_csv('https://git.io/volcano_data1.csv')
60+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/volcano_data1.csv')
6161

6262
dash_bio.VolcanoPlot(
6363
dataframe=df,

0 commit comments

Comments
 (0)