protvista-uniprot 4.6.3 → 4.6.4
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/package.json
CHANGED
|
@@ -200,11 +200,13 @@ const processAFData = (
|
|
|
200
200
|
({ sequence }) => d.sequence === sequence
|
|
201
201
|
);
|
|
202
202
|
|
|
203
|
-
const isCanonical = isoformMatch.sequence === canonicalSequence;
|
|
204
203
|
const isoformElement = isoformMatch
|
|
205
204
|
? html`<a
|
|
206
205
|
href="${uniprotKBLink}${accession}/entry#${isoformMatch.isoformId}"
|
|
207
|
-
>${isoformMatch.isoformId}
|
|
206
|
+
>${isoformMatch.isoformId}
|
|
207
|
+
${isoformMatch.sequence === canonicalSequence
|
|
208
|
+
? '(Canonical)'
|
|
209
|
+
: ''}</a
|
|
208
210
|
>`
|
|
209
211
|
: null;
|
|
210
212
|
return {
|