@apollo-annotation/jbrowse-plugin-apollo 1.1.1 → 1.1.2
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/dist/index.esm.js +1 -1
- package/dist/jbrowse-plugin-apollo.cjs.development.js +1 -1
- package/dist/jbrowse-plugin-apollo.cjs.production.min.js +1 -1
- package/dist/jbrowse-plugin-apollo.umd.development.js +6 -1
- package/dist/jbrowse-plugin-apollo.umd.development.js.map +1 -1
- package/dist/jbrowse-plugin-apollo.umd.production.min.js +1 -1
- package/dist/jbrowse-plugin-apollo.umd.production.min.js.map +1 -1
- package/package.json +4 -4
|
@@ -6788,11 +6788,16 @@
|
|
|
6788
6788
|
var cdsFeatures = [];
|
|
6789
6789
|
var exonFeatures = [];
|
|
6790
6790
|
var utrFeatures = [];
|
|
6791
|
+
var seenChildFeatures = new Set();
|
|
6791
6792
|
var _iterator3 = _createForOfIteratorHelper(childFeatures),
|
|
6792
6793
|
_step3;
|
|
6793
6794
|
try {
|
|
6794
6795
|
for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {
|
|
6795
6796
|
var childFeature = _step3.value;
|
|
6797
|
+
if (seenChildFeatures.has(childFeature)) {
|
|
6798
|
+
continue;
|
|
6799
|
+
}
|
|
6800
|
+
seenChildFeatures.add(childFeature);
|
|
6796
6801
|
var _childFeature = _slicedToArray(childFeature, 1),
|
|
6797
6802
|
firstChildFeatureLocation = _childFeature[0];
|
|
6798
6803
|
if (firstChildFeatureLocation.type === 'exon') {
|
|
@@ -7115,7 +7120,7 @@
|
|
|
7115
7120
|
d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z"
|
|
7116
7121
|
}), 'Add');
|
|
7117
7122
|
|
|
7118
|
-
var version = "1.1.
|
|
7123
|
+
var version = "1.1.2";
|
|
7119
7124
|
|
|
7120
7125
|
const ApolloConfigSchema = configuration.ConfigurationSchema('ApolloInternetAccount', {
|
|
7121
7126
|
baseURL: {
|