forked from Hzaatiti/meg-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmegpipeline.py
55 lines (42 loc) · 1.21 KB
/
megpipeline.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
"""
megpipeline - Python base package for MEG data post-processing.
"""
__version__ = "0.1.0"
class MEGpipeline():
"""Primary class for MEG pipeline."""
#Example of method docstring
# def template_function(kind=None):
# """
# Return a list of random ingredients as strings.
#
# :param kind: Optional "kind" of ingredients.
# :type kind: list[str] or None
# :raise megpipeline.InvalidKindError: If the kind is invalid.
# :return: The ingredients list.
# :rtype: list[str]
# """
# return ["shells", "gorgonzola", "parsley"]
def __init__(self):
return None
def get_raw_data(self, file_name):
"""
Return a list of random as strings.
:param kind: Optional "kind" .
:type kind: list[str] or None
:return: the converted data list.
:rtype: list[str]
"""
return None
def get_raw_data(self, file_name):
"""
Return a list of random as strings.
:param kind: Optional "kind" .
:type kind: list[str] or None
:return: the converted data list.
:rtype: list[str]
"""
return None
if __name__ == "__main__":
pipeline = MEGpipeline()
pipeline.get_raw_data('MEG_DATA/')
print("test")