-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
dash-bio docs posts #3409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
dash-bio docs posts #3409
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
645ee13
Fixed crash when serializing dict with mix of string and int keys
jonmmease 69ddc67
CHANGELOG
jonmmease 21c7f70
Test fix
jonmmease 46a87bd
Remove layout string test
jonmmease c25e710
Fix deepcopy/pickle tests
jonmmease ce0ed07
Merge pull request #3386 from plotly/json_remove_sort_keys
nicolaskruchten 65a8c07
dash bio test
olayway cd3f780
created DashBio posts for graphing-library-docs
olayway 77638d0
rebasing from correct branch
olayway 6a1ee59
corrected jupyter-dash package name in requirements.txt
olayway f219ebb
docs:bio:volcano: simplified examles, replaced jupyter-dash example w…
smallstepman 93ed64a
docs:bio: volcano - add `no_display=true` to iframe cell
smallstepman a38ed99
docs:bio: merged clustergram and circos files, replace jupyter-dash w…
smallstepman f4ff867
docs:bio: remove molecular-visualizations
smallstepman f78857b
docs:bio: drop documentation for volcanoplot
smallstepman 80e9f35
docs:bio: add manhattanplot documentation
smallstepman 5ed742d
docs:bio: renamed file with alignmentchat docs
smallstepman 44b3c5f
docs:bio: add `no_display=true` to circos iframe example
smallstepman 41cb53c
docs:bio: bar chart for conversion viz + alignment chart iframe url
smallstepman cdbeb71
Update requirements.txt
smallstepman df87ed9
Update bio-alignment-chart.md
smallstepman 343b6f9
try to pin down doc deps
nicolaskruchten b9ab9da
Merge pull request #3429 from plotly/docfix23
nicolaskruchten e91ba8a
Merge branch 'master' into bio-docs
emmeb f05a436
Apply suggestions from code review
smallstepman 3269052
fix:change page name: Volcano plot -> Manhattan Plot
smallstepman 1335742
Volcano Plot page name title-cased
smallstepman 05de373
add intro paragraph to Volcano Plot page
smallstepman 39cb3c2
add intro paragraph to Manhattan Plot page
smallstepman 3dbcbae
add intro paragraph to bio-circos.md
smallstepman a54afe4
add intro paragraph to bio-aligment-chart.md
smallstepman b039ebd
Update bio-manhattanplot.md
smallstepman bab1653
rename circos.md to clustergram.md, drop all cicros examples
smallstepman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
--- | ||
jupyter: | ||
jupytext: | ||
notebook_metadata_filter: all | ||
text_representation: | ||
extension: .md | ||
format_name: markdown | ||
format_version: '1.3' | ||
jupytext_version: 1.13.0 | ||
kernelspec: | ||
display_name: Python 3 (ipykernel) | ||
language: python | ||
name: python3 | ||
language_info: | ||
codemirror_mode: | ||
name: ipython | ||
version: 3 | ||
file_extension: .py | ||
mimetype: text/x-python | ||
name: python | ||
nbconvert_exporter: python | ||
pygments_lexer: ipython3 | ||
version: 3.9.7 | ||
plotly: | ||
display_as: bio | ||
language: python | ||
layout: base | ||
name: Alignment Chart | ||
order: 1 | ||
page_type: u-guide | ||
permalink: python/alignment-chart/ | ||
thumbnail: thumbnail/alignment-chart.png | ||
--- | ||
|
||
## Alignment Viewer (link to dash alignment section below) | ||
|
||
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. | ||
|
||
Note that the AlignmentChart only returns a chart of the sequence, while AlignmentViewer has integrated controls for colorscale, heatmaps, and subplots allowing you to interactively control your sequences. | ||
|
||
## Bar Chart for conservation visualization | ||
|
||
```python | ||
import plotly.express as px | ||
smallstepman marked this conversation as resolved.
Show resolved
Hide resolved
|
||
import pandas as pd | ||
|
||
df = (pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/Dash_Bio/Genetic/gene_conservation.csv') | ||
.set_index('0') | ||
.loc[['consensus','conservation']] | ||
.T) | ||
|
||
fig = px.bar(df, labels={ 'index': 'base' }, hover_name='consensus', y='conservation') | ||
fig.show() | ||
``` | ||
|
||
## Alignment Chart in dash_bio | ||
|
||
```python no_display=true | ||
from IPython.display import IFrame | ||
snippet_url = 'https://dash-gallery.plotly.host/python-docs-dash-snippets/' | ||
IFrame(snippet_url + 'bio-alignmentchart', width='100%', height=630) | ||
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
--- | ||
jupyter: | ||
jupytext: | ||
notebook_metadata_filter: all | ||
text_representation: | ||
extension: .md | ||
format_name: markdown | ||
format_version: '1.3' | ||
jupytext_version: 1.13.0 | ||
kernelspec: | ||
display_name: Python 3 (ipykernel) | ||
language: python | ||
name: python3 | ||
language_info: | ||
codemirror_mode: | ||
name: ipython | ||
version: 3 | ||
file_extension: .py | ||
mimetype: text/x-python | ||
name: python | ||
nbconvert_exporter: python | ||
pygments_lexer: ipython3 | ||
version: 3.9.7 | ||
plotly: | ||
display_as: bio | ||
language: python | ||
layout: base | ||
name: Clustergram | ||
order: 1 | ||
page_type: u-guide | ||
permalink: python/clustergram/ | ||
thumbnail: thumbnail/clustergram.png | ||
--- | ||
|
||
## Default Clustergram | ||
A clustergram is a combination heatmap-dendrogram that is commonly used in gene expression data. The hierarchical clustering that is represented by the dendrograms can be used to identify groups of genes with related expression levels. The Dash Bio Clustergram component is a Python-based component that uses plotly.py to generate a figure. It takes as input a two-dimensional numpy array of floating-point values. Imputation of missing data and computation of hierarchical clustering both occur within the component itself. Clusters that meet or exceed a user-defined threshold of similarity comprise single traces in the corresponding dendrogram, and can be highlighted with annotations. The user can specify additional parameters to customize the metrics and methods used to compute parts of the clustering, such as the pairwise distance between observations and the linkage matrix. | ||
|
||
```python | ||
import pandas as pd | ||
import dash_bio | ||
|
||
|
||
df = pd.read_csv( | ||
'https://raw.githubusercontent.com/plotly/datasets/master/Dash_Bio/Chromosomal/' + | ||
'clustergram_brain_cancer.csv', | ||
) | ||
|
||
dash_bio.Clustergram( | ||
data=df, | ||
column_labels=list(df.columns.values), | ||
row_labels=list(df.index), | ||
height=800, | ||
width=700 | ||
) | ||
``` | ||
|
||
## Dendrogram Cluster Colors/Line Widths | ||
Change the colors of the dendrogram traces that are used to represent clusters, and configure their line widths. | ||
|
||
|
||
```python | ||
import pandas as pd | ||
import dash_bio | ||
|
||
df = pd.read_csv( | ||
'https://raw.githubusercontent.com/plotly/datasets/master/Dash_Bio/Chromosomal/' + | ||
'clustergram_brain_cancer.csv', | ||
) | ||
|
||
dash_bio.Clustergram( | ||
data=df, | ||
column_labels=list(df.columns.values), | ||
row_labels=list(df.index), | ||
height=800, | ||
width=700, | ||
color_list={ | ||
'row': ['#636EFA', '#00CC96', '#19D3F3'], | ||
'col': ['#AB63FA', '#EF553B'], | ||
'bg': '#506784' | ||
}, | ||
line_width=2 | ||
) | ||
``` | ||
|
||
## Relative Dendrogram Size | ||
Change the relative width and height of, respectively, the row and column dendrograms compared to the width and height of the heatmap. | ||
|
||
|
||
```python | ||
import pandas as pd | ||
import dash_bio | ||
|
||
df = pd.read_csv( | ||
'https://raw.githubusercontent.com/plotly/datasets/master/Dash_Bio/Chromosomal/' + | ||
'clustergram_brain_cancer.csv', | ||
) | ||
|
||
dash_bio.Clustergram( | ||
data=df, | ||
column_labels=list(df.columns.values), | ||
row_labels=list(df.index), | ||
height=800, | ||
width=700, | ||
display_ratio=[0.1, 0.7] | ||
) | ||
``` | ||
|
||
## Clustergram with Dash | ||
|
||
```python no_display=true | ||
from IPython.display import IFrame | ||
snippet_url = 'https://dash-gallery.plotly.host/python-docs-dash-snippets/' | ||
IFrame(snippet_url + 'bio-clustergram', width='100%', height=630) | ||
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
--- | ||
jupyter: | ||
celltoolbar: Tags | ||
jupytext: | ||
notebook_metadata_filter: all | ||
text_representation: | ||
extension: .md | ||
format_name: markdown | ||
format_version: '1.3' | ||
jupytext_version: 1.13.0 | ||
kernelspec: | ||
display_name: Python 3 (ipykernel) | ||
language: python | ||
name: python3 | ||
language_info: | ||
codemirror_mode: | ||
name: ipython | ||
version: 3 | ||
file_extension: .py | ||
mimetype: text/x-python | ||
name: python | ||
nbconvert_exporter: python | ||
pygments_lexer: ipython3 | ||
version: 3.9.7 | ||
plotly: | ||
display_as: bio | ||
language: python | ||
layout: base | ||
name: Manhattan Plot | ||
order: 1 | ||
page_type: u-guide | ||
permalink: python/manhattan-plot/ | ||
thumbnail: thumbnail/manhttan-plot.png | ||
--- | ||
|
||
## Manhattan Plot | ||
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. | ||
|
||
```python | ||
import pandas as pd | ||
import dash_bio as dashbio | ||
|
||
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/manhattan_data.csv') | ||
|
||
|
||
dashbio.ManhattanPlot( | ||
dataframe=df, | ||
) | ||
``` | ||
|
||
## Highlighted points color, and colors of the suggestive line and the genome-wide line. | ||
Change the color of the points that are considered significant. | ||
|
||
```python | ||
import pandas as pd | ||
import dash_bio as dashbio | ||
|
||
|
||
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/manhattan_data.csv') | ||
|
||
dashbio.ManhattanPlot( | ||
dataframe=df, | ||
highlight_color='#00FFAA', | ||
suggestiveline_color='#AA00AA', | ||
genomewideline_color='#AA5500' | ||
) | ||
``` | ||
|
||
## ManhattanPlot with Dash | ||
|
||
smallstepman marked this conversation as resolved.
Show resolved
Hide resolved
|
||
```python no_display=true | ||
from IPython.display import IFrame | ||
snippet_url = 'https://dash-gallery.plotly.host/python-docs-dash-snippets/' | ||
IFrame(snippet_url + 'bio-manhattanplot', width='100%', height=630) | ||
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
--- | ||
jupyter: | ||
celltoolbar: Tags | ||
jupytext: | ||
notebook_metadata_filter: all | ||
text_representation: | ||
extension: .md | ||
format_name: markdown | ||
format_version: '1.3' | ||
jupytext_version: 1.13.0 | ||
kernelspec: | ||
display_name: Python 3 (ipykernel) | ||
language: python | ||
name: python3 | ||
language_info: | ||
codemirror_mode: | ||
name: ipython | ||
version: 3 | ||
file_extension: .py | ||
mimetype: text/x-python | ||
name: python | ||
nbconvert_exporter: python | ||
pygments_lexer: ipython3 | ||
version: 3.9.7 | ||
plotly: | ||
display_as: bio | ||
language: python | ||
layout: base | ||
name: Volcano Plot | ||
order: 1 | ||
page_type: u-guide | ||
permalink: python/volcano-plot/ | ||
thumbnail: thumbnail/volcano-plot.png | ||
--- | ||
|
||
## VolcanoPlot | ||
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. | ||
|
||
smallstepman marked this conversation as resolved.
Show resolved
Hide resolved
|
||
```python | ||
import pandas as pd | ||
import dash_bio | ||
|
||
|
||
df = pd.read_csv( | ||
'https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/' + | ||
'volcano_data1.csv' | ||
) | ||
|
||
dash_bio.VolcanoPlot( | ||
dataframe=df, | ||
) | ||
``` | ||
|
||
## Point Sizes And Line Widths | ||
Change the size of the points on the scatter plot, and the widths of the effect lines and genome-wide line. | ||
|
||
|
||
```python | ||
import pandas as pd | ||
import dash_bio as dashbio | ||
|
||
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/volcano_data1.csv') | ||
|
||
dashbio.VolcanoPlot( | ||
dataframe=df, | ||
point_size=10, | ||
effect_size_line_width=4, | ||
genomewideline_width=2 | ||
) | ||
``` | ||
|
||
## VolcanoPlot with Dash | ||
|
||
```python no_display=true | ||
from IPython.display import IFrame | ||
snippet_url = 'https://dash-gallery.plotly.host/python-docs-dash-snippets/' | ||
IFrame(snippet_url + 'bio-volcano', width='100%', height=630) | ||
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.