SplineFrames¶
Generates reference frames along a 3D spline path for DNA construction.
mdna.spline.SplineFrames
¶
Source code in mdna/spline.py
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 | |
__init__(control_points, degree=3, closed=False, up_vector=[0, 0, 1], frame_spacing=0.34, twist=True, bp_per_turn=10.5, frame_tolerance=0.5, verbose=False, num_points=1000, initial_frame=None, modified_ranges=[], n_bp=None, dLk=None)
¶
Initialize a spline path with Bishop-frame coordinate systems.
The spline is fitted to the control points, evenly-spaced frames are placed along the arc length, continuity is verified, and an optional twist is applied.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
control_points
|
ndarray
|
3-D control points, shape |
required |
degree
|
int
|
B-spline degree (1–5). |
3
|
closed
|
bool
|
If True, close the spline into a loop. |
False
|
up_vector
|
list or ndarray
|
Reference up direction for initial frame orientation. |
[0, 0, 1]
|
frame_spacing
|
float
|
Target arc-length distance between frames (nm). Defaults to 0.34 nm (one base-pair rise). |
0.34
|
twist
|
bool
|
Apply a helical twist to the frames. |
True
|
bp_per_turn
|
float
|
Base pairs per helical turn (default 10.5). |
10.5
|
frame_tolerance
|
float
|
Maximum allowed angular deviation when testing frame continuity. |
0.5
|
verbose
|
bool
|
Print diagnostic messages. |
False
|
num_points
|
int
|
Number of spline evaluation points for internal interpolation. |
1000
|
initial_frame
|
tuple or ndarray
|
Explicit initial
frame |
None
|
modified_ranges
|
list
|
List of |
[]
|
n_bp
|
int
|
Desired number of base pairs. When set, the spline is rescaled to match this count. |
None
|
dLk
|
int
|
Change in linking number applied via uniform twist redistribution. |
None
|
Source code in mdna/spline.py
distribute_points()
¶
Distributes equidistant points along the spline and evaluates the derivatives at these points. Adjusts the spacing to match the first and last points of the spline.
Returns:
| Name | Type | Description |
|---|---|---|
SplineFrames |
SplineFrames
|
The instance with |
Raises:
| Type | Description |
|---|---|
ValueError
|
If a suitable segment length cannot be found within the tolerance. |
Source code in mdna/spline.py
plot_frames(fig=False, equal_bounds=False, equal=True, spline=False, control_points=False, triads=True, transparent=False, legend=False)
¶
Plots the frames along the spline.
Note
This method needs to be called after the frames are computed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fig
|
bool
|
If True, return the figure and axes objects instead of None. |
False
|
equal_bounds
|
bool
|
If True, set equal axis bounds based on data extent. |
False
|
equal
|
bool
|
If True, set equal aspect ratio on all axes. |
True
|
spline
|
bool
|
If True, overlay the continuous spline curve. |
False
|
control_points
|
bool
|
If True, plot the control points. |
False
|
triads
|
bool
|
If True, draw the right/up/forward triads at each frame. |
True
|
transparent
|
bool
|
If True, make the figure background transparent. |
False
|
legend
|
bool
|
If True, suppress the automatic legend. |
False
|
Source code in mdna/spline.py
rotation_matrix_from_vectors(vec1, vec2)
¶
Find the rotation matrix that aligns vec1 to vec2
Source code in mdna/spline.py
test_frames()
¶
Tests the computed frames for correctness.
Checks consecutive frames for abrupt flips in the right and up vectors and prints warnings when angle deviations exceed 90 degrees.
Source code in mdna/spline.py
update_closed(closed)
¶
Updates the closed property indicating if the path is closed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
closed
|
bool
|
Indicates if the path is closed. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
SplineFrames |
SplineFrames
|
The updated instance. |
Source code in mdna/spline.py
update_control_points(control_points)
¶
Updates the control points defining the path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
control_points
|
ndarray
|
Control points defining the path. |
required |
Source code in mdna/spline.py
update_initial_frame(initial_frame)
¶
Updates the initial frame.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
initial_frame
|
tuple
|
Tuple containing the position, right, up, and forward vectors of the frame. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
SplineFrames |
SplineFrames
|
The updated instance. |
Source code in mdna/spline.py
update_spline_degree(degree)
¶
Updates the degree of the spline.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
degree
|
int
|
Degree of the spline. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
SplineFrames |
SplineFrames
|
The updated instance. |
Source code in mdna/spline.py
update_up_vector(up_vector)
¶
Updates the up vector used for frame computation. Not used at the moment.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
up_vector
|
list or ndarray
|
Up vector for frame computation. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
SplineFrames |
SplineFrames
|
The updated instance. |