Skip to content
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

Add support for Julia components to be generated #564

Merged
merged 3 commits into from
Jun 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
* [#561](https://github.com/plotly/dash-bio/pull/561) Repeated re-rendering of the Molecule3dViewer component caused the viewer zoom to decrease multiplicatively.
This fix also exposes the `zoom` and `zoomTo` props for this component.

### Added
* [#563](https://github.com/plotly/dash-bio/pull/563) Added component generation support for Dash Julia.

## [0.7.0] - 2021-04-19

Expand Down
2 changes: 1 addition & 1 deletion dash_bio/Circos.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class Circos(Component):

- targetID (string; optional)

- type (optional):
- type (a value equal to: 'CHORDS', 'HEATMAP', 'HIGHLIGHT', 'HISTOGRAM', 'LINE', 'SCATTER', 'STACK', 'TEXT'; optional):
Specify the type of track this is. Please check the docs for a
list of tracks you can use, and ensure the name is typed in
all capitals."""
Expand Down
12 changes: 7 additions & 5 deletions dash_bio/Pileup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,22 +59,24 @@ class Pileup(Component):
- label (string; optional):
Label to display by track.

- source (optional):
- source (a value equal to: 'bam', 'alignmentJson', 'variantJson', 'featureJson', 'idiogramJson', 'cytoBand', 'vcf', 'twoBit', 'bigBed', 'GAReadAlignment', 'GAVariant', 'GAFeature', 'GAGene'; optional):
Data source to visualize. Must be one of (bam,
vcf, alignmentJson, variantJson, featureJson, idiogramJson,
cytoBand, vcf, twoBit, bigBed, GAReadAlignment,
GAVariant, GAFeature, GAGene) See
GAVariant, GAFeature, GAGene). For more info on
data source types supported by pileup.js see
https://github.com/hammerlab/pileup.js/blob/master/src/main/pileup.js.

- sourceOptions (optional):
Options that define data source. Options depend on
the source selected.

- viz (optional):
- viz (a value equal to: 'coverage', 'genome', 'genes', 'features', 'idiogram', 'location', 'scale', 'variants', 'genotypes', 'pileup'; optional):
Name of visualization. Must be one of (coverage,
genome, genes, features, idiogram, location, scale,
variants, genotypes, or pileup) See
https://github.com/hammerlab/pileup.js/blob/master/src/main/pileup.js.
variants, genotypes, or pileup). For more info on
visualization types supported by pileup.js see
https://github.com/akmorrow13/pileup.js/blob/master/src/main/pileup.js.

- vizOptions (optional):
Options that define viz details. Options depend on
Expand Down
6 changes: 3 additions & 3 deletions dash_bio/async-alignment.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/async-alignment.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dash_bio/async-circos.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dash_bio/async-ideogram.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dash_bio/async-igv.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/async-moleculeviewer2.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/async-moleculeviewer3.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/async-needle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/async-needle.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dash_bio/async-nglmoleculeviewer.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/async-onco.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/async-onco.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dash_bio/async-pileup.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/async-sequence.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/async-sequence.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/async-speck.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dash_bio/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/bundle.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dash_bio/dash_bio-shared.js

Large diffs are not rendered by default.

Loading