-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unit test maintenance.
- Loading branch information
Showing
8 changed files
with
16 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,19 +18,19 @@ Below are examples and a quickstart guide. See the [developer documentation](ht | |
|
||
# Examples | ||
|
||
***[Alignments](https://igv.org/web/release/3.0.5/examples/cram-vcf.html)*** | ||
***[Alignments](https://igv.org/web/release/3.0.6/examples/cram-vcf.html)*** | ||
|
||
***[Interactions](https://igv.org/web/release/3.0.5/examples/interact.html)*** | ||
***[Interactions](https://igv.org/web/release/3.0.6/examples/interact.html)*** | ||
|
||
***[Copy number](https://igv.org/web/release/3.0.5/examples/copyNumber.html)*** | ||
***[Copy number](https://igv.org/web/release/3.0.6/examples/copyNumber.html)*** | ||
|
||
***[Multiple regions](https://igv.org/web/release/3.0.5/examples/multi-locus.html)*** | ||
***[Multiple regions](https://igv.org/web/release/3.0.6/examples/multi-locus.html)*** | ||
|
||
***[Mutation Annotation Format (MAF)](https://igv.org/web/release/3.0.5/examples/maf-tcga.html)*** | ||
***[Mutation Annotation Format (MAF)](https://igv.org/web/release/3.0.6/examples/maf-tcga.html)*** | ||
|
||
***[Variant color options](https://igv.org/web/release/3.0.5/examples/variant-colors.html)*** | ||
***[Variant color options](https://igv.org/web/release/3.0.6/examples/variant-colors.html)*** | ||
|
||
***[More](https://igv.org/web/release/3.0.5/examples/)*** | ||
***[More](https://igv.org/web/release/3.0.6/examples/)*** | ||
|
||
|
||
# Quickstart | ||
|
@@ -39,18 +39,18 @@ Below are examples and a quickstart guide. See the [developer documentation](ht | |
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].5/dist/](https://cdn.jsdelivr.net/npm/[email protected].5/dist/). | ||
can be downloaded from [https://cdn.jsdelivr.net/npm/[email protected].6/dist/](https://cdn.jsdelivr.net/npm/[email protected].6/dist/). | ||
|
||
To import igv as an ES6 module | ||
|
||
```javascript | ||
import igv from "https://cdn.jsdelivr.net/npm/[email protected].5/dist/igv.esm.min.js" | ||
import igv from "https://cdn.jsdelivr.net/npm/[email protected].6/dist/igv.esm.min.js" | ||
``` | ||
|
||
Or as a script include (defines the "igv" global) | ||
|
||
```html | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].5/dist/igv.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected].6/dist/igv.min.js"></script> | ||
``` | ||
|
||
Alternatively you can install with npm | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
const _version = "3.0.5" | ||
const _version = "3.0.6" | ||
function version() { | ||
return _version | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters