Skip to content

Commit 1f03663

Browse files
authored
Minor patch for 1.0.1 release (#667)
* Added utils import for dash-bio-utils stub package * Adding Ideogram updates * Changelog and Version update * Rebuild after version update * Linting fixes * Updated dev requirements for tests
1 parent 1387c39 commit 1f03663

29 files changed

+897
-533
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
# Changelog
22

3+
## [1.0.1] - 2022-01-19
4+
5+
### Changed
6+
* [#652](https://github.com/plotly/dash-bio/pull/652) Added support for dash-bio-utils stub package and deprecation warning.
7+
* [#652](https://github.com/plotly/dash-bio/pull/652) Updated Ideogram version, props and removed support for old versions of ideogram (for more info see [#393](https://github.com/plotly/dash-bio/pull/393)).
8+
9+
310
## [1.0.0] - 2022-01-17
411

512
### Changed
613
* [#589](https://github.com/plotly/dash-bio/pull/593) Merged dash-bio-utils into the dash bio package namespace.
714

815
### Fixed
9-
* [#646](https://github.com/plotly/dash-bio/pull/646) Fixed dendrogram domain whitespaces for Clustergram when dendrogram property is not set for either axis (for more infor see [#644](https://github.com/plotly/dash-bio/issues/644)).
16+
* [#646](https://github.com/plotly/dash-bio/pull/646) Fixed dendrogram domain whitespaces for Clustergram when dendrogram property is not set for either axis (for more info see [#644](https://github.com/plotly/dash-bio/issues/644)).
1017

1118
## [0.9.0] - 2021-12-14
1219

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dashBio
22
Title: Open-source Bioinformatics Components for Dash
3-
Version: 1.0.0
3+
Version: 1.0.1
44
Description: A suite of components that makes it simpler to analyze and visualize bioinformatics data and interact with them in a Dash application.
55
Depends: R (>= 3.0.2), manhattanly
66
Imports: dash

R/dashbioIdeogram.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# AUTO GENERATED FILE - DO NOT EDIT
22

3-
dashbioIdeogram <- function(id=NULL, ancestors=NULL, annotationHeight=NULL, annotationTracks=NULL, annotations=NULL, annotationsColor=NULL, annotationsData=NULL, annotationsLayout=NULL, annotationsPath=NULL, assembly=NULL, barWidth=NULL, brush=NULL, brushData=NULL, chrHeight=NULL, chrMargin=NULL, chrWidth=NULL, chromosomes=NULL, className=NULL, container=NULL, dataDir=NULL, filterable=NULL, fullChromosomeLabels=NULL, histogramScaling=NULL, homology=NULL, loading_state=NULL, localOrganism=NULL, organism=NULL, orientation=NULL, perspective=NULL, ploidy=NULL, ploidyDesc=NULL, rangeSet=NULL, resolution=NULL, rotatable=NULL, rotated=NULL, sex=NULL, showAnnotTooltip=NULL, showBandLabels=NULL, showChromosomeLabels=NULL, showFullyBanded=NULL, showNonNuclearChromosomes=NULL, style=NULL) {
3+
dashbioIdeogram <- function(id=NULL, accessToken=NULL, ancestors=NULL, annotationHeight=NULL, annotationTracks=NULL, annotations=NULL, annotationsColor=NULL, annotationsData=NULL, annotationsLayout=NULL, annotationsPath=NULL, assembly=NULL, barWidth=NULL, brush=NULL, brushData=NULL, chrHeight=NULL, chrMargin=NULL, chrWidth=NULL, chromosomeScale=NULL, chromosomes=NULL, className=NULL, container=NULL, dataDir=NULL, demarcateCollinearChromosomes=NULL, filterable=NULL, fullChromosomeLabels=NULL, geometry=NULL, heatmaps=NULL, histogramScaling=NULL, homology=NULL, legend=NULL, loading_state=NULL, organism=NULL, orientation=NULL, perspective=NULL, ploidy=NULL, ploidyDesc=NULL, rangeSet=NULL, resolution=NULL, rotatable=NULL, rotated=NULL, rows=NULL, sex=NULL, showAnnotTooltip=NULL, showBandLabels=NULL, showChromosomeLabels=NULL, showFullyBanded=NULL, showNonNuclearChromosomes=NULL, style=NULL) {
44

5-
props <- list(id=id, ancestors=ancestors, annotationHeight=annotationHeight, annotationTracks=annotationTracks, annotations=annotations, annotationsColor=annotationsColor, annotationsData=annotationsData, annotationsLayout=annotationsLayout, annotationsPath=annotationsPath, assembly=assembly, barWidth=barWidth, brush=brush, brushData=brushData, chrHeight=chrHeight, chrMargin=chrMargin, chrWidth=chrWidth, chromosomes=chromosomes, className=className, container=container, dataDir=dataDir, filterable=filterable, fullChromosomeLabels=fullChromosomeLabels, histogramScaling=histogramScaling, homology=homology, loading_state=loading_state, localOrganism=localOrganism, organism=organism, orientation=orientation, perspective=perspective, ploidy=ploidy, ploidyDesc=ploidyDesc, rangeSet=rangeSet, resolution=resolution, rotatable=rotatable, rotated=rotated, sex=sex, showAnnotTooltip=showAnnotTooltip, showBandLabels=showBandLabels, showChromosomeLabels=showChromosomeLabels, showFullyBanded=showFullyBanded, showNonNuclearChromosomes=showNonNuclearChromosomes, style=style)
5+
props <- list(id=id, accessToken=accessToken, ancestors=ancestors, annotationHeight=annotationHeight, annotationTracks=annotationTracks, annotations=annotations, annotationsColor=annotationsColor, annotationsData=annotationsData, annotationsLayout=annotationsLayout, annotationsPath=annotationsPath, assembly=assembly, barWidth=barWidth, brush=brush, brushData=brushData, chrHeight=chrHeight, chrMargin=chrMargin, chrWidth=chrWidth, chromosomeScale=chromosomeScale, chromosomes=chromosomes, className=className, container=container, dataDir=dataDir, demarcateCollinearChromosomes=demarcateCollinearChromosomes, filterable=filterable, fullChromosomeLabels=fullChromosomeLabels, geometry=geometry, heatmaps=heatmaps, histogramScaling=histogramScaling, homology=homology, legend=legend, loading_state=loading_state, organism=organism, orientation=orientation, perspective=perspective, ploidy=ploidy, ploidyDesc=ploidyDesc, rangeSet=rangeSet, resolution=resolution, rotatable=rotatable, rotated=rotated, rows=rows, sex=sex, showAnnotTooltip=showAnnotTooltip, showBandLabels=showBandLabels, showChromosomeLabels=showChromosomeLabels, showFullyBanded=showFullyBanded, showNonNuclearChromosomes=showNonNuclearChromosomes, style=style)
66
if (length(props) > 0) {
77
props <- props[!vapply(props, is.null, logical(1))]
88
}
99
component <- list(
1010
props = props,
1111
type = 'Ideogram',
1212
namespace = 'dash_bio',
13-
propNames = c('id', 'ancestors', 'annotationHeight', 'annotationTracks', 'annotations', 'annotationsColor', 'annotationsData', 'annotationsLayout', 'annotationsPath', 'assembly', 'barWidth', 'brush', 'brushData', 'chrHeight', 'chrMargin', 'chrWidth', 'chromosomes', 'className', 'container', 'dataDir', 'filterable', 'fullChromosomeLabels', 'histogramScaling', 'homology', 'loading_state', 'localOrganism', 'organism', 'orientation', 'perspective', 'ploidy', 'ploidyDesc', 'rangeSet', 'resolution', 'rotatable', 'rotated', 'sex', 'showAnnotTooltip', 'showBandLabels', 'showChromosomeLabels', 'showFullyBanded', 'showNonNuclearChromosomes', 'style'),
13+
propNames = c('id', 'accessToken', 'ancestors', 'annotationHeight', 'annotationTracks', 'annotations', 'annotationsColor', 'annotationsData', 'annotationsLayout', 'annotationsPath', 'assembly', 'barWidth', 'brush', 'brushData', 'chrHeight', 'chrMargin', 'chrWidth', 'chromosomeScale', 'chromosomes', 'className', 'container', 'dataDir', 'demarcateCollinearChromosomes', 'filterable', 'fullChromosomeLabels', 'geometry', 'heatmaps', 'histogramScaling', 'homology', 'legend', 'loading_state', 'organism', 'orientation', 'perspective', 'ploidy', 'ploidyDesc', 'rangeSet', 'resolution', 'rotatable', 'rotated', 'rows', 'sex', 'showAnnotTooltip', 'showBandLabels', 'showChromosomeLabels', 'showFullyBanded', 'showNonNuclearChromosomes', 'style'),
1414
package = 'dashBio'
1515
)
1616

R/internal.R

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,180 +1,180 @@
11
.dashBio_js_metadata <- function() {
22
deps_metadata <- list(`dash_bio` = structure(list(name = "dash_bio",
3-
version = "1.0.0", src = list(href = NULL,
3+
version = "1.0.1", src = list(href = NULL,
44
file = "deps"), meta = NULL,
55
script = 'async-alignment.js',
66
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
77
all_files = FALSE, async = TRUE), class = "html_dependency"),
88
`dash_bio` = structure(list(name = "dash_bio",
9-
version = "1.0.0", src = list(href = NULL,
9+
version = "1.0.1", src = list(href = NULL,
1010
file = "deps"), meta = NULL,
1111
script = 'async-circos.js',
1212
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
1313
all_files = FALSE, async = TRUE), class = "html_dependency"),
1414
`dash_bio` = structure(list(name = "dash_bio",
15-
version = "1.0.0", src = list(href = NULL,
15+
version = "1.0.1", src = list(href = NULL,
1616
file = "deps"), meta = NULL,
1717
script = 'async-ideogram.js',
1818
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
1919
all_files = FALSE, async = TRUE), class = "html_dependency"),
2020
`dash_bio` = structure(list(name = "dash_bio",
21-
version = "1.0.0", src = list(href = NULL,
21+
version = "1.0.1", src = list(href = NULL,
2222
file = "deps"), meta = NULL,
2323
script = 'async-igv.js',
2424
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
2525
all_files = FALSE, async = TRUE), class = "html_dependency"),
2626
`dash_bio` = structure(list(name = "dash_bio",
27-
version = "1.0.0", src = list(href = NULL,
27+
version = "1.0.1", src = list(href = NULL,
2828
file = "deps"), meta = NULL,
2929
script = 'async-pileup.js',
3030
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
3131
all_files = FALSE, async = TRUE), class = "html_dependency"),
3232
`dash_bio` = structure(list(name = "dash_bio",
33-
version = "1.0.0", src = list(href = NULL,
33+
version = "1.0.1", src = list(href = NULL,
3434
file = "deps"), meta = NULL,
3535
script = 'async-moleculeviewer2.js',
3636
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
3737
all_files = FALSE, async = TRUE), class = "html_dependency"),
3838
`dash_bio` = structure(list(name = "dash_bio",
39-
version = "1.0.0", src = list(href = NULL,
39+
version = "1.0.1", src = list(href = NULL,
4040
file = "deps"), meta = NULL,
4141
script = 'async-moleculeviewer3.js',
4242
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
4343
all_files = FALSE, async = TRUE), class = "html_dependency"),
4444
`dash_bio` = structure(list(name = "dash_bio",
45-
version = "1.0.0", src = list(href = NULL,
45+
version = "1.0.1", src = list(href = NULL,
4646
file = "deps"), meta = NULL,
4747
script = 'async-needle.js',
4848
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
4949
all_files = FALSE, async = TRUE), class = "html_dependency"),
5050
`dash_bio` = structure(list(name = "dash_bio",
51-
version = "1.0.0", src = list(href = NULL,
51+
version = "1.0.1", src = list(href = NULL,
5252
file = "deps"), meta = NULL,
5353
script = 'async-nglmoleculeviewer.js',
5454
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
5555
all_files = FALSE, async = TRUE), class = "html_dependency"),
5656
`dash_bio` = structure(list(name = "dash_bio",
57-
version = "1.0.0", src = list(href = NULL,
57+
version = "1.0.1", src = list(href = NULL,
5858
file = "deps"), meta = NULL,
5959
script = 'async-onco.js',
6060
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
6161
all_files = FALSE, async = TRUE), class = "html_dependency"),
6262
`dash_bio` = structure(list(name = "dash_bio",
63-
version = "1.0.0", src = list(href = NULL,
63+
version = "1.0.1", src = list(href = NULL,
6464
file = "deps"), meta = NULL,
6565
script = 'async-sequence.js',
6666
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
6767
all_files = FALSE, async = TRUE), class = "html_dependency"),
6868
`dash_bio` = structure(list(name = "dash_bio",
69-
version = "1.0.0", src = list(href = NULL,
69+
version = "1.0.1", src = list(href = NULL,
7070
file = "deps"), meta = NULL,
7171
script = 'async-speck.js',
7272
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
7373
all_files = FALSE, async = TRUE), class = "html_dependency"),
7474
`dash_bio` = structure(list(name = "dash_bio",
75-
version = "1.0.0", src = list(href = NULL,
75+
version = "1.0.1", src = list(href = NULL,
7676
file = "deps"), meta = NULL,
7777
script = 'async-jsme.js',
7878
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
7979
all_files = FALSE, async = TRUE), class = "html_dependency"),
8080
`dash_bio` = structure(list(name = "dash_bio",
81-
version = "1.0.0", src = list(href = NULL,
81+
version = "1.0.1", src = list(href = NULL,
8282
file = "deps"), meta = NULL,
8383
script = 'async-alignment.js.map',
8484
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
8585
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
8686
`dash_bio` = structure(list(name = "dash_bio",
87-
version = "1.0.0", src = list(href = NULL,
87+
version = "1.0.1", src = list(href = NULL,
8888
file = "deps"), meta = NULL,
8989
script = 'async-circos.js.map',
9090
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
9191
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
9292
`dash_bio` = structure(list(name = "dash_bio",
93-
version = "1.0.0", src = list(href = NULL,
93+
version = "1.0.1", src = list(href = NULL,
9494
file = "deps"), meta = NULL,
9595
script = 'async-ideogram.js.map',
9696
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
9797
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
9898
`dash_bio` = structure(list(name = "dash_bio",
99-
version = "1.0.0", src = list(href = NULL,
99+
version = "1.0.1", src = list(href = NULL,
100100
file = "deps"), meta = NULL,
101101
script = 'async-igv.js.map',
102102
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
103103
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
104104
`dash_bio` = structure(list(name = "dash_bio",
105-
version = "1.0.0", src = list(href = NULL,
105+
version = "1.0.1", src = list(href = NULL,
106106
file = "deps"), meta = NULL,
107107
script = 'async-pileup.js.map',
108108
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
109109
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
110110
`dash_bio` = structure(list(name = "dash_bio",
111-
version = "1.0.0", src = list(href = NULL,
111+
version = "1.0.1", src = list(href = NULL,
112112
file = "deps"), meta = NULL,
113113
script = 'async-moleculeviewer2.js.map',
114114
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
115115
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
116116
`dash_bio` = structure(list(name = "dash_bio",
117-
version = "1.0.0", src = list(href = NULL,
117+
version = "1.0.1", src = list(href = NULL,
118118
file = "deps"), meta = NULL,
119119
script = 'async-moleculeviewer3.js.map',
120120
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
121121
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
122122
`dash_bio` = structure(list(name = "dash_bio",
123-
version = "1.0.0", src = list(href = NULL,
123+
version = "1.0.1", src = list(href = NULL,
124124
file = "deps"), meta = NULL,
125125
script = 'async-needle.js.map',
126126
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
127127
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
128128
`dash_bio` = structure(list(name = "dash_bio",
129-
version = "1.0.0", src = list(href = NULL,
129+
version = "1.0.1", src = list(href = NULL,
130130
file = "deps"), meta = NULL,
131131
script = 'async-nglmoleculeviewer.js.map',
132132
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
133133
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
134134
`dash_bio` = structure(list(name = "dash_bio",
135-
version = "1.0.0", src = list(href = NULL,
135+
version = "1.0.1", src = list(href = NULL,
136136
file = "deps"), meta = NULL,
137137
script = 'async-onco.js.map',
138138
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
139139
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
140140
`dash_bio` = structure(list(name = "dash_bio",
141-
version = "1.0.0", src = list(href = NULL,
141+
version = "1.0.1", src = list(href = NULL,
142142
file = "deps"), meta = NULL,
143143
script = 'async-sequence.js.map',
144144
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
145145
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
146146
`dash_bio` = structure(list(name = "dash_bio",
147-
version = "1.0.0", src = list(href = NULL,
147+
version = "1.0.1", src = list(href = NULL,
148148
file = "deps"), meta = NULL,
149149
script = 'async-speck.js.map',
150150
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
151151
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
152152
`dash_bio` = structure(list(name = "dash_bio",
153-
version = "1.0.0", src = list(href = NULL,
153+
version = "1.0.1", src = list(href = NULL,
154154
file = "deps"), meta = NULL,
155155
script = 'async-jsme.js.map',
156156
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
157157
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
158158
`dash_bio` = structure(list(name = "dash_bio",
159-
version = "1.0.0", src = list(href = NULL,
159+
version = "1.0.1", src = list(href = NULL,
160160
file = "deps"), meta = NULL,
161161
script = 'bundle.js',
162162
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
163163
all_files = FALSE), class = "html_dependency"),
164164
`dash_bio` = structure(list(name = "dash_bio",
165-
version = "1.0.0", src = list(href = NULL,
165+
version = "1.0.1", src = list(href = NULL,
166166
file = "deps"), meta = NULL,
167167
script = 'bundle.js.map',
168168
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
169169
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
170170
`dash_bio-shared` = structure(list(name = "dash_bio-shared",
171-
version = "1.0.0", src = list(href = NULL,
171+
version = "1.0.1", src = list(href = NULL,
172172
file = "deps"), meta = NULL,
173173
script = 'dash_bio-shared.js',
174174
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",
175175
all_files = FALSE, async = TRUE), class = "html_dependency"),
176176
`dash_bio-shared` = structure(list(name = "dash_bio-shared",
177-
version = "1.0.0", src = list(href = NULL,
177+
version = "1.0.1", src = list(href = NULL,
178178
file = "deps"), meta = NULL,
179179
script = 'dash_bio-shared.js.map',
180180
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashBio",

0 commit comments

Comments
 (0)