icn3d 3.25.4 → 3.25.5
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/icn3d.js +4 -0
- package/icn3d.min.js +1 -1
- package/icn3d.module.js +4 -0
- package/package.json +1 -1
package/icn3d.js
CHANGED
|
@@ -42098,6 +42098,10 @@ class ShowSeq {
|
|
|
42098
42098
|
if(strandArray[strandCnt].anchorRefnum) { // use anchor to name refnum
|
|
42099
42099
|
if(currResi == strandArray[strandCnt].startResi) {
|
|
42100
42100
|
refnumInStrand = strandArray[strandCnt].anchorRefnum - strandArray[strandCnt].resCntBfAnchor;
|
|
42101
|
+
strandArray[strandCnt].startRefnum = refnumInStrand;
|
|
42102
|
+
}
|
|
42103
|
+
else if(currResi == strandArray[strandCnt].endResi) {
|
|
42104
|
+
strandArray[strandCnt].endRefnum = refnumInStrand;
|
|
42101
42105
|
}
|
|
42102
42106
|
|
|
42103
42107
|
refnumLabelNoPostfix = strandArray[strandCnt].strand + refnumInStrand;
|