phyloio 2.0.0 → 2.0.1
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 +3 -3
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Phylo.io
|
|
2
2
|
A web app and library for visualising and comparing phylogenetic trees.
|
|
3
3
|
|
|
4
|
-
##Demo
|
|
4
|
+
## Demo
|
|
5
5
|
The app can be accessed at [beta.phylo.io](https://beta.phylo.io/).
|
|
6
6
|
|
|
7
|
-
##Quick Start
|
|
7
|
+
## Quick Start
|
|
8
8
|
**Easy:** import directly the phylo.js from CDN. It contains all phylo.io requires (.js, .css and font/icons)
|
|
9
9
|
```html
|
|
10
10
|
<script src="https://cdn.jsdelivr.net/gh/DessimozLab/phylo-io@refactor/dist/phylo.js"></script>
|
|
@@ -21,7 +21,7 @@ Then, you just to need import the freshly built phylo.js
|
|
|
21
21
|
```
|
|
22
22
|
**Attention, it will also generate a folder named fonts that needs to be in the same folder as phylo.js**
|
|
23
23
|
|
|
24
|
-
##Initialisation
|
|
24
|
+
## Initialisation
|
|
25
25
|
First, you need to create an instance of PhyloIO:
|
|
26
26
|
```js
|
|
27
27
|
const phylo = PhyloIO.init()
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "phyloio",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "./node_modules/.bin/mocha test/testSuite.js",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"biojs-io-newick": "^1.5.0",
|
|
28
28
|
"bootstrap": "^5.1.2",
|
|
29
29
|
"d3": "6.6.0",
|
|
30
|
-
"d3-v6-tip": "^1.0.9"
|
|
30
|
+
"d3-v6-tip": "^1.0.9",
|
|
31
|
+
"phyloio": "^2.0.0"
|
|
31
32
|
}
|
|
32
33
|
}
|