analysis
phyllotaxis_analysis.analysis Link
This module contains the functions used to detect permutations in sequences of divergence angles.
code_sequence Link
code_sequence(seq, permutation_block_max_size, canonical_angle, borders_dict, kappa, threshold)
Make a list of n-admissible trees coding sequence of measured angles.
Given a sequence of measured angles, this function generates a list of n-admissible trees that encode the sequence. The trees are constructed by analyzing segments of the sequence, with each tree corresponding to a specific segment defined by its starting and ending indices.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
seq
|
list[float]
|
Sequence of measured angles to be analyzed. |
required |
permutation_block_max_size
|
int
|
Maximum number of organs involved in permutations. |
required |
canonical_angle
|
float
|
Canonical divergence angle used in the analysis. |
required |
borders_dict
|
dict
|
Dictionary mapping theoretical angles to their corresponding intervals. |
required |
kappa
|
float
|
Concentration parameter for the analysis. |
required |
threshold
|
float
|
Statistical threshold used to prune the |
required |
Returns:
| Type | Description |
|---|---|
list[tuple[object, int]]
|
A list of tuples where each tuple contains an |
Notes
- The function processes the sequence in segments, starting from the beginning and moving forward.
- For each segment, it constructs an
n-admissible tree using themake_n_admissible_treefunction. - The trees and additional data are saved to a file named 'nadm.pkl' using
pickle. - The function assumes the existence of helper functions
theoretical_divergence_anglesandmake_n_admissible_tree.
Source code in src/phyllotaxis_analysis/analysis.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | |
extract_sequences Link
extract_sequences(trees_indexes, seq, permutation_block_max_size, canonical_angle, prob_check=True)
Extract n-admissible sequences from a list of n-admissible trees.
Given a sequence of measured angles and corresponding n-admissible trees, this function extracts the theoretical angles that best explain the sequence, identifies unexplained angles, and classifies permutations as valid or invalid.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trees_indexes
|
list[tuple[Tree, int]]
|
A list of tuples where each tuple contains an n-admissible tree and its starting index.
Each tree encodes the subsequence |
required |
seq
|
list[float]
|
Sequence of measured angles to analyze. |
required |
permutation_block_max_size
|
int
|
Maximum number of organs involved in permutations. |
required |
canonical_angle
|
float
|
Canonical divergence angle used in the analysis. |
required |
Other Parameters:
| Name | Type | Description |
|---|---|---|
prob_check |
bool
|
If True, includes probability information in the output. Default is True. |
Returns:
| Name | Type | Description |
|---|---|---|
prediction |
list[float]
|
List of theoretical angles coding the input sequence. |
not_explained_list |
list[int]
|
Indices of angles in the original sequence that were not explained by the model. |
valid_permutations |
list[list[int]]
|
List of valid permutations found in the sequence. |
invalids |
list[list[int]]
|
List of invalidated permutations. |
Source code in src/phyllotaxis_analysis/analysis.py
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 | |
make_n_admissible_tree Link
make_n_admissible_tree(seq, permutation_block_max_size, canonical_angle, borders_dict, threshold, d_n, theoretical_coeff_angles, d_n_coeff_dict, kappa, seq_begin=False)
make n-admissible tree coding sequence of measured angles. It stops when it can not code an angle, i.e. at a not explained angle.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
seq
|
list
|
Sequence of measured angles. |
required |
permutation_block_max_size
|
int
|
Maximum number of organs involved in permutations. |
required |
canonical_angle
|
float
|
Canonical divergence angle. |
required |
borders_dict
|
dict
|
Dictionary of theoretical angles and the corresponding intervals. |
required |
kappa
|
float
|
Concentration parameter. |
required |
threshold
|
float
|
A statistical threshold to prune the |
required |
d_n
|
list
|
List of theoretical angles. |
required |
theoretical_coeff_angles
|
list
|
List of coefficients of theoretical angles. |
required |
d_n_coeff_dict
|
dict
|
Dictionary of theoretical angles and their coefficients. |
required |
seq_begin
|
bool
|
Indicates whether permutations at the beginning of the sequence should be taken into account. Default is |
False
|
Returns:
| Type | Description |
|---|---|
Nadmissibletree
|
The constructed |
list
|
The list of all intermediate trees generated during the process. |
Source code in src/phyllotaxis_analysis/analysis.py
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 | |