Skip to content

Commit 0259448

Browse files
committed
bump
1 parent c72f5c8 commit 0259448

File tree

2 files changed

+66
-91
lines changed

2 files changed

+66
-91
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = ["hatchling"]
55

66
[project]
77
name = "visionpy-sc"
8-
version = "0.1.0"
8+
version = "0.2.0"
99
description = "Signature Analysis and Visualization for Single-Cell RNA-seq"
1010
readme = "README.md"
1111
requires-python = ">=3.8"

src/visionpy/static/thirdparty/plotly/plotly.min.js

+65-90
Original file line numberDiff line numberDiff line change
@@ -1088,14 +1088,12 @@
10881088
}
10891089
function Y(r) {
10901090
return (
1091-
r
1092-
.call(c.font, H)
1093-
.attr({
1094-
"text-anchor":
1095-
{ left: "start", right: "end" }[
1096-
e.align
1097-
] || "middle",
1098-
}),
1091+
r.call(c.font, H).attr({
1092+
"text-anchor":
1093+
{ left: "start", right: "end" }[
1094+
e.align
1095+
] || "middle",
1096+
}),
10991097
h.convertToTspans(r, t, W),
11001098
r
11011099
);
@@ -28575,12 +28573,10 @@
2857528573
(O += "-math"),
2857628574
P.selectAll("svg." + O).remove(),
2857728575
P.selectAll("g." + O + "-group").remove(),
28578-
t
28579-
.style("display", null)
28580-
.attr({
28581-
"data-unformatted": S,
28582-
"data-math": "N",
28583-
}),
28576+
t.style("display", null).attr({
28577+
"data-unformatted": S,
28578+
"data-math": "N",
28579+
}),
2858428580
E
2858528581
? ((r && r._promises) || []).push(
2858628582
new Promise(function (e) {
@@ -28934,12 +28930,10 @@
2893428930
o.svg,
2893528931
"tspan",
2893628932
);
28937-
n
28938-
.select(e)
28939-
.attr({
28940-
class: "line",
28941-
dy: u * s + "em",
28942-
}),
28933+
n.select(e).attr({
28934+
class: "line",
28935+
dy: u * s + "em",
28936+
}),
2894328937
t.appendChild(e),
2894428938
(r = e);
2894528939
var i = l;
@@ -48354,17 +48348,15 @@
4835448348
) {
4835548349
var i = e._plots[r[n]]._scene2d,
4835648350
a = i.toImage("png");
48357-
e._glimages
48358-
.append("svg:image")
48359-
.attr({
48360-
xmlns: o.svg,
48361-
"xlink:href": a,
48362-
x: 0,
48363-
y: 0,
48364-
width: "100%",
48365-
height: "100%",
48366-
preserveAspectRatio: "none",
48367-
}),
48351+
e._glimages.append("svg:image").attr({
48352+
xmlns: o.svg,
48353+
"xlink:href": a,
48354+
x: 0,
48355+
y: 0,
48356+
width: "100%",
48357+
height: "100%",
48358+
preserveAspectRatio: "none",
48359+
}),
4836848360
i.destroy();
4836948361
}
4837048362
}),
@@ -49134,17 +49126,15 @@
4913449126
o = a.domain,
4913549127
s = a._scene,
4913649128
u = s.toImage("png");
49137-
e._glimages
49138-
.append("svg:image")
49139-
.attr({
49140-
xmlns: l.svg,
49141-
"xlink:href": u,
49142-
x: n.l + n.w * o.x[0],
49143-
y: n.t + n.h * (1 - o.y[1]),
49144-
width: n.w * (o.x[1] - o.x[0]),
49145-
height: n.h * (o.y[1] - o.y[0]),
49146-
preserveAspectRatio: "none",
49147-
}),
49129+
e._glimages.append("svg:image").attr({
49130+
xmlns: l.svg,
49131+
"xlink:href": u,
49132+
x: n.l + n.w * o.x[0],
49133+
y: n.t + n.h * (1 - o.y[1]),
49134+
width: n.w * (o.x[1] - o.x[0]),
49135+
height: n.h * (o.y[1] - o.y[0]),
49136+
preserveAspectRatio: "none",
49137+
}),
4914849138
s.destroy();
4914949139
}
4915049140
}),
@@ -51536,17 +51526,15 @@
5153651526
var s = e[r[i]],
5153751527
h = s.domain,
5153851528
p = s._subplot.toImage("png");
51539-
e._glimages
51540-
.append("svg:image")
51541-
.attr({
51542-
xmlns: l.svg,
51543-
"xlink:href": p,
51544-
x: n.l + n.w * h.x[0],
51545-
y: n.t + n.h * (1 - h.y[1]),
51546-
width: n.w * (h.x[1] - h.x[0]),
51547-
height: n.h * (h.y[1] - h.y[0]),
51548-
preserveAspectRatio: "none",
51549-
});
51529+
e._glimages.append("svg:image").attr({
51530+
xmlns: l.svg,
51531+
"xlink:href": p,
51532+
x: n.l + n.w * h.x[0],
51533+
y: n.t + n.h * (1 - h.y[1]),
51534+
width: n.w * (h.x[1] - h.x[0]),
51535+
height: n.h * (h.y[1] - h.y[0]),
51536+
preserveAspectRatio: "none",
51537+
});
5155051538
var v = u.select(s._subplot.div);
5155151539
if (
5155251540
null !==
@@ -52939,13 +52927,11 @@
5293952927
.append("div")
5294052928
.attr("id", "hiddenform")
5294152929
.style("display", "none"),
52942-
i = r
52943-
.append("form")
52944-
.attr({
52945-
action: e + "/external",
52946-
method: "post",
52947-
target: "_blank",
52948-
});
52930+
i = r.append("form").attr({
52931+
action: e + "/external",
52932+
method: "post",
52933+
target: "_blank",
52934+
});
5294952935
return (
5295052936
(i
5295152937
.append("input")
@@ -64654,14 +64640,10 @@
6465464640
? i.identity
6465564641
: [],
6465664642
);
64657-
d
64658-
.enter()
64659-
.append("path")
64660-
.attr("class", "mean")
64661-
.style({
64662-
fill: "none",
64663-
"vector-effect": "non-scaling-stroke",
64664-
}),
64643+
d.enter().append("path").attr("class", "mean").style({
64644+
fill: "none",
64645+
"vector-effect": "non-scaling-stroke",
64646+
}),
6466564647
d.exit().remove(),
6466664648
d.each(function (t) {
6466764649
var e = u.c2l(t.pos + f, !0),
@@ -74178,13 +74160,10 @@
7417874160
(t._hmlumcount || 0) +
7417974161
ft * Dt.getLuminance());
7418074162
var zt = P.selectAll("image").data(e);
74181-
zt
74182-
.enter()
74183-
.append("svg:image")
74184-
.attr({
74185-
xmlns: d.svg,
74186-
preserveAspectRatio: "none",
74187-
}),
74163+
zt.enter().append("svg:image").attr({
74164+
xmlns: d.svg,
74165+
preserveAspectRatio: "none",
74166+
}),
7418874167
zt.attr({
7418974168
height: K,
7419074169
width: J,
@@ -77210,12 +77189,10 @@
7721077189
r.selectAll("image").data([]).exit().remove();
7721177190
else {
7721277191
var L = r.selectAll("image").data([e]);
77213-
L.enter()
77214-
.append("svg:image")
77215-
.attr({
77216-
xmlns: o.svg,
77217-
preserveAspectRatio: "none",
77218-
}),
77192+
L.enter().append("svg:image").attr({
77193+
xmlns: o.svg,
77194+
preserveAspectRatio: "none",
77195+
}),
7721977196
L.exit().remove();
7722077197
var C =
7722177198
!1 === u.zsmooth ? s.pixelatedStyle : "";
@@ -85005,15 +84982,13 @@
8500584982
A = s.rangefont,
8500684983
M = i.extendDeepNoArrays({}, u, {
8500784984
color: l.map(
85008-
n.scale
85009-
.linear()
85010-
.domain(
85011-
T({
85012-
values: l,
85013-
range: [f.min, f.max],
85014-
_length: s._length,
85015-
}),
85016-
),
84985+
n.scale.linear().domain(
84986+
T({
84987+
values: l,
84988+
range: [f.min, f.max],
84989+
_length: s._length,
84990+
}),
84991+
),
8501784992
),
8501884993
blockLineCount: m.blockLineCount,
8501984994
canvasOverdrag: m.overdrag * m.canvasPixelRatio,

0 commit comments

Comments
 (0)