igv 2.9.4 → 2.10.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.
- package/README.md +24 -18
- package/dist/igv.esm.js +15959 -19198
- package/dist/igv.esm.min.js +9 -7
- package/dist/igv.esm.min.js.map +1 -1
- package/dist/igv.js +17936 -20570
- package/dist/igv.min.js +10 -8
- package/dist/igv.min.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -8,40 +8,44 @@
|
|
|
8
8
|
igv.js is an embeddable interactive genome visualization component developed by the
|
|
9
9
|
[Integrative Genomics Viewer (IGV)](https://igv.org) team.
|
|
10
10
|
|
|
11
|
-
Below are examples and a quickstart guide.
|
|
12
|
-
See the [Wiki](https://github.com/igvteam/igv.js/wiki) for more documentation.
|
|
11
|
+
Below are examples and a quickstart guide. See the [Wiki](https://github.com/igvteam/igv.js/wiki) for more documentation.
|
|
13
12
|
|
|
14
|
-
[Release Notes](https://github.com/igvteam/igv.js/releases)
|
|
15
|
-
|
|
16
|
-
|
|
17
13
|
# Examples
|
|
18
14
|
|
|
19
|
-
***[Alignments](https://igv.org/web/release/2.
|
|
15
|
+
***[Alignments](https://igv.org/web/release/2.10.3/examples/cram-vcf.html)***
|
|
20
16
|
|
|
21
|
-
***[Interactions](https://igv.org/web/release/2.
|
|
17
|
+
***[Interactions](https://igv.org/web/release/2.10.3/examples/interact.html)***
|
|
22
18
|
|
|
23
|
-
***[Copy number](https://igv.org/web/release/2.
|
|
19
|
+
***[Copy number](https://igv.org/web/release/2.10.3/examples/copyNumber.html)***
|
|
24
20
|
|
|
25
|
-
***[Multiple regions](https://igv.org/web/release/2.
|
|
21
|
+
***[Multiple regions](https://igv.org/web/release/2.10.3/examples/multi-locus.html)***
|
|
26
22
|
|
|
27
|
-
***[Mutation Annotation Format (MAF)](https://igv.org/web/release/2.
|
|
23
|
+
***[Mutation Annotation Format (MAF)](https://igv.org/web/release/2.10.3/examples/maf-tcga.html)***
|
|
28
24
|
|
|
29
|
-
***[Variant color options](https://igv.org/web/release/2.
|
|
25
|
+
***[Variant color options](https://igv.org/web/release/2.10.3/examples/variant-colors.html)***
|
|
30
26
|
|
|
31
|
-
***[More](https://igv.org/web/release/2.
|
|
27
|
+
***[More](https://igv.org/web/release/2.10.3/examples/)***
|
|
32
28
|
|
|
33
29
|
|
|
34
30
|
# Quickstart
|
|
35
31
|
|
|
36
32
|
## Installation
|
|
37
|
-
igv.js consists of a single javascript file with no external dependencies.
|
|
33
|
+
igv.js consists of a single javascript file with no external dependencies.
|
|
38
34
|
|
|
39
|
-
|
|
40
|
-
|
|
35
|
+
Pre-built files for ES5 (igv.min.js) and ES6 (igv.esm.min.js)
|
|
36
|
+
can be downloaded from [https://cdn.jsdelivr.net/npm/igv@2.10.3/dist/](https://cdn.jsdelivr.net/npm/igv@2.10.3/dist/).
|
|
37
|
+
|
|
38
|
+
To import igv as an ES6 module
|
|
39
|
+
|
|
40
|
+
```javascript
|
|
41
|
+
import igv from "https://cdn.jsdelivr.net/npm/igv@2.10.3/dist/igv.es6.min.js"
|
|
41
42
|
```
|
|
42
43
|
|
|
43
|
-
|
|
44
|
-
|
|
44
|
+
Or as a script include (defines the "igv" global)
|
|
45
|
+
|
|
46
|
+
```html
|
|
47
|
+
<script src="https://cdn.jsdelivr.net/npm/igv@2.10.3/dist/igv.min.js"></script>
|
|
48
|
+
```
|
|
45
49
|
|
|
46
50
|
Alternatively you can install with npm
|
|
47
51
|
|
|
@@ -154,6 +158,8 @@ igv.js require a modern web browser with support for Javascript ECMAScript 2015.
|
|
|
154
158
|
|
|
155
159
|
igv.js is [MIT](/LICENSE) licensed.
|
|
156
160
|
|
|
157
|
-
# [_Release Notes_](https://github.com/igvteam/igv.js/releases)
|
|
158
161
|
|
|
159
162
|
|
|
163
|
+
### [Release Notes](https://github.com/igvteam/igv.js/releases)
|
|
164
|
+
|
|
165
|
+
|