genoverse 4.0.4 → 4.0.7

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/index.html CHANGED
@@ -14,7 +14,7 @@
14
14
  </style>
15
15
  </head>
16
16
  <body>
17
- <a class="fork" href="https://github.com/wtsi-web/Genoverse" target="_blank"><img src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub"></a>
17
+ <a class="fork" href="https://github.com/WTSI-decipher-grp/Genoverse" target="_blank"><img src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub"></a>
18
18
  <div class="container">
19
19
  <div class="head"><h1>Genoverse - interactive HTML5 genome browser</h1></div>
20
20
  <div class="wrap">
@@ -25,7 +25,7 @@
25
25
  <p>Data is visualized in the browser, meaning Genoverse can be installed on any website and show data from a wide range of online or local sources.</p>
26
26
  <p>Genoverse works with a variety of formats, such as XML, JSON, GFF, GFF3, BED (try drag-n-drop one), and can be customized to parse and display any data source as required.</p>
27
27
 
28
- <p class="help">If you have any questions or need help, please raise an issue at <a href="https://github.com/wtsi-web/Genoverse" target="_blank">https://github.com/wtsi-web/Genoverse</a></p>
28
+ <p class="help">If you have any questions or need help, please raise an issue at <a href="https://github.com/WTSI-decipher-grp/Genoverse" target="_blank">https://github.com/WTSI-decipher-grp/Genoverse</a></p>
29
29
  </div>
30
30
  </div>
31
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genoverse",
3
- "version": "4.0.4",
3
+ "version": "4.0.7",
4
4
  "description": "Genoverse is a portable, customizable, back-end independent JavaScript and HTML5 based genome browser which allows the user to explore data in a dynamic and interactive manner.",
5
5
  "main": "src/js/Genoverse.js",
6
6
  "directories": {
@@ -16,14 +16,14 @@
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",
19
- "url": "git+https://github.com/wtsi-web/Genoverse.git"
19
+ "url": "git+https://github.com/WTSI-decipher-grp/Genoverse.git"
20
20
  },
21
21
  "author": "Simon Brent",
22
22
  "license": "BSD-3-Clause",
23
23
  "bugs": {
24
- "url": "https://github.com/wtsi-web/Genoverse/issues"
24
+ "url": "https://github.com/WTSI-decipher-grp/Genoverse/issues"
25
25
  },
26
- "homepage": "https://wtsi-web.github.io/Genoverse/",
26
+ "homepage": "https://wtsi-decipher-grp.github.io/Genoverse/",
27
27
  "devDependencies": {
28
28
  "@babel/core": "^7.17.2",
29
29
  "@babel/eslint-parser": "^7.17.0",
@@ -1,7 +1,7 @@
1
1
  import Model from '../Sequence';
2
2
 
3
3
  export default Model.extend({
4
- url: 'https://wtsi-web.github.io/Genoverse/data/Homo_sapiens.GRCh37.72.dna.chromosome.1.fa', // Example url
4
+ url: 'https://wtsi-decipher-grp.github.io/Genoverse/data/Homo_sapiens.GRCh37.72.dna.chromosome.1.fa', // Example url
5
5
 
6
6
  // Following settings could be left undefined and will be detected automatically via .getStartByte()
7
7
  startByte : undefined, // Byte in the file where the sequence actually starts
@@ -349,7 +349,7 @@ const plugin = function (pluginConf) {
349
349
  },
350
350
 
351
351
  afterAddDomElements: function () {
352
- this.wrapper.after('<div class="gv-powered-by">Powered by <a target="_blank" href="https://wtsi-web.github.io/Genoverse/">Genoverse</a></div>');
352
+ this.wrapper.after('<div class="gv-powered-by">Powered by <a target="_blank" href="https://wtsi-decipher-grp.github.io/Genoverse/">Genoverse</a></div>');
353
353
  this.superContainer.find('.gv-panel-left').append(this.labelContainer);
354
354
  },
355
355