-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #169 from dvm-shlee/main
Implement New Plugin Architecture and Prepare for 0.4.0 Release
- Loading branch information
Showing
52 changed files
with
3,202 additions
and
935 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ Changes proposed in this pull request: | |
- | ||
|
||
|
||
@BrkRaw/Bruker | ||
@BrkRaw/brkraw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
from .lib import * | ||
from xnippet import XnippetManager | ||
|
||
__version__ = '0.3.11' | ||
__all__ = ['BrukerLoader', '__version__', 'config'] | ||
__version__ = '0.4.0' | ||
config = XnippetManager(package_name=__package__, | ||
package_version=__version__, | ||
package__file__=__file__, | ||
config_filename='config.yaml') | ||
|
||
__all__ = ['BrukerLoader', '__version__', 'config'] | ||
|
||
def load(path): | ||
return BrukerLoader(path) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from .data import Study | ||
from ..config import ConfigManager | ||
from xnippet.snippet.plugin import PlugIn as PlugInSnippet | ||
from xnippet.formatter import PathFormatter | ||
|
||
__all__ = ['Study', 'ConfigManager'] | ||
|
||
__all__ = ['PlugInSnippet', 'PathFormatter'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,23 @@ | ||
"""Base components for data analysis. | ||
This module provides foundational classes and utilities that are shared across different | ||
analyzers within the helper module. These components serve as the base for more specialized | ||
data processing and analysis tasks. | ||
""" | ||
|
||
class BaseAnalyzer: | ||
"""A base class providing common functionalities for data analyzers. | ||
This class serves as a parent to various specialized analyzers, providing shared methods | ||
and utility functions to assist in data analysis tasks. | ||
Methods: | ||
to_dict: Returns a dictionary representation of the instance's attributes. | ||
""" | ||
def to_dict(self): | ||
"""Convert the analyzer's attributes to a dictionary format. | ||
Returns: | ||
dict: A dictionary containing all attributes of the analyzer instance. | ||
""" | ||
return self.__dict__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.