biojs-vis-pdbviewer
Version:
A BioJS 2.0 component to view protein structures
91 lines (86 loc) • 2.93 kB
JavaScript
Clazz.declarePackage ("JM");
c$ = Clazz.decorateAsClass (function () {
this.model = null;
this.chainID = 0;
this.index = 0;
this.isDna = false;
this.isRna = false;
this.groupCount = 0;
this.groups = null;
this.selectedGroupCount = 0;
Clazz.instantialize (this, arguments);
}, JM, "Chain");
Clazz.prepareFields (c$, function () {
this.groups = new Array (16);
});
Clazz.defineMethod (c$, "getAtom",
function (index) {
return this.model.ms.at[index];
}, "~N");
Clazz.makeConstructor (c$,
function (model, chainID, index) {
this.model = model;
this.chainID = chainID;
this.index = index;
}, "JM.Model,~N,~N");
Clazz.defineMethod (c$, "getGroup",
function (groupIndex) {
return this.groups[groupIndex];
}, "~N");
Clazz.defineMethod (c$, "getGroupCount",
function () {
return this.groupCount;
});
Clazz.defineMethod (c$, "calcSelectedGroupsCount",
function (bsSelected) {
this.selectedGroupCount = 0;
for (var i = 0; i < this.groupCount; i++) this.groups[i].selectedIndex = (this.groups[i].isSelected (bsSelected) ? this.selectedGroupCount++ : -1);
}, "JU.BS");
Clazz.defineMethod (c$, "selectSeqcodeRange",
function (index0, seqcodeA, seqcodeB, bs) {
var seqcode;
var indexA;
var indexB;
var minDiff;
var isInexact = false;
for (indexA = index0; indexA < this.groupCount && this.groups[indexA].seqcode != seqcodeA; indexA++) {
}
if (indexA == this.groupCount) {
if (index0 > 0) return -1;
isInexact = true;
minDiff = 2147483647;
for (var i = this.groupCount; --i >= 0; ) if ((seqcode = this.groups[i].seqcode) > seqcodeA && (seqcode - seqcodeA) < minDiff) {
indexA = i;
minDiff = seqcode - seqcodeA;
}
if (minDiff == 2147483647) return -1;
}if (seqcodeB == 2147483647) {
indexB = this.groupCount - 1;
isInexact = true;
} else {
for (indexB = indexA; indexB < this.groupCount && this.groups[indexB].seqcode != seqcodeB; indexB++) {
}
if (indexB == this.groupCount) {
if (index0 > 0) return -1;
isInexact = true;
minDiff = 2147483647;
for (var i = indexA; i < this.groupCount; i++) if ((seqcode = this.groups[i].seqcode) < seqcodeB && (seqcodeB - seqcode) < minDiff) {
indexB = i;
minDiff = seqcodeB - seqcode;
}
if (minDiff == 2147483647) return -1;
}}for (var i = indexA; i <= indexB; ++i) this.groups[i].selectAtoms (bs);
return (isInexact ? -1 : indexB + 1);
}, "~N,~N,~N,JU.BS");
Clazz.defineMethod (c$, "fixIndices",
function (atomsDeleted, bsDeleted) {
for (var i = 0; i < this.groupCount; i++) this.groups[i].fixIndices (atomsDeleted, bsDeleted);
}, "~N,JU.BS");
Clazz.defineMethod (c$, "setAtomBitSet",
function (bs) {
for (var i = 0; i < this.groupCount; i++) this.groups[i].selectAtoms (bs);
}, "JU.BS");
Clazz.defineMethod (c$, "getIDStr",
function () {
return (this.chainID == 0 ? "" : this.chainID < 256 ? "" + String.fromCharCode (this.chainID) : this.model.ms.vwr.chainMap.get (Integer.$valueOf (this.chainID)));
});