Sequential storage of nucleotides' data (in 5' to 3' order)
Array storing global IDs of nucleotides paired to nucleotide at 'index' (or -1 if there is no existing pair)
Identification/index of relevant all-atom residue; -1 if no reference exists
Initialize the store
size to initialize
Initialize a field
field name
element size
data type, one of int8, int16, int32, uint8, uint16, uint32, float32
Add a field
field name
element size
data type, one of int8, int16, int32, uint8, uint16, uint32, float32
Empty the store
Copy data from one store to another
store to copy from
offset to start copying to
offset to start copying from
number of entries to copy
Copy data within this store
offset to start copying to
offset to start copying from
number of entries to copy
Dispose of the store entries and fields
Stores backbone center location into the provided vector
index of the referenced nucleotide
vector where the data should be stored (if not provided, new vector is initialized)
reference to the vector storing the data
Stores backbone center location into the provided array
index of the referenced nucleotide
array where the data should be stored (if not provided, new array is initialized)
reference to the array storing the data
Stores base normal into the provided vector
index of the referenced nucleotide
vector where the data should be stored (if not provided, new vector is initialized)
reference to the vector storing the data
Stores base normal into the provided array
index of the referenced nucleotide
array where the data should be stored (if not provided, new array is initialized)
reference to the array storing the data
Stores hydrogen face direction into the provided vector
index of the referenced nucleotide
vector where the data should be stored (if not provided, new vector is initialized)
reference to the vector storing the data
Stores hydrogen face direction into the provided array
index of the referenced nucleotide
array where the data should be stored (if not provided, new array is initialized)
reference to the array storing the data
Stores nucleobase center location into the provided vector
index of the referenced nucleotide
vector where the data should be stored (if not provided, new vector is initialized)
reference to the vector storing the data
Stores nucleobase center location into the provided array
index of the referenced nucleotide
array where the data should be stored (if not provided, new array is initialized)
reference to the array storing the data
Returns type of the given nucleotide
index of the referenced nucleotide
Type of nucleotide stored at given index
index of the referenced nucleotide
raw uint8 value / char code corresponding to the nucleobase type
Resize the store to 1.5 times its current size if full
Allows to add values to the store fields simultaneously. It is expected that all of the fields provided by the store will have their value defined in the newly added record and all the arrays with values are of the same length.
index where the data should be inserted
defines the values to add; if not provided, the store will be resized but no values will be overriden
Catana extension.
Checks if the nucleobase type at given index has already been set or is still default-initialized
index to check
true if type has been set (i.e., is non-zero), false otherwise
Resize the store to the new size
new size
Left-rotates the array with the given shift in the desired direction In-situ algorithm
Catana extension
Sets new backbone center location from the provided vector
index of the referenced nucleotide
vector with the source data
Sets new backbone center location from the provided array
index of the referenced nucleotide
array with the source data
Sets new base normal from the provided vector
index of the referenced nucleotide
vector with the source data
Sets new base normal from the provided array
index of the referenced nucleotide
array with the source data
Sets new hydrogen face direction from the provided vector
index of the referenced nucleotide
vector with the source data
Sets new hydrogen face direction from the provided array
index of the referenced nucleotide
array with the source data
Sets new nucleobase center location from the provided vector
index of the referenced nucleotide
vector with the source data
Sets new nucleobase center location from the provided array
index of the referenced nucleotide
array with the source data
Sets type of the given nucleotide
index of the referenced nucleotide
new nucleotide type
Reduces the container length to equal its count. Catana extension.
Sort entries in the store given the compare function
function to sort by
Stores [X, Y, Z] values stored in the source array to the corresponding index in the store's destination array
destionation array
index where the data should be stored
source array
Stores [X, Y, Z] values stored in the source vector to the corresponding index in the store's destination array
destionation array
index where the data should be stored
source vector
Copies [X, Y, Z] values stored at the given index in the source store's array to the destination array (if provided)
source array
index from which the data should be copied
destination array (if not provided, new array of size 3 will be initialized)
reference to destArray if provided, otherwise reference to newly created array
Copies [X, Y, Z] values stored at the given index in the source store's array to the destination vector (if provided)
source array
index from which the data should be copied
destionation vector (if not provided, new vector will be instantiated)
reference to vector param if provided, otherwise reference to a newly created vector instance
Generated using TypeDoc
Sequential storage of nucleotides' data (in 5' to 3' order)