@jbrowse/plugin-legacy-jbrowse 2.6.2 → 2.6.3
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.
|
@@ -6,8 +6,9 @@ const jb1ToJb2 = { seq_id: 'refName' };
|
|
|
6
6
|
* wrapper to adapt nclist features to act like jbrowse 2 features
|
|
7
7
|
*/
|
|
8
8
|
class NCListFeature {
|
|
9
|
+
constructor(
|
|
9
10
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
10
|
-
|
|
11
|
+
ncFeature, parent, id) {
|
|
11
12
|
this.ncFeature = ncFeature;
|
|
12
13
|
this.uniqueId = id || ncFeature.id();
|
|
13
14
|
this.parentHandle = parent;
|
|
@@ -4,8 +4,9 @@ const jb1ToJb2 = { seq_id: 'refName' };
|
|
|
4
4
|
* wrapper to adapt nclist features to act like jbrowse 2 features
|
|
5
5
|
*/
|
|
6
6
|
export default class NCListFeature {
|
|
7
|
+
constructor(
|
|
7
8
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
8
|
-
|
|
9
|
+
ncFeature, parent, id) {
|
|
9
10
|
this.ncFeature = ncFeature;
|
|
10
11
|
this.uniqueId = id || ncFeature.id();
|
|
11
12
|
this.parentHandle = parent;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-legacy-jbrowse",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.3",
|
|
4
4
|
"description": "JBrowse 2 plugin for connecting to and reading JBrowse 1 data",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"distModule": "esm/index.js",
|
|
56
56
|
"srcModule": "src/index.ts",
|
|
57
57
|
"module": "esm/index.js",
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "ed402c87efb0904858d602c363bd1757d5742129"
|
|
59
59
|
}
|