gramene-search 1.2.31 → 1.2.32
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/.parcel-cache/2b1c1cd7b577d2ca.txt +2 -2
- package/.parcel-cache/687f8a990313aa2f.txt +2 -0
- package/.parcel-cache/data.mdb +0 -0
- package/.parcel-cache/lock.mdb +0 -0
- package/dist/index.d2bab208.js +9 -7
- package/dist/index.d2bab208.js.map +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/results/details/Homology.js +5 -1
package/package.json
CHANGED
|
@@ -99,10 +99,14 @@ class Homology extends React.Component {
|
|
|
99
99
|
})
|
|
100
100
|
.values()
|
|
101
101
|
.flatten()
|
|
102
|
+
.uniq()
|
|
102
103
|
.value();
|
|
103
104
|
|
|
104
105
|
if (!_.isEmpty(homologs)) {
|
|
105
|
-
homologs.
|
|
106
|
+
if (!homologs.includes(thisGeneId)) {
|
|
107
|
+
console.log("add to homologs list",thisGeneId);
|
|
108
|
+
homologs.push(thisGeneId);
|
|
109
|
+
}
|
|
106
110
|
return homologs; // only return something if we have something. We're testing for truthiness later.
|
|
107
111
|
}
|
|
108
112
|
}
|