com.kotmol.pdbParser.Molecule.kt Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2020 James Andreas
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*/
@file:Suppress(
"unused", "unused_variable", "unused_parameter", "UNUSED_ANONYMOUS_PARAMETER", "UNUSED_EXPRESSION",
"UnusedMainParameter",
"deprecation","MemberVisibilityCanBePrivate",
"FunctionWithLambdaExpressionBody",
"JoinDeclarationAndAssignment",
"CanBePrimaryConstructorProperty", "RemoveEmptyClassBody",
"ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE", "UNUSED_VALUE",
"ConstantConditionIf", "ReplaceSingleLineLet",
"ReplaceJavaStaticMethodWithKotlinAnalog",
"NestedLambdaShadowedImplicitParameter"
)
package com.kotmol.pdbParser
import java.util.*
class Molecule {
var molName: String = ""
val averagePosition = KotmolVector3()
var maxPostCenteringVectorMagnitude = 0.0f
var maxPostCenteringCoordinate = KotmolVector3()
val atomNumberList: MutableList = ArrayList()
val atomNumberToAtomInfoHash = HashMap()
var maxAtomNumber: Int = 0
//var maxCoordinate: Float = 0.0
val terRecordTest = HashMap()
val bondList: MutableList = ArrayList()
val helixList: MutableList = ArrayList()
val pdbSheetList: MutableList = ArrayList()
val listofChainDescriptorLists: MutableList> = ArrayList()
private val listofDnaHelixChainLists: MutableList> = ArrayList()
var ribbonNodeCount = 0
var unbondedAtomCount = 0
var hasAlternateLocations = false
var guideAtomMissing = false
// TODO: parse multiple MODELs
/*
* this is a placeholder for the API to hold an array of additional MODELs
* as defined in an NMR type PDB file. If this is implemented, then
* the additional MODELs would appear here as a list of additional Molecules()
*/
val modelArray: MutableList? = null
val modelNumber : Int? = null
/*
* list of ribbons to render
* pretty simple just yet
*/
var listofRibbonLists: List> = ArrayList()
fun clearLists() {
maxAtomNumber = 0
atomNumberList.clear()
atomNumberToAtomInfoHash.clear()
bondList.clear()
helixList.clear()
pdbSheetList.clear()
listofChainDescriptorLists.clear()
listofDnaHelixChainLists.clear()
ribbonNodeCount = 0
modelArray?.clear()
}
}
enum class BondType {
BONDTABLE, CONECT
}
class Bond(val atomNumber1: Int, val atomNumber2: Int, var type: BondType = BondType.BONDTABLE)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy