|
15 | 15 | from .. import (BIOMV100Format, BIOMV210Format, BIOMV100DirFmt, |
16 | 16 | BIOMV210DirFmt, FeatureTable, Frequency, RelativeFrequency, |
17 | 17 | PresenceAbsence, Composition, Balance, |
18 | | - PercentileNormalized, Design, Normalized) |
| 18 | + PercentileNormalized, Design, Normalized, Unconstrained) |
19 | 19 |
|
20 | 20 | from ...plugin_setup import plugin |
21 | 21 |
|
|
27 | 27 |
|
28 | 28 | plugin.register_semantic_types(FeatureTable, Frequency, RelativeFrequency, |
29 | 29 | PresenceAbsence, Balance, Composition, |
30 | | - PercentileNormalized, Design, Normalized) |
| 30 | + PercentileNormalized, Design, Normalized, |
| 31 | + Unconstrained) |
31 | 32 |
|
32 | 33 | plugin.register_artifact_class( |
33 | 34 | FeatureTable[Frequency], |
|
81 | 82 | directory_format=BIOMV210DirFmt, |
82 | 83 | description="A feature table that was normalized." |
83 | 84 | ) |
84 | | - |
| 85 | +plugin.register_artifact_class( |
| 86 | + FeatureTable[Unconstrained], |
| 87 | + directory_format=BIOMV210DirFmt, |
| 88 | + description="A feature table containing real-valued feature " |
| 89 | + "measurements represented in Euclidean space without " |
| 90 | + "constant-sum (compositional) constraints." |
| 91 | +) |
85 | 92 | importlib.import_module('._transformers', __name__) |
0 commit comments