You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Users won't know parameters used to build model. That information is encoded in the model object, however.
Search mode should not require user parameterization. Instead that information should be read directly from the model being searched. If more than one model is being searched, might be a good idea to check if they were all built using the same parameters.
The text was updated successfully, but these errors were encountered:
changelog:
- `k`, `alphabet`, and `alphabet_name` are now properties of `snekmer.model.SnekmerModel` object
- The above properties can be set via standard property setters
- `step_name` and `snekmer_version` have been converted to properties rather than attributes. This designation is more suitable for the type of information being stored.
- `model_params` has been added as an attribute of `snekmer.model.SnekmerModel` object to prevent separate `AttributeError` issue
- addresses #80
changelog:
- previous method of loading objects via direct unpickling does not correctly preserve properties and the property getter will no longer work.
- an explicit model loader object has been written to correctly inherit properties and prevent the above. Will be necessary to correctly pull these properties for future Snekmer search update.
- addresses #80
Users won't know parameters used to build model. That information is encoded in the model object, however.
Search mode should not require user parameterization. Instead that information should be read directly from the model being searched. If more than one model is being searched, might be a good idea to check if they were all built using the same parameters.
The text was updated successfully, but these errors were encountered: