@jbrowse/plugin-spreadsheet-view 2.8.0 → 2.10.0
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.
|
@@ -8,14 +8,14 @@ const vcf_1 = __importDefault(require("@gmod/vcf"));
|
|
|
8
8
|
const plugin_variants_1 = require("@jbrowse/plugin-variants");
|
|
9
9
|
const ImportUtils_1 = require("./ImportUtils");
|
|
10
10
|
const vcfCoreColumns = [
|
|
11
|
-
{ name: 'CHROM', type: 'Text' },
|
|
12
|
-
{ name: 'POS', type: 'Number' },
|
|
13
|
-
{ name: 'ID', type: 'Text' },
|
|
14
|
-
{ name: 'REF', type: 'Text' },
|
|
15
|
-
{ name: 'ALT', type: 'Text' },
|
|
16
|
-
{ name: 'QUAL', type: 'Number' },
|
|
17
|
-
{ name: 'FILTER', type: 'Text' },
|
|
18
|
-
{ name: 'INFO', type: 'Text' },
|
|
11
|
+
{ name: 'CHROM', type: 'Text' }, // 0
|
|
12
|
+
{ name: 'POS', type: 'Number' }, // 1
|
|
13
|
+
{ name: 'ID', type: 'Text' }, // 2
|
|
14
|
+
{ name: 'REF', type: 'Text' }, // 3
|
|
15
|
+
{ name: 'ALT', type: 'Text' }, // 4
|
|
16
|
+
{ name: 'QUAL', type: 'Number' }, // 5
|
|
17
|
+
{ name: 'FILTER', type: 'Text' }, // 6
|
|
18
|
+
{ name: 'INFO', type: 'Text' }, // 7
|
|
19
19
|
{ name: 'FORMAT', type: 'Text' }, // 8
|
|
20
20
|
];
|
|
21
21
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
@@ -2,14 +2,14 @@ import VCF from '@gmod/vcf';
|
|
|
2
2
|
import { VcfFeature } from '@jbrowse/plugin-variants';
|
|
3
3
|
import { bufferToString, } from './ImportUtils';
|
|
4
4
|
const vcfCoreColumns = [
|
|
5
|
-
{ name: 'CHROM', type: 'Text' },
|
|
6
|
-
{ name: 'POS', type: 'Number' },
|
|
7
|
-
{ name: 'ID', type: 'Text' },
|
|
8
|
-
{ name: 'REF', type: 'Text' },
|
|
9
|
-
{ name: 'ALT', type: 'Text' },
|
|
10
|
-
{ name: 'QUAL', type: 'Number' },
|
|
11
|
-
{ name: 'FILTER', type: 'Text' },
|
|
12
|
-
{ name: 'INFO', type: 'Text' },
|
|
5
|
+
{ name: 'CHROM', type: 'Text' }, // 0
|
|
6
|
+
{ name: 'POS', type: 'Number' }, // 1
|
|
7
|
+
{ name: 'ID', type: 'Text' }, // 2
|
|
8
|
+
{ name: 'REF', type: 'Text' }, // 3
|
|
9
|
+
{ name: 'ALT', type: 'Text' }, // 4
|
|
10
|
+
{ name: 'QUAL', type: 'Number' }, // 5
|
|
11
|
+
{ name: 'FILTER', type: 'Text' }, // 6
|
|
12
|
+
{ name: 'INFO', type: 'Text' }, // 7
|
|
13
13
|
{ name: 'FORMAT', type: 'Text' }, // 8
|
|
14
14
|
];
|
|
15
15
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jbrowse/plugin-spreadsheet-view",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.10.0",
|
|
4
4
|
"description": "JBrowse 2 spreadsheet view",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jbrowse",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@gmod/bgzf-filehandle": "^1.4.3",
|
|
40
40
|
"@gmod/vcf": "^5.0.9",
|
|
41
|
-
"@jbrowse/plugin-variants": "^2.
|
|
41
|
+
"@jbrowse/plugin-variants": "^2.10.0",
|
|
42
42
|
"@mui/icons-material": "^5.0.1",
|
|
43
43
|
"csvtojson": "^2.0.10"
|
|
44
44
|
},
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"publishConfig": {
|
|
61
61
|
"access": "public"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "223d8bfb68fd1bacaf22852639ad5920f1b7f43b"
|
|
64
64
|
}
|