@teselagen/ove 0.5.24 → 0.5.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs.js +2 -2
- package/index.es.js +2 -2
- package/index.umd.js +2 -2
- package/package.json +3 -3
package/index.cjs.js
CHANGED
|
@@ -80996,7 +80996,7 @@ const calcTmMethods = {
|
|
|
80996
80996
|
* return - Temperature for the given sequence, in Celsius.
|
|
80997
80997
|
*/
|
|
80998
80998
|
calculateTemperature: function(_sequence, { type: type2, A: A2, R: R2, primerConc, monovalentCationConc } = {}) {
|
|
80999
|
-
const sequence2 = _sequence.toLowerCase();
|
|
80999
|
+
const sequence2 = (_sequence || "").toLowerCase();
|
|
81000
81000
|
if (typeof type2 === "undefined") {
|
|
81001
81001
|
type2 = this.TABLE_BRESLAUER;
|
|
81002
81002
|
} else if (type2 != this.TABLE_BRESLAUER && type2 != this.TABLE_UNIFIED && type2 != this.TABLE_SUGIMOTO) {
|
|
@@ -122407,7 +122407,7 @@ function showFileDialog({ multiple = false, onSelect }) {
|
|
|
122407
122407
|
}
|
|
122408
122408
|
__name(showFileDialog, "showFileDialog");
|
|
122409
122409
|
const name = "@teselagen/ove";
|
|
122410
|
-
const version = "0.5.
|
|
122410
|
+
const version = "0.5.24";
|
|
122411
122411
|
const main = "./src/index.js";
|
|
122412
122412
|
const type = "module";
|
|
122413
122413
|
const exports$1 = {
|
package/index.es.js
CHANGED
|
@@ -80978,7 +80978,7 @@ const calcTmMethods = {
|
|
|
80978
80978
|
* return - Temperature for the given sequence, in Celsius.
|
|
80979
80979
|
*/
|
|
80980
80980
|
calculateTemperature: function(_sequence, { type: type2, A: A2, R: R2, primerConc, monovalentCationConc } = {}) {
|
|
80981
|
-
const sequence2 = _sequence.toLowerCase();
|
|
80981
|
+
const sequence2 = (_sequence || "").toLowerCase();
|
|
80982
80982
|
if (typeof type2 === "undefined") {
|
|
80983
80983
|
type2 = this.TABLE_BRESLAUER;
|
|
80984
80984
|
} else if (type2 != this.TABLE_BRESLAUER && type2 != this.TABLE_UNIFIED && type2 != this.TABLE_SUGIMOTO) {
|
|
@@ -122389,7 +122389,7 @@ function showFileDialog({ multiple = false, onSelect }) {
|
|
|
122389
122389
|
}
|
|
122390
122390
|
__name(showFileDialog, "showFileDialog");
|
|
122391
122391
|
const name = "@teselagen/ove";
|
|
122392
|
-
const version = "0.5.
|
|
122392
|
+
const version = "0.5.24";
|
|
122393
122393
|
const main = "./src/index.js";
|
|
122394
122394
|
const type = "module";
|
|
122395
122395
|
const exports$1 = {
|
package/index.umd.js
CHANGED
|
@@ -110101,7 +110101,7 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
110101
110101
|
* return - Temperature for the given sequence, in Celsius.
|
|
110102
110102
|
*/
|
|
110103
110103
|
calculateTemperature: function(_sequence, { type: type2, A: A2, R: R2, primerConc, monovalentCationConc } = {}) {
|
|
110104
|
-
const sequence2 = _sequence.toLowerCase();
|
|
110104
|
+
const sequence2 = (_sequence || "").toLowerCase();
|
|
110105
110105
|
if (typeof type2 === "undefined") {
|
|
110106
110106
|
type2 = this.TABLE_BRESLAUER;
|
|
110107
110107
|
} else if (type2 != this.TABLE_BRESLAUER && type2 != this.TABLE_UNIFIED && type2 != this.TABLE_SUGIMOTO) {
|
|
@@ -150883,7 +150883,7 @@ Part of ${annotation.translationType} Translation from BPs ${annotation.start +
|
|
|
150883
150883
|
}
|
|
150884
150884
|
__name(showFileDialog, "showFileDialog");
|
|
150885
150885
|
const name = "@teselagen/ove";
|
|
150886
|
-
const version = "0.5.
|
|
150886
|
+
const version = "0.5.24";
|
|
150887
150887
|
const main = "./src/index.js";
|
|
150888
150888
|
const type = "module";
|
|
150889
150889
|
const exports$1 = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teselagen/ove",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.25",
|
|
4
4
|
"main": "./src/index.js",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
"./style.css": "./style.css"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@teselagen/sequence-utils": "0.3.
|
|
13
|
+
"@teselagen/sequence-utils": "0.3.27",
|
|
14
14
|
"@teselagen/range-utils": "0.3.7",
|
|
15
15
|
"@teselagen/ui": "0.4.18",
|
|
16
16
|
"@teselagen/file-utils": "0.3.16",
|
|
17
17
|
"@teselagen/bounce-loader": "0.3.11",
|
|
18
|
-
"@teselagen/bio-parsers": "0.4.
|
|
18
|
+
"@teselagen/bio-parsers": "0.4.22",
|
|
19
19
|
"@blueprintjs/core": "3.52.0",
|
|
20
20
|
"@blueprintjs/datetime": "3.23.19",
|
|
21
21
|
"@blueprintjs/icons": "3.33.0",
|