Skip to content

Commit

Permalink
Merge pull request #48 from MIT-LCP/new_sigs
Browse files Browse the repository at this point in the history
Adds new signals
  • Loading branch information
Lucas-Mc authored Oct 5, 2021
2 parents 0ba5d07 + 968e1c2 commit 98d89fd
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -592,10 +592,12 @@ def order_sigs(n_ekg_sigs, sig_name, exclude_sigs=[]):
"""
sig_order = []
# TODO: make case-insensitive
ekg_sigs = ['II', 'V', 'V5', 'V1', 'V2', 'V3', 'V4', 'V6', 'I', 'III',
'aVR', 'aVF', 'aVL']
bp_sigs = ['ABP', 'IBP1', 'IBP2', 'IBP5', 'IBP6']
resp_sigs = ['PLETH']
'aVR', 'AVR', 'aVF', 'AVF', 'aVL', 'AVL', 'MCL']
bp_sigs = ['ABP', 'AR1', 'AR2', 'AR3', 'IBP1', 'IBP2', 'IBP3', 'IBP4',
'IBP5', 'IBP6', 'IBP7', 'IBP8']
resp_sigs = ['PLETH', 'pleth']

# Exclude signals which have all 0s
itter_sig_name = [j for i,j in enumerate(sig_name) if i not in exclude_sigs]
Expand Down

0 comments on commit 98d89fd

Please sign in to comment.