Skip to content

Commit

Permalink
Update hdfIndexedReader to fix #1788
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Jul 3, 2024
1 parent 013c43c commit 079641a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ Below are examples and a quickstart guide. See the [Wiki](https://github.com/ig

# Examples

***[Alignments](https://igv.org/web/release/2.15.12/examples/cram-vcf.html)***
***[Alignments](https://igv.org/web/release/2.15.13/examples/cram-vcf.html)***

***[Interactions](https://igv.org/web/release/2.15.12/examples/interact.html)***
***[Interactions](https://igv.org/web/release/2.15.13/examples/interact.html)***

***[Copy number](https://igv.org/web/release/2.15.12/examples/copyNumber.html)***
***[Copy number](https://igv.org/web/release/2.15.13/examples/copyNumber.html)***

***[Multiple regions](https://igv.org/web/release/2.15.12/examples/multi-locus.html)***
***[Multiple regions](https://igv.org/web/release/2.15.13/examples/multi-locus.html)***

***[Mutation Annotation Format (MAF)](https://igv.org/web/release/2.15.12/examples/maf-tcga.html)***
***[Mutation Annotation Format (MAF)](https://igv.org/web/release/2.15.13/examples/maf-tcga.html)***

***[Variant color options](https://igv.org/web/release/2.15.12/examples/variant-colors.html)***
***[Variant color options](https://igv.org/web/release/2.15.13/examples/variant-colors.html)***

***[More](https://igv.org/web/release/2.15.12/examples/)***
***[More](https://igv.org/web/release/2.15.13/examples/)***


# Quickstart
Expand All @@ -39,18 +39,18 @@ Below are examples and a quickstart guide. See the [Wiki](https://github.com/ig
igv.js consists of a single javascript file with no external dependencies.

Pre-built files for script include, AMD, or CJS module systems (igv.min.js) and an ES6 module (igv.esm.min.js)
can be downloaded from [https://cdn.jsdelivr.net/npm/[email protected].12/dist/](https://cdn.jsdelivr.net/npm/[email protected].12/dist/).
can be downloaded from [https://cdn.jsdelivr.net/npm/[email protected].13/dist/](https://cdn.jsdelivr.net/npm/[email protected].13/dist/).

To import igv as an ES6 module

```javascript
import igv from "https://cdn.jsdelivr.net/npm/[email protected].12/dist/igv.esm.min.js"
import igv from "https://cdn.jsdelivr.net/npm/[email protected].13/dist/igv.esm.min.js"
```

Or as a script include (defines the "igv" global)

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].12/dist/igv.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].13/dist/igv.min.js"></script>
```

Alternatively you can install with npm
Expand Down
2 changes: 1 addition & 1 deletion js/version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const _version = "2.15.12"
const _version = "2.15.13"
function version() {
return _version
}
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "igv",
"version": "2.15.12",
"version": "2.15.13",
"main": "dist/igv.esm.js",
"browser": "dist/igv.js",
"module": "dist/igv.esm.js",
Expand Down Expand Up @@ -43,7 +43,6 @@
},
"browserslist": "> 1%, not dead",
"devDependencies": {
"html2canvas": "^1.4.1",
"@rollup/plugin-strip": "^3.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@xmldom/xmldom": "^0.7.9",
Expand All @@ -52,9 +51,10 @@
"chai": "^4.3.7",
"circular-view": "github:igvteam/circular-view#v0.2.4",
"eslint": "^6.4.0",
"hdf5-indexed-reader": "github:jrobinso/hdf5-indexed-reader#v0.5.2",
"hdf5-indexed-reader": "github:jrobinso/hdf5-indexed-reader#v0.5.6",
"html2canvas": "^1.4.1",
"igv-ui": "github:igvteam/igv-ui#v1.5.2",
"igv-utils": "github:igvteam/igv-utils#v1.4.8",
"igv-utils": "github:igvteam/igv-utils#v1.5.8",
"mocha": "^10.2.0",
"rollup": "^2.66.0",
"rollup-plugin-copy": "^3.3.0",
Expand Down

0 comments on commit 079641a

Please sign in to comment.