Skip to content

Commit

Permalink
Update igv-utils to 2.15.10 to fix oAuth problem
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Jul 31, 2023
1 parent 55811d5 commit 3143625
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ igv.css.map
/dev/oauth/oauthConfigPrivate.js
/encode/
/dev/issues/globus_bigwig.html
/dev/oauth/blank.html
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.9/examples/cram-vcf.html)***
***[Alignments](https://igv.org/web/release/2.15.10/examples/cram-vcf.html)***

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

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

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

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

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

***[More](https://igv.org/web/release/2.15.9/examples/)***
***[More](https://igv.org/web/release/2.15.10/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].9/dist/](https://cdn.jsdelivr.net/npm/[email protected].9/dist/).
can be downloaded from [https://cdn.jsdelivr.net/npm/[email protected].10/dist/](https://cdn.jsdelivr.net/npm/[email protected].10/dist/).

To import igv as an ES6 module

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

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

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].9/dist/igv.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].10/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.9"
const _version = "2.15.10"
function version() {
return _version
}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "igv",
"version": "2.15.9",
"version": "2.15.10",
"main": "dist/igv.esm.js",
"browser": "dist/igv.js",
"module": "dist/igv.esm.js",
Expand Down Expand Up @@ -53,7 +53,7 @@
"eslint": "^6.4.0",
"hdf5-indexed-reader": "github:jrobinso/hdf5-indexed-reader#v0.5.2",
"igv-ui": "github:igvteam/igv-ui#v1.5.0",
"igv-utils": "github:igvteam/igv-utils#v1.4.7",
"igv-utils": "github:igvteam/igv-utils#v1.4.8",
"mocha": "^10.2.0",
"rollup": "^2.66.0",
"rollup-plugin-copy": "^3.3.0",
Expand Down

0 comments on commit 3143625

Please sign in to comment.