Conditions | 11 |
Total Lines | 65 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
Complex classes like FifFile.inspect() often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
1 | from __future__ import division |
||
15 | def inspect(self): |
||
16 | provenance = super(FifFile, self).inspect() |
||
17 | """ try: |
||
18 | img = self.libs.mne.io.Raw(self.path, allow_maxshield=True) |
||
19 | except ValueError: |
||
20 | pass |
||
21 | else: |
||
22 | inspect file |
||
23 | Return |
||
24 | """ |
||
25 | ftypes = [ |
||
26 | ('cov', self.libs.mne.read_cov), |
||
27 | ('epo', self.libs.mne.read_epochs), |
||
28 | ('ave', self.libs.mne.read_evokeds), |
||
29 | ('fwd', self.libs.mne.read_forward_solution), |
||
30 | ('trans', self.libs.mne.read_trans), |
||
31 | ('raw', partial(self.libs.mne.io.read_raw_fif, |
||
32 | allow_maxshield=True)), |
||
33 | ('proj', self.libs.mne.read_proj), |
||
34 | ] |
||
35 | oldLevel = logging.getLogger('mne').getEffectiveLevel() |
||
36 | logging.getLogger('mne').setLevel(logging.ERROR) |
||
37 | for ftype, readfif in ftypes: |
||
38 | try: |
||
39 | img = readfif(self.path) |
||
40 | if img == []: |
||
41 | continue |
||
42 | break |
||
43 | except (ValueError, IOError): |
||
44 | continue |
||
45 | else: |
||
46 | ftype = 'other' |
||
47 | logging.getLogger('mne').setLevel(oldLevel) |
||
48 | |||
49 | if ftype == 'raw': |
||
50 | sub = img.info['subject_info'] |
||
51 | if sub is not None: |
||
52 | provenance['subject'] = sub['first_name']+' '+sub['last_name'] |
||
53 | provenance['project'] = img.info['proj_name'] |
||
54 | acqTS = img.info['meas_date'][0] |
||
55 | provenance['acquired'] = datetime.fromtimestamp(acqTS) |
||
56 | T = img.last_samp - img.first_samp + 1 |
||
57 | provenance['dimensions'] = [img.info['nchan'], T] |
||
58 | provenance['sampling-frequency'] = img.info['sfreq'] |
||
59 | provenance['duration'] = T/img.info['sfreq'] |
||
60 | |||
61 | if ftype == 'epo': |
||
62 | provenance['lowpass'] = img.info['lowpass'] |
||
63 | provenance['highpass'] = img.info['highpass'] |
||
64 | provenance['bad-channels'] = img.info['bads'] |
||
65 | provenance['dimensions'] = [img.events.shape[0], img.times.shape[0]] |
||
66 | |||
67 | if ftype == 'ave': |
||
68 | nEvokeds = len(img) |
||
69 | provenance['dimensions'] = [nEvokeds] + list(img[0].data.shape) |
||
70 | |||
71 | if ftype == 'cov': |
||
72 | provenance['dimensions'] = list(img.data.shape) |
||
73 | |||
74 | if ftype == 'proj': |
||
75 | provenance['projection-description'] = img[0]['desc'] |
||
76 | |||
77 | provenance['fif-type'] = ftype |
||
78 | provenance['modality'] = 'MEG' |
||
79 | return provenance |
||
80 | |||
100 |