Home
last modified time | relevance | path

Searched refs:getMatrixIndex (Results 1 – 13 of 13) sorted by relevance

/dports/biology/jalview/jalview/test/jalview/analysis/scoremodels/
H A DScoreMatrixTest.java45 assertEquals(sm.getMatrixIndex('c'), 2); in testConstructor()
46 assertEquals(sm.getMatrixIndex(' '), -1); in testConstructor()
167 assertEquals(sm.getMatrixIndex('A'), 0); in testGetMatrixIndex()
168 assertEquals(sm.getMatrixIndex('R'), 1); in testGetMatrixIndex()
169 assertEquals(sm.getMatrixIndex('r'), 1); in testGetMatrixIndex()
170 assertEquals(sm.getMatrixIndex('N'), 2); in testGetMatrixIndex()
171 assertEquals(sm.getMatrixIndex('D'), 3); in testGetMatrixIndex()
172 assertEquals(sm.getMatrixIndex('X'), 22); in testGetMatrixIndex()
173 assertEquals(sm.getMatrixIndex('x'), 22); in testGetMatrixIndex()
174 assertEquals(sm.getMatrixIndex('-'), -1); in testGetMatrixIndex()
[all …]
/dports/biology/emboss/EMBOSS-6.6.0/jemboss/org/emboss/jemboss/editor/
H A DConsensus.java164 m1 = mat.getMatrixIndex(s1); in calculateCons()
171 m2 = mat.getMatrixIndex(s2); in calculateCons()
200 m1 = mat.getMatrixIndex(s1); in calculateCons()
220 m2 = mat.getMatrixIndex(s2); in calculateCons()
234 m1 = mat.getMatrixIndex(s1); in calculateCons()
246 m1 = mat.getMatrixIndex(s1); in calculateCons()
262 m1 = mat.getMatrixIndex(s1); in calculateCons()
277 m1 = mat.getMatrixIndex(s1); in calculateCons()
H A DPlotConsensus.java179 m1 = mat.getMatrixIndex(s1); in createPlot()
183 m2 = mat.getMatrixIndex(s2); in createPlot()
H A DMatrix.java309 public int getMatrixIndex(String s) in getMatrixIndex() method in Matrix
H A DGraphicSequenceCollection.java457 int m1 = mat.getMatrixIndex(s); in getColor()
472 int m2 = mat.getMatrixIndex(seq.getResidue(pos)); in getColor()
/dports/science/plumed/plumed2-2.7.2/src/ves/
H A DCoeffsMatrix.cpp200 size_t CoeffsMatrix::getMatrixIndex(const size_t index1, const size_t index2) const { in getMatrixIndex() function in PLMD::ves::CoeffsMatrix
234 return data[getMatrixIndex(index1,index2)]; in getValue()
244 data[getMatrixIndex(index1,index2)]=value; in setValue()
254 return data[getMatrixIndex(index1,index2)]; in operator ()()
259 return data[getMatrixIndex(index1,index2)]; in operator ()()
264 return data[getMatrixIndex(getIndex(indices1),getIndex(indices2))]; in operator ()()
269 return data[getMatrixIndex(getIndex(indices1),getIndex(indices2))]; in operator ()()
295 data[getMatrixIndex(index1,index2)]+=value; in addToValue()
H A DCoeffsMatrix.h117 size_t getMatrixIndex(const size_t, const size_t) const;
H A DVesBias.h308 …nst unsigned int coeffs_id) const {return hessian_pntrs_[coeffs_id]->getMatrixIndex(index1,index2)… in getHessianIndex()
/dports/biology/jalview/jalview/src/jalview/analysis/scoremodels/
H A DScoreMatrix.java312 public int getMatrixIndex(char c) in getMatrixIndex() method in ScoreMatrix
/dports/graphics/opencollada/OpenCOLLADA-1.6.68/COLLADAMax/include/
H A DCOLLADAMaxAnimationExporter.h179 int getMatrixIndex() const in getMatrixIndex() function
/dports/graphics/opencollada/OpenCOLLADA-1.6.68/COLLADAMax/src/
H A DCOLLADAMaxAnimationExporter.cpp991 if ( animation.getMatrixIndex() < 0) in getBaseId()
998 baseId += "_" + COLLADASW::Utils::toString(animation.getMatrixIndex()) + "_"; in getBaseId()
1014 if ( animation.getMatrixIndex() < 0) in getTarget()
1021 target += "(" + COLLADASW::Utils::toString(animation.getMatrixIndex()) + ")"; in getTarget()
/dports/biology/jalview/jalview/src/jalview/analysis/
H A DConservation.java229 sqnum[j] = sm.getMatrixIndex(residue); in calcSeqNum()
H A DAlignSeq.java778 encoded[i] = scoreMatrix.getMatrixIndex(c); in indexEncode()