Manipulations
Commands to alter basic properties of the EDF and the signals therein
Command | Description |
---|---|
SIGNALS |
Retain/remove specific EDF channels |
RENAME |
Rename channels |
COPY |
Duplicate one or more EDF channels |
RESAMPLE |
Resample signal(s) |
ENFORCE-SR |
Require a particular sample rate |
REFERENCE |
Re-reference signals |
DEREFERENCE |
De-reference signals |
MINMAX |
Set digital/physical min/max across channels |
uV |
Rescale units to uV |
mV |
Rescale units to mV |
FLIP |
Flip polarity of signal |
ZC |
Mean-center signal |
ROBUST-NORM |
Robust normalisation |
COMBINE |
Combine two or more channels into a new channel (e.g. sum/mean) |
SCALE |
Rescale a channel (min/max scaling) |
SHIFT |
Shift a signal |
SCRAMBLE |
Scramble a signal |
TIME-TRACK |
Add a time-track to an EDF |
RECORD-SIZE |
Change EDF record size |
EDF-MINUS |
Realign EDF records, annotations and epochs |
ANON |
Strip ID information from EDF header |
SET-HEADERS |
Directly specify certain EDF headers |
SET-VAR |
Directly specify Luna variables |
SET-TIMESTAMPS |
Directly specify EDF record time-stamps |
RECTIFY |
Rectify a signal |
REVERSE |
Reverse a signal |
MOVING-AVERAGE |
Moving average (or median) of a signal |
SIGNALS
The command requires one of two options: either keep
or drop
.
Each expects a comma-delimited list of channel names (or
aliases), which are either retained or
removed from the in-memory dataset.
Parameters
Option | Example | Description |
---|---|---|
drop |
drop=EMG,ECG |
Drop channels EMG and ECG |
keep |
keep=C3,C4 |
Drop all channels except C3 and C4 |
Outputs
Other than modifying the in-memory representation of the EDF, there is no further output (except some notes written to the log).
Example
For an EDF with 6 signals, including EMG
, EOG-L
and EOG-R
, this command would drop these three signals:
luna s.lst -s "SIGNALS drop=EMG,EOG-L,EOG-R & DESC"
DESC
:
Number of signals : 3
Signals : EEG1[256] EEG2[256] EEG3[256]
keep
option with the same arguments:
luna s.lst -s "SIGNALS keep=EMG,EOG-L,EOG-R & DESC"
Number of signals : 3
Signals : EOG-L[256] EOG-R[256] EMG[256]
RENAME
Renames channels
This command can rename channels within the context of evaluating a Luna script. In this way, it differs from using signal aliases (which can only be specified when first initiating Luna, and will be fixed for all individuals), as this command can use variables (which may be individual-specific).
It is also possible to supply a file
of new labels for multiple signals instead.
Parameters
Parameter | Example | Description |
---|---|---|
sig |
C3,C4 |
List of channels to duplicate |
new |
C3_LM,C4_LM |
List of new labels (same size as sig ) |
file |
f.txt |
File of old/new labels |
Note that you cannot use an existing channel label as a new
label.
If specifying a file, such files should be tab-delimited, containing exactly
two fields per row (original label as per sig
)
and the new value as per new
).
Output
No formal output, other than changing the labels of channels in the internal EDF
Example
In its simplest form, if we have a channel named THOR_RES
, for
example, we can rename to some other label -- here just using XX
--
using RENAME
, and then use that new label in other commands:
luna s.lst -s ' RENAME sig=THOR_RES new=XX & STATS sig=XX '
Note that this also adds an alias internally, so that THOR_RES
can
still be used as a label (e.g. with the sig
option of a command),
but the output will be labelled with the primary term XX
.
As noted above, this provides similar functionality as using a signal alias:
luna s.lst "alias=XX|THOR_RES" -s ' STATS sig=XX '
The primary difference is that RENAME
accepts (individual-specific)
variables as arguments, i.e. which can allow different individuals to
have different assignments (with sig
and/or new
). For example, in
this toy example, we change THOR_RES
and ABDO_RES
(all present in
the three individuals in the tutorial dataset to
different labels. If we have a tab-delimited file that defines these
variables for each individual:
cat ch.txt
ID CHS
nsrr01 XX,YY
nsrr02 AA,BB
nsrr03 CC,DD
Now, the command
luna s.lst vars=ch.txt \
-s ' DESC & RENAME sig=THOR_RES,ABDO_RES new=${CHS} & DESC '
will use RENAME
to swap those two channels to the other specified
values: e.g. showing extracts from the DESC
output for the three
individuals: in all cases, the first DESC
command gives the same:
Signals : SaO2[1] PR[1] EEG_sec_[125] ECG[250] EMG[125] EOG_L_[50]
EOG_R_[50] EEG[125] AIRFLOW[10] THOR_RES[10] ABDO_RES[10] POSITION[1]
LIGHT[1] OX_STAT[1]
DESC
varies between the three individuals as expected:
Signals : SaO2[1] PR[1] EEG_sec_[125] ECG[250] EMG[125] EOG_L_[50]
EOG_R_[50] EEG[125] AIRFLOW[10] XX[10] YY[10] POSITION[1]
LIGHT[1] OX_STAT[1]
Signals : SaO2[1] PR[1] EEG_sec_[125] ECG[250] EMG[125] EOG_L_[50]
EOG_R_[50] EEG[125] AIRFLOW[10] AA[10] BB[10] POSITION[1]
LIGHT[1] OX_STAT[1]
Signal : SaO2[1] PR[1] EEG_sec_[125] ECG[250] EMG[125] EOG_L_[50]
EOG_R_[50] EEG[125] AIRFLOW[10] CC[10] DD[10] POSITION[1]
LIGHT[1] OX_STAT[1]
Another difference is that using a signal aliases allows a many-to-one
mapping, whereas RENAME
requires a one-to-one mapping of
labels. That is, "alias=XX|AA|BB|CC"
will map either AA
, BB
or
CC
to XX
(i.e. where an individual EDF may have none, one or
multiple of these labels). In contrast, RENAME
must use the single,
primary label in the sig
option. However, there is nothing stopping
combined use of signal aliases and the RENAME
command, i.e. to achieve a many-to-many
mapping of labels: e.g.
luna s.lst vars=ch.txt "alias=XX|AA|BB|CC" \
-s ' RENAME sig=XX new=${CHS} & WRITE edf-dir=edfs/ '
This effectively uses XX
as an intermediate (mapped to from either AA
, BB
or CC
) and will then write to
the new EDF a label as defined in ch.txt
. Of course, an alternative would be to also supply individual-specific
labels for both sig
and new
in the vars.txt
file, e.g. if it had two columns defining OLD
and NEW
variables/columns:
luna s.lst vars=ch.txt \
-s ' RENAME sig=${OLD} new=${NEW} & WRITE edf-dir=edfs/ '
COPY
Duplicates one or more EDF channels
Because some Luna commands modify a channel
(e.g. FILTER
), it can be desirable to first
make a copy of the original channel. New channels are written out
with the WRITE
command.
Although multiple signals can be duplicated at the same time (i.e. will all be given the same tag), only data channels (i.e. not EDF Annotation channels in EDF+) are duplicated.
Parameters
Parameter | Example | Description |
---|---|---|
sig |
sig=C3,C4 |
List of channels to duplicate |
tag |
tag=DELTA |
A required option, this is added to make the new channel name, e.g. C3 becomes C3_DELTA |
Output
One or more new channels are created in the in-memory representation of the EDF. Aside from a note in the log, there is no formal (destrat-based) output for this command.
Example
To extract one channel (EEG
) from an original EDF, and then duplicate it:
luna s.lst 2 sig=EEG -s 'DESC & COPY sig=EEG tag=V2 & DESC'
As expected, the first DESC
output shows a single channel:
EDF filename : edfs/learn-nsrr02.edf
ID : nsrr02
Clock time : 21:18:06 - 07:15:36
Duration : 09:57:30
# signals : 1
Signals : EEG[125]
After the COPY
command has been executed, there are now two channels: EEG
and EEG_V2
:
EDF filename : edfs/learn-nsrr02.edf
ID : nsrr02
Clock time : 21:18:06 - 07:15:36
Duration : 09:57:30
# signals : 2
Signals : EEG[125] EEG_V2[125]
RESAMPLE
Changes the sampling rate of a signal
Uses functions from libsamplerate
to upsample or downsample signals.
Within a maximum upsampling/downsampling factor of 256, there are no
constraints on the new sample rate (i.e. the ratio of old and new
sample rates need not be a rational number).
The downsample
and upsample-if
options can be used to control whether a channel is resampled:
-
downsample
means that channels will only ever be downsampled, otherwise left as is -
upsample-if=50
means that channels will only be resampled (up or down) if the rate is above, e.g. 50 Hz. This option can avoid "garbage channels" (e.g. a channel labelled as an EEG but with a sample rate of 10 Hz, for example) being included.
Parameters
Parameter | Example | Description |
---|---|---|
sig |
sig=C3,C4 |
Signal list |
sr |
sr=128 |
New sampling rate (Hz) |
downsample |
Only channels with rates above sr will be downsampled |
|
upsample-if |
upsample-if=100 |
Only resample if the original sample rate is greater than this value |
Output
No output other than a message to the log (and altering the in-memory signal).
Example
To create a new EDF with the EEG
channel resampled to 100 Hz:
luna s.lst -s 'RESAMPLE sig=EEG sr=100 & WRITE edf-tag=resample edf-dir=edfs/ sample-list=s2.lst'
ENFORCE-SR
Drop signals that do not conform to a given EDF record size, or min/max sample rate
To enable clean EDF record-size conversion, this command first drops
any signals which would not be able to be represented by an N-second
record size. For example, a signal with a sample rate of 125 Hz cannot
be represented in the EDF block/record structure if each block is only
0.5 seconds. Such signals will be dropped (based on dur
) from the
internal EDF representation. This command can be used prior to a
RECORD-SIZE
command.
Further, this command can optionally drop signals with a sample rate
below or above a given range (using sr
).
Parameters
Parameter | Example | Description |
---|---|---|
dur |
dur=1 |
Proposed EDF record size (seconds), which may differ from the current value |
sr |
sr=100,200 |
Optionally, drop signals with rates below 100 Hz or above 200 Hz |
Output
No output other than a message to the log (and altering the in-memory signal).
REFERENCE
Re-references signals with respect to one or more other signals
Parameters
Parameter | Example | Description |
---|---|---|
sig |
sig=C3,C4 |
Signal(s) to re-reference |
ref |
ref=A1,A2 |
Signal(s) to provide the reference |
pairwise |
Perform pairwise re-referencing between sig and ref (see below) |
|
new |
new=C3_LM |
Generate a new channel instead of altering sig |
sr |
sr=128 |
Resample all channels first to this sample rate |
Both sig
and ref
are required parameters. If more than one
channel is given as the reference (in a comma-delimited list), the
average of those channels is used as the reference value. Alternatively, if the pairwise
option is also specified, then sig
and ref
should be of the same length. In this case,
rather than average multiple ref
channels, the command would do a pairwise referencing:
Given the above sig
and ref
values in the table above: without the pairwise
option, the
two channels would be calculated as:
--> C3 - (A1+A2)/2
C4 - (A1+A2)/2
pairwise
:
---> C3 - A1
C4 - A2
If using new
, only a single channel can be re-referenced.
Output
No output, other than a note to the log. In memory, the updated
sig
channels will contain the re-referenced values.
DEREFERENCE
De-references signals with respect to one or more other signals
This command is a mirror of REFERENCE
: instead of subtracting another reference signal, this simply adds it back in, i.e.
effectively removing an existing reference. The options (new
, pairwise
, sr
, sig
and ref
) are otherwise similar,
see above for details.
MINMAX
Set digitial and physical minimum and maximum values in the EDF header to be equal across multiple channels. This can be necessary to enable other software to be able to work with an EDF, by making it better conform to the EDF specification. Signals specified here must be comparable, e.g. all EEG and EOG with a common amplifier and ADC, and so are expected to have similar scaling and sensitivity (unit/bit) in the EDF.
Parameters
Parameter | Example | Description |
---|---|---|
sig |
sig=C3,C4 |
Signals (two or more) to set group min/max values |
Output
No formal output is given. The channels are rescaled internally. Any
subsequent commands (i.e. including WRITE
to write a new EDF) will
therefore based based on these new header values.
Example
Here we have an EDF with channels C3, C4, F3, F4, O1, O2, A1 and A2. The HEADERS
command shows that the channels have different physical min/max values, and therefore
different SENS
values (scaling of micro-volts per bit in the EDF):
luna id01.edf -o out.db -s HEADERS
destrat out.db +HEADERS -r CH
ID CH DMAX DMIN PDIM PMAX PMIN SENS SR TYPE
id01.edf F3 32767 -32768 uV 1574.8 -3276.8 0.07403 500 EEG
id01.edf F4 32767 -32768 uV 1720.9 -3276.8 0.07626 500 EEG
id01.edf C3 32767 -32768 uV 3276.7 -3276.8 0.1 500 EEG
id01.edf C4 32767 -32768 uV 2034.5 -3276.8 0.08104 500 EEG
id01.edf O1 32767 -32768 uV 3276.7 -3276.8 0.1 500 EEG
id01.edf O2 32767 -32768 uV 3276.7 -3276.8 0.1 500 EEG
id01.edf A1 32767 -32768 uV 3238.6 -3276.8 0.09941 500 EEG
id01.edf A2 32767 -32768 uV 3255.3 -3276.8 0.09967 500 EEG
After running the MINMAX
command, we see that the SENS
values are now
set to be equal across all channels. This command will not fundamentally
change the underlying signal data, only the scaling in the EDF header.
luna id01.edf -o out.db -s 'MINMAX & HEADERS'
ID CH DMAX DMIN PDIM PMAX PMIN SENS SR TYPE
id01.edf F3 32767 -32768 uV 3276.7 -3276.8 0.1 500 EEG
id01.edf F4 32767 -32768 uV 3276.7 -3276.8 0.1 500 EEG
id01.edf C3 32767 -32768 uV 3276.7 -3276.8 0.1 500 EEG
id01.edf C4 32767 -32768 uV 3276.7 -3276.8 0.1 500 EEG
id01.edf O1 32767 -32768 uV 3276.7 -3276.8 0.1 500 EEG
id01.edf O2 32767 -32768 uV 3276.7 -3276.8 0.1 500 EEG
id01.edf A1 32767 -32768 uV 3276.7 -3276.8 0.1 500 EEG
id01.edf A2 32767 -32768 uV 3276.7 -3276.8 0.1 500 EEG
Note, if the EDF contained other signals that you did not want
included in the MINMAX
procedure (e.g. respiratory channels, which
have different scaling from EEG channels), you would need to add sig
after MINMAX
to specify, e.g. only the EEG channels. This command
will skip any EDF+ Annotation channels automatically.
uV
Converts a signal to uV units
Checks the unit
(physical dimension) field of the EDF header for either V
, mV
or uV
and rescales the signal appropriately. If the header specifies some
other unit, or none, then no action is taken.
Parameters
Parameter | Example | Description |
---|---|---|
sig |
sig=C3,C4 |
Signal(s) to convert |
If sig
is not specified, this command is applied to all channels.
Output
No output, other than updating the in-memory signal.
mV
Converts a signal to mV units
Checks the unit
(physical dimension) field of the EDF header for either V
, mV
or uV
and rescales the signal appropriately. If the header specifies some
of unit, or none, then no action is taken.
Parameters
Parameter | Example | Description |
---|---|---|
sig |
sig=C3,C4 |
Signal(s) to convert |
If sig
is not specified, this command is applied to all channels.
Output
No output, other than updating the in-memory signal.
TIME-TRACK
Adds a time-track, which implicitly converts an EDF into an EDF+
This command is only used internally, currently.
FLIP
Flips the polarity of a signal
Multiplies every sample value of a signal by -1.
Parameters
Parameter | Example | Description |
---|---|---|
sig |
sig=C3,C4 |
Signals to flip |
Output
No output, other than a message to the log and an updated in-memory signal.
Example
This next command takes the first 10 epochs of the C3
signal,
outputs the original signal to a file (f1
), then flips the signal,
and re-outputs it (to f2
):
luna me.lst sig=C3 -s 'EPOCH & MASK epoch=1-10 & \
RESTRUCTURE & MATRIX file=f1 & \
FLIP & MATRIX file=f2'
Note
In the above, we used the end-of-line \
character (with no trailing whitespace)
to continue the command on multiple lines, as many shells allow.
Comparing the original signals (looking at just the first 10 rows of output) ...
head f1
ID E S SP T C3
id001 1 0 0 0 3.43407
id001 1 0 1 0.00390625 2.06044
id001 1 0 2 0.0078125 -0.0763126
id001 1 0 3 0.0117188 -1.60256
id001 1 0 4 0.015625 -2.21306
id001 1 0 5 0.0195312 -2.21306
id001 1 0 6 0.0234375 -2.21306
id001 1 0 7 0.0273438 -2.06044
id001 1 0 8 0.03125 -2.06044
... to the new signals, we see the values have been flipped, albeit not as exactly as one might expect. (This is due to the encoding used by EDFs; see the note below for more details).
head f2
ID E S SP T C3
id001 1 0 0 0 -3.43865
id001 1 0 1 0.00390625 -2.06244
id001 1 0 2 0.0078125 0.0728122
id001 1 0 3 0.0117188 1.59799
id001 1 0 4 0.015625 2.20806
id001 1 0 5 0.0195312 2.20806
id001 1 0 6 0.0234375 2.20806
id001 1 0 7 0.0273438 2.05909
id001 1 0 8 0.03125 2.05909
Floating point accuracy
EDFs store data as 2-byte
integers: in contrast, floating point numbers as used
in Luna typically take up 4 or 8 bytes in memory. This relatively
low resolution of EDF introduces slight numerical differences so
that the values are clearly different from -1 times the original:
i.e. 3.43407
is not minus -3.43865
. As noted in the EDF spec,
practically this limit on resolution is not a real issue for most
biosignals, if they are recorded with sensible physical and
digital min/max values to reflect the dynamic range of the signal.
ZC
Mean-center a signal
Subtracts the mean from a signal, either based on the entire duration or performed epoch-by-epoch. The latter may be more appropriate if there are large changes in the scale/mean of the signal across the recording.
Parameters
Parameter | Example | Description |
---|---|---|
sig |
C3,C4 |
Signals to flip |
epoch |
Perform mean-centering epoch-by-epoch |
Output
No output, other than a message to the log and an updated in-memory signal.
Example
Consider the SpO2
signal,
luna s.lst -s 'STATS sig=SpO2'
MEAN 94.1955
First adding the ZC
command:
luna s.lst -s 'ZC sig=SpO2 & STATS sig=SpO2'
MEAN -0.000734802
Note that, due to EDF's 16-bit floating-point accuracy, the mean will
not be numerically exactly 0.00 (i.e. as internally, the signal is
written back to the internal, in-memory EDF at the end of the ZC
command, before being re-read by STATS
).
ROBUST-NORM
Standardizes a signal using a robust approach
Normalizes a signal, using as measures of central tendency and spread the median and an estimate of the SD based on the inter-quartile range ( 0.7413 times IQR ). Additionally, this command can winsorize a signal (and optiomally re-normalize after winsorization, to ensure (non-robust) mean/SD of 0/1). This can be performed either on the whole signal, or epoch-by-epoch.
Parameters
Parameter | Example | Description |
---|---|---|
sig |
C3,C4 |
Signals to flip |
epoch |
Perform mean-centering epoch-by-epoch | |
center |
'F' | Perform median-centering (default: true ) |
scale |
'F' | Perform rescaling (default: true ) |
winsor |
0.05 | Winsorize the signal, e.g at 5th percentile (default: none) |
second-norm |
Perform a second round of normalization after winsorization (default: no) |
Output
No output, other than a message to the log and an updated in-memory signal.
Example
Consider the SpO2
signal,
luna s.lst -s 'STATS sig=SpO2'
MEAN 94.1955
SKEW -8.02593
If, for some reason, one wanted to normalize this measure, we can use ROBUST-NORM
, also adding winsor=0.05
to
winsorize the signal at the 5th (and 95th) percentiles:
luna s.lst -s 'ROBUST-NORM sig=SpO2 winsor=0.05 & STATS sig=SpO2'
From the subsequent STATS
output, we can see the mean and SD are closer to 0 and 1 respectively, and (due to the winsorization), the
signal is also much less skewed:
MEAN -0.80652
SKEW -0.4575
SD 2.05714
STATS
command, we see the median (P50
) is effectively 0 (save for numerical rounding):
P01 -5.39593
P02 -5.39593
P05 -5.39593
P10 -4.04687
P20 -2.69795
P30 -1.3489
P40 -1.3489
P50 -9.67455e-05
P60 -9.67455e-05
P70 -9.67455e-05
P80 1.48381
P90 1.48381
P95 2.83286
P98 2.83286
P99 2.83286
P01
, P02
and P05
are all identical now.
If for some reason it is important to further rescale the signal to have mean and SD of 0 and 1 more precisely, then add the option second-norm
to ROBUST-NORM
. This results in the following mean and SD:
MEAN -5.44263e-06
SD 0.999983
SCALE
Rescale (and/or clip) a channel based on min-max ranges
If clip-min
and/or clip-max
is set, the signal will be clipped/winsorized at these thresholds (e.g. values
beyond those thresholds will be set to those values).
Additionally, if min-max
is set to specify a lower/upper bound, the
scale will be rescaled to set the min/max at those values.
Parameters
Parameter | Example | Description |
---|---|---|
min-max |
0,100 | Lower and upper bounds |
clip-min |
0 | Lower bound to clip (on original scale) |
clip--max |
1 | Upper bound to clip (on original scale) |
Output
No output other than changing signals in the internal EDF.
Example
The following assumes a signal (e.g. oxygen saturation) that is scored on a 0 - 1 scale, but contains outliers (below 0, or above 1, e.g. due to resampling or other artifact). The command below first clips at 0 and 1; it then rescales to a percent (0-100) rather than a proportion (0-1) scale:
luna s.lst -s ' SCALE sig=oxy clip-mip=0 clip-max=1 min-max=0,100 '
Typically a SCALE
command will be paired with subsequent analyses,
or a WRITE
command to output a new EDF. (i.e. by itself the above command
would only change the in-memory EDF and then quit/move to the next EDF).
COMBINE
Combine two or more channels to create a new channel
This commands allows for new channels to be created based on simple sum/mean/median of one or more channels.
By default, this command requires that all channels requested (by sig
) are present; an
error will be given otherwise. This behavior can be changed by adding allow-missing
,
which means that only the available channels are used (e.g. if only 2 of 3 found, the
sum would be based just on those two). If no available channels are available, no new
channel is created. If only two channels are available and a median is requested, this is
automatically changed to a mean instead.
Parameters
Parameter | Example | Description |
---|---|---|
sig |
C3,C4 |
Signal list |
sum |
S1 |
Make a new sum channel called S1 |
mean |
M1 |
Make a new mean channel called M1 |
median |
M1 |
Make a new median channel called M1 (for 3 or more channels) |
allow-missing |
If present, allow for channels in sig to be not present |
Names for new channels (e.g. S1
or M1
above) are not allowed to exist in the EDF prior to calling COMBINE
.
Output
No output other than adding new signals to the internal EDF.
Example
To create a new channel S
that is the sum of two channels ABDO
and
THOR
, for example, and then output epoch-level statistics for this
new channel:
luna s.lst -s ' COMBINE sum=S sig=THOR,ABDO
STATS sig=S epoch '
RECORD-SIZE
Alters the record size of an EDF
This command changes the low-level encoding of data in an EDF, which is something that you should not normally need to change. Often, EDFs have a record size (i.e. the size of the blocks in which the data are stored) of 1 second or so. Why might you want to change this?
-
as the smallest
EPOCH
size is limited by the EDF record size, if the EDF record size is relatively large (e.g. 10 seconds), it will not be possible to specify smaller epochs (e.g. 5 seconds). -
if the EDF record size is very small (e.g. 100 milliseconds), this can reduce performance when reading the EDF from disk
There are a number of points that should be borne in mind:
-
no subsequent commands can be issued after a
RECORD-SIZE
command; rather, a new EDF will be written to disk -
you should ensure that the new record size contains an integer number of samples for all signals
-
currently, you can only change the record size of EDF, not EDF+ files
-
as only whole records are written to disk, the final part of an EDF (that is shorter than the new record size) may be truncated
Parameters
Parameter | Example | Description |
---|---|---|
dur |
dur=1 |
New EDF record/block size |
edf-dir |
edf-dir=edfs/ |
Folder for writing new EDFs |
edf-tag |
edf-tag=rec1 |
Tag added to new EDFs |
sample-list |
sample-list=s2.lst |
Generate a sample-list pointing to the new EDFs |
That is, while RECORD-SIZE
itself only takes dur
as the single
option, one must also specify all options for
WRITE
, as RECORD-SIZE
automatically triggers
WRITE
after changing the record size of the in-memory
representation. (That is, as always, the original EDF file is left
untouched.)
Output
No output, other than message to the log and an updated in-memory signal.
Example
Focusing only on the signals PR
and EEG
in the first
tutorial EDF, we see that this EDF has a record size
of 1 second:
luna s.lst 1 sig=PR,EEG -s "SUMMARY"
# signals : 2
# records : 40920
Duration : 1
That is, the EDF has 40,920 records, each of duration 1 second.
Looking at the two signals, because the record duration is 1 second,
this implies a sample rate of 1 Hz and 125 Hz respectively for PR
and EEG
.
Signal 1 : [PR]
# samples per record : 1
...
Signal 2 : [EEG]
# samples per record : 125
...
To generate a new EDF (which contains only these two signals) with an altered record size (in this example, 50 seconds):
luna s.lst 1 sig=PR,EEG -s "RECORD-SIZE dur=50 edf-tag=r50"
(Note that setting a 50-second record size would be unusual, this is done here purely for illustrative purposes.) After running this command, you'll see the following messages in the log:
saved new EDF, edfs/learn-nsrr01-r50.edf
**warning: the PROBLEM flag was set, skipping to next EDF...
The warning message is expected, this is just Luna's way of ensuring
that no further commands can be run after RECORD-SIZE
command.
Running SUMMARY
on the new EDF, we see that the record size has been
changed:
luna edfs/learn-nsrr01-r50.edf -s SUMMARY
# records : 818
Duration : 50
...
Signal 1 : [PR]
# samples per record : 50
...
Signal 2 : [EEG]
# samples per record : 6250
...
That is, instead of 40,920 records of 1 second we have 818 records of 50 seconds. Correspondingly, there are now 50 times the number of samples per record compared to the original EDF (the sample rate in Hz is obviously the same as before).
Note
Because 40,920 is not evenly divisible by 50, the last 20
seconds has been truncated (i.e. the log will indicate a total
duration of 11:21:40
instead of the original 11:22:00
).
EDF-MINUS
Collapsed gapped EDF+D records to standard, aligned EDFs
EDF+D files are convenient for recording data that have gaps. However, it can sometimes be inconvenient to analyse recordings with gaps, and some other tools do not accept EDF+D files. When the goal is to convert a gapped recording and output a new EDF, the record-based structure of EDF can be a problem: whereas gaps can be fractions of an EDF record (e.g. often but not always 1 second), an EDF file must contain only whole records.
More generally, a standard EDF with an "ideal" structure might be as follows:
-
data in a single segment
-
one-to-one correspondence between stage annotations and epochs (units of analysis)
-
a clean mapping of EDF records to annotations: stages are a fixed integer number of seconds and annotations and epochs align to EDF record boundaries
In practice, many records (especially from clinical studies) are EDF+D with less-than-ideal properties from the perspective of clean and convenient analysis:
-
discontinuous segments (gaps); often only a single (largest) segment of interest, but not always
-
stage annotations not regularly aligned across the night and/or with standard epochs
-
stage annotations not aligned with EDF record boundaries
-
potentially, EDF records are of nonstandard duration (e.g. 3.92 seconds) or very long (e.g. 30 seconds)
In terms of analysis:
-
Luna naturally represents gapped EDF+ -- in fact, internally, after any type of markings (e.g. restriction to NREM) the data structure is implicitly identical to an EDF+D file
-
epochs (unit of analysis) can be defined to align with stage annotations within each segment (
EPOCH align
), even ones of variable duration via generic epochs (EPOCH annot
) -
however, some analyses (e.g. summarizing hypnogram structures/timings) can be challenging with gapped recordings & incomplete annotations, or presence of variably-sized or incomplete epochs, however
In terms of file (EDF) generation:
-
when writing a new EDF, the atomic EDF record structure comes into play: we can only read or write whole records
-
also, some EDFs have awkward record sizes (e.g. 3.92 seconds, and in some cases may not even allow an integer number of evenly-spaced samples)
-
in PSGs containing signals of variable sampling rate, we cannot arbitrarily change record size (i.e. each record must contain a fixed, positive integer number of samples for every signal)
-
if stage annotations & record boundaries do not align, we cannot easily output a new EDF that excludes/includes only a given stage
-
when trying to align signals & annotations, timing difficulties arise due to EDF+ varying its specification of time:
1) EDF start time constrained to whole seconds (hh:mm:ss),
2) signal segments constrained to whole record units,
3) no constraints on annotation start/stops,
4) no constrains on gap durations
Further, when Luna masks a recording (by flagging epochs as masked or not), the actual transformation is at the level of EDF records. Here, records and epochs align, such that is we mask epoch 2, this cleanly splices out records 3 and 4:
Record 1--|2--|3--|4--|5--|6--|7--|8--|
Epoch 1------|2------|3------|4-------
Masked epochs XXXXXXXX
Retained records 1--|2--| 5--|6--|7--|8--|
In contrast, here records and epochs do not align: Luna will retain (whole) records that have at least some unmasked signal, so here, only record 4 would be dropped:
Record 1--|2--|3--|4--|5--|6--|7--|8--|
Epoch 1------|2------|3------|4------|
Masked epochs XXXXXXXX
Retained records 1--|2--|3--| 5--|6--|7--|8--|
Obviously, in the context of analysis (or exporting in formats other
than EDF), it is possible to slice data at a sample-point resolution
(and, if necessary, to resample different signals to have similar
sample rates, further simplifying things). However, if we essentially want to
retain the native EDF (record-based) properties, then it can be useful to manipulate
the EDF structure to streamline downstream analysis, which is where EDF-MINUS
comes in.
Specifically, EDF-MINUS
is a command to make standard EDFs with more convenient record/annotation/epoch structure:
-
sets EDF record size to a fixed 1 second
-
selects and/or combines gapped segments (e.g. all, largest, only those w/ staging information, etc)
-
either splices out gaps or zero-pads to fill gaps, but also ensuring all points align with EDF record boundaries
-
optionally aligns segments to stage annotation boundaries
-
shifts all annotation start/stops as needed (i.e. if splicing out gaps) to keep annot/signal alignment
-
adds annotations to show original (gapped) structure
-
saves new EDF and annotation files
When handling gaps, there are two choices:
-
keep timeline as is: fill the gaps in the signal (zero-padding) and leave annotations as they are
-
splice out gaps: this "ignores" gaps, similar to simply reading a EDF+D as a standard EDF, except here
EDF-MINUS
a) still aligns retained segments to record and/or epoch/staging boundaries, and b) alter any annotation timelines to be locally-consistent with the new spliced set of signals
Which strategy should you choose? Practically, in the context of PSG/sleep data, it is usually sensible to pick what best aligns to the staging information. If staging is "constant" (with respect to clock-time, e.g. truly every 30 seconds), then it makes sense to keep that as is and zero-pad. Staging is not constant across different segments (i.e. as if each segment was scored separately), then it is better to splice out the gaps.
Obviously both these operations will slightly change the signal
data. If zero-padding, one would need to handle those regions in
downstream analysis, but EDF-MINUS
provides an annotation to
indicate which regions are zero-padded (e.g. and can be more cleanly
extracted from analysis, as those regions will now also align with EDF
record/epoch boundaries). In most cases, one may drop a few seconds
of signal, etc, but given that signal is (by definition) dropped in
the context of a gapped recording, it is often a reasonable trade-off
to drop a little more data to make the resulting records easier to
work with.
Parameters
Main arguments
Parameter | Example | Description |
---|---|---|
policy |
splice |
Treatment of segments (splice , zero-pad ) |
segments |
2,3,4 | Numbers of segments to keep, or largest (default: keep all ) |
out |
new1 |
Required name for new EDF/annotations |
require |
N1,N2,N3,R,W |
Only select segments with at least one of these annotations having any extent of overlap |
require-dur |
30 | Require at least N seconds to be spanned by required annotation(s) |
require-whole |
N1,N2,N3,R,W |
Alternative to require but insists that segments must span whole annotations |
align |
N1,N2,N3,R,W |
Align & truncate segments to these annotations (i.e. stages) |
dur |
30 | Annotation/epoch duration for alignment (e.g. assuming (multiples of) fixed 30s epochs by default) |
hms |
Output annotation files in h:m:s clock-time format (not elapsed seconds) | |
dhms |
Output annotation files in date+clock-time format |
The require
options can be used to select only segments that have some extent of staging information.
Secondary arguments
Parameter | Example | Description |
---|---|---|
max-sr |
1024 | Optionally, set a warning if sample rate is above this value |
prefix |
edit1 |
Optional prefix for new book-keeping annotations added (e.g. tracking splice-points) (default: none) |
Note: EDF-MINUS
applies a zero-hold filter on signals with <1 Hz
sample rate (must be 1/N Hz where N is an integer) to fit in
1-second EDF record
Output
The primary output is a new (standard) EDF file and optionally an annotation (.annot
) file.
Example
Consider this example gapped EDF+D:
luna m.lst -s SEGMENTS
Processing: id01 [ #1 ]
duration 06.30.59, 23459s | time 23.19.59 - 05.51.25 | date 07.04.16
signals: 23 (of 23) selected in an EDF+D file
F3_M2 | F4_M1 | C3_M2 | C4_M1 | O1_M2 | O2_M1 | EOG_L | EOG_R
CHIN_1 | EKG | R_R | LEG_L | LEG_R | Snore | Airflow | PTAF
Chest | Abdomen | SUM | SAO2 | PLETH | ETCO2 | EDF Annotations
extracting 'EDF Annotations' track from EDF+
annotations:
? (x41) | N1 (x72) | N2 (x74) | W (x593)
edf_annot (x0) | note (x138)
Reviewing the location of segments:
destrat out.db +SEGMENTS -r SEG -v START_HMS STOP_HMS DUR_MIN
ID SEG DUR_MIN START_HMS STOP_HMS
id01 1 96.7166 23:19:59.000 00:56:42.000
id01 2 71.7666 00:56:49.000 02:08:35.000
id01 3 82.65 02:08:42.000 03:31:21.000
id01 4 103.766 03:31:27.000 05:15:13.000
id01 5 36.0833 05:15:20.000 05:51:25.000
As it contains staging information, we can extract that also epoch-by-epoch:
luna m.lst -o out.db -s STAGE
destrat out.db +STAGE -r E
ID E CLOCK_TIME START_SEC STAGE
id01 1 23:19:59 0 L
id01 2 23:20:29 30 L
id01 3 23:20:59 60 L
id01 4 23:21:29 90 L
id01 5 23:21:59 120 L
...
id01 194 00:56:49 5810 W
id01 195 00:57:19 5840 W
id01 196 00:57:49 5870 W
id01 197 00:58:19 5900 W
id01 198 00:58:49 5930 W
id01 199 00:59:19 5960 W
id01 200 00:59:49 5990 W
Note that the timing of the available staging changes across the night - e.g. every 59-th and 29-th second past the minute initially, but then at the 19/49-second marks later on. We can assume that within-segment staging is well aligned - i.e. we do not see any "conflict" messages in the output above.
To go from EDF+D to a standard EDF, there are two routes/policies:
- assume staging is fixed and correct (w.r.t. clock time) ->
zero-pad signals; this changes signals (fills gaps, to nearest
EDF record unit), keeps annotations (largely) 'as is'
- or, assume staging is not aligned uniformly w.r.t. clock time ->
splice signal; keeps signals largely 'as is' (i.e. ignores gaps,
implicitly sets to 0s dur) but rather change annotations to
align
In this example, the annotations are not cleanly and consistently aligned w.r.t. clock-time (e.g. always 0 and 30-secs past the minute); thus, we do not want to zero-pad (which keeps annotations largely as is).
So, we'd select 'splice' mode: by default, this uses the staging
annotations to align segments (N1
, N2
, N3
, R
, W
and ?
),
editting segments such that the resulting output is cleanly/consistently
aligned. We'll put the new EDF in the folder fin/
:
mkdir fin
EFD-MINUS
:
luna m.lst -o out.db -s EDF-MINUS out=fin/splice policy=splice
The console gives information on the option settings:
CMD #1: EDF-MINUS
options: out=fin/splice policy=splice sig=*
settings:
join-policy (policy) = splice
retained segments (segments) = all
maximum sample rate allowed (max-sr) = 1024 Hz
segment alignment annotations (align) = ?,N1,N2,N3,R,W
alignment duration unit (dur) = 30s
required annotations (require) =
require whole annots (require-whole) = F
require at least (require-dur) = 0s
annotation prefix (prefix) =
output file-root (out) = fin/splice
It then further lists the structure of the EDF+D
dataset contains 22 signals and 6 annotation classes (918 instances)
specified 6 annotation classes (?,N1,N2,N3,R,W) for alignment (780 instances found)
aligning segment 0.00->5803.00 start to 0 secs based on annotation ? = 0.00->30.00
& aligning segment end to 5790 based 193 whole intervals of 30s from aligned start at 0s
aligned segment 1 : 0.00-5803.00 --> 0.00-5790.00
aligning segment 5810.00->10116.00 start to 5810 secs based on annotation W = 5810.00->5840.00
& aligning segment end to 10100 based 143 whole intervals of 30s from aligned start at 5810s
aligned segment 2 : 5810.00-10116.00 --> 5810.00-10100.00
aligning segment 10123.00->15082.00 start to 10123 secs based on annotation W = 10123.00->10153.00
& aligning segment end to 15073 based 165 whole intervals of 30s from aligned start at 10123s
aligned segment 3 : 10123.00-15082.00 --> 10123.00-15073.00
aligning segment 15088.00->21314.00 start to 15088 secs based on annotation W = 15088.00->15118.00
& aligning segment end to 21298 based 207 whole intervals of 30s from aligned start at 15088s
aligned segment 4 : 15088.00-21314.00 --> 15088.00-21298.00
aligning segment 21321.00->23486.00 start to 21321 secs based on annotation W = 21321.00->21351.00
& aligning segment end to 23481 based 72 whole intervals of 30s from aligned start at 21321s
aligned segment 5 : 21321.00-23486.00 --> 21321.00-23481.00
The five segments are spliced and realigned:
found 5 segment(s)
[ original segments ] -> [ aligned, editted ] --> [ final segments ]
++ seg #1 : 0.00-5803.00 (5803s) [included] --> 0.00-5790.00 --> 0.00-5790.00 (13s shorter)
- gap #2 : 5803.00-5810.00 (7s) [spliced]
++ seg #2 : 5810.00-10116.00 (4306s) [included] --> 5810.00-10100.00 --> 5790.00-10080.00 (16s shorter)
- gap #3 : 10116.00-10123.00 (7s) [spliced]
++ seg #3 : 10123.00-15082.00 (4959s) [included] --> 10123.00-15073.00 --> 10080.00-15030.00 (9s shorter)
- gap #4 : 15082.00-15088.00 (6s) [spliced]
++ seg #4 : 15088.00-21314.00 (6226s) [included] --> 15088.00-21298.00 --> 15030.00-21240.00 (16s shorter)
- gap #5 : 21314.00-21321.00 (7s) [spliced]
++ seg #5 : 21321.00-23486.00 (2165s) [included] --> 21321.00-23481.00 --> 21240.00-23400.00 (5s shorter)
original total duration = 23459s
retained total duration = 23400s (59s shorter)
Finally, it writes the new EDF:
creating a new EDF fin/splice.edf with 22 channels
retaining original EDF start-time of 23.19.59
retaining original EDF start-date of 7.4.2016
created an empty EDF of duration 23400 seconds
creating annotation file fin/splice.annot with 914 annotations from 5 classes
data are not truly discontinuous
writing as a standard EDF
writing 22 channels
saved new EDF, fin/splice.edf
writing annotations (.annot format) to fin/splice.annot
We can check this new file:
luna --build fin > f.lst
splice fin/splice.edf fin/splice.annot
We'll use the SPANNING command to give some information on the new EDF, which also confirms this is a standard EDF:
luna f.lst -o out.db -s SPANNING annot=N1,N2,N3,R,W,?
duration 06.30.00, 23400s | time 23.19.59 - 05.49.59 | date 07.04.16
signals: 22 (of 22) selected in a standard EDF file
We see that there is a 1-to-1 matching between annotations (staging) and EDF epochs now, and alignment between epochs, stage annotatons (and EDF records):
destrat out.db +SPANNING | behead
ID splice
ANNOT_HMS 06:30:00.000
ANNOT_N 780
ANNOT_OVERLAP NO
ANNOT_SEC 23400
INVALID_N 0
INVALID_SEC 0
NSEGS 1
REC_HMS 06:30:00.000
REC_SEC 23400
SPANNED_HMS 06:30:00.000
SPANNED_PCT 100
SPANNED_SEC 23400
UNSPANNED_HMS 00:00:00.000
UNSPANNED_PCT 0
UNSPANNED_SEC 0
VALID_N 780
If one wants clock times in the new .annot
, add hms
or dhms
to
make the generated .annot
file have those versus elapsed seconds.
If we instead were to zero pad the above EDF+D:
luna m.lst -o out.db -s EDF-MINUS out=fin/zero policy=zero-pad
Note - in this instance, we will still trim segments to align w/ starts & duration of staging; in this instance, zero-padding doesn't really make sense as annotations are not cleanly consistent anyway.
These again are the detected and aligned segments:
dataset contains 22 signals and 6 annotation classes (918 instances)
specified 6 annotation classes (?,N1,N2,N3,R,W) for alignment (780 instances found)
aligning segment 0.00->5803.00 start to 0 secs based on annotation ? = 0.00->30.00
& aligning segment end to 5790 based 193 whole intervals of 30s from aligned start at 0s
aligned segment 1 : 0.00-5803.00 --> 0.00-5790.00
aligning segment 5810.00->10116.00 start to 5810 secs based on annotation W = 5810.00->5840.00
& aligning segment end to 10100 based 143 whole intervals of 30s from aligned start at 5810s
aligned segment 2 : 5810.00-10116.00 --> 5810.00-10100.00
aligning segment 10123.00->15082.00 start to 10123 secs based on annotation W = 10123.00->10153.00
& aligning segment end to 15073 based 165 whole intervals of 30s from aligned start at 10123s
aligned segment 3 : 10123.00-15082.00 --> 10123.00-15073.00
aligning segment 15088.00->21314.00 start to 15088 secs based on annotation W = 15088.00->15118.00
& aligning segment end to 21298 based 207 whole intervals of 30s from aligned start at 15088s
aligned segment 4 : 15088.00-21314.00 --> 15088.00-21298.00
aligning segment 21321.00->23486.00 start to 21321 secs based on annotation W = 21321.00->21351.00
& aligning segment end to 23481 based 72 whole intervals of 30s from aligned start at 21321s
aligned segment 5 : 21321.00-23486.00 --> 21321.00-23481.00
This is the impact of zero-padding:
found 5 segment(s)
[ original segments ] --> [ aligned, editted final segments ]
++ seg #1 : 0.00-5803.00 (5803s) [included] --> 0.00-5790.00 (13s shorter)
- gap #2 : 5803.00-5810.00 (7s) [zero-padded] --> 5790.00-5810.00 (13s longer)
++ seg #2 : 5810.00-10116.00 (4306s) [included] --> 5810.00-10100.00 (16s shorter)
- gap #3 : 10116.00-10123.00 (7s) [zero-padded] --> 10100.00-10123.00 (16s longer)
++ seg #3 : 10123.00-15082.00 (4959s) [included] --> 10123.00-15073.00 (9s shorter)
- gap #4 : 15082.00-15088.00 (6s) [zero-padded] --> 15073.00-15088.00 (9s longer)
++ seg #4 : 15088.00-21314.00 (6226s) [included] --> 15088.00-21298.00 (16s shorter)
- gap #5 : 21314.00-21321.00 (7s) [zero-padded] --> 21298.00-21321.00 (16s longer)
++ seg #5 : 21321.00-23486.00 (2165s) [included] --> 21321.00-23481.00 (5s shorter)
original total duration = 23459s
retained total duration = 23427s (32s shorter)
However, because the annotations have not been changed, you'd get
conflict messages if attempting commands such as HYPNO
, for example
(which could not be solved by EPOCH align
, as the staging
annotations themselves are not uniformly distributed.
ANON
Sets the in memory EDF header fields Patient ID
and Start Date
fields to missing values as per the EDF spec (e.g. X X X X
for EDF+ files, .
for EDF). Any output
of EDFs subsequently generated with the WRITE
command will have those fields blanked.
As with all Luna commands, this does not alter the original EDF.
Also see the anon=T
special variable,
which wipes EDF headers before attaching any annotation files.
Note
This command does not alter the ID specified in the
sample-list (i.e. the first column). That ID,
which is used to track all output, etc, is distinct from the EDF
header Patient ID
field, and may or may not be similar.
Parameters
Option | Example value | Description |
---|---|---|
insert-id |
If specified, will set the Patient ID to the sample-list ID instead of null | |
root |
cohort |
Will sequentially set IDs to cohort_1 , cohort_2 , etc |
Output
No output other than message to the log, and altering the in-memory representation of the EDF header.
Example
A typical EDF with identifying information in the header (showing only
relevant rows from the SUMMARY
output):
luna my.edf -s "SUMMARY" | head
EDF filename : my.edf
Patient ID : id00001
Recording info :
Start date : 07.06.16
Start time : 23:07:56
... (cont'd) ...
Here we see how the ANON
command effectively wipes this information:
luna my.edf -s "ANON & SUMMARY" | head
EDF filename : my.edf
Patient ID : .
Recording info :
Start date : .
Start time : 23:07:56
This next command takes all EDFs in a project (defined by s.lst
) and
creates a set of new EDFs with the WRITE
command
(in the folder edfs/
, and with the new sample list s2.lst
) that
are identical except they have the Patient ID
and Start Date
fields
set to missing:
luna s.lst -s "ANON & WRITE edf-dir=edfs/ edf-tag=anon sample-list=s2.lst"
SET-HEADERS
Directly specify certain EDF header values
Note that EDF header fields which relate to the size/structure of the
actual data (i.e. sample rate, EDF header size, physical min/max, etc)
cannot be changed in this way - i.e. for those changes, use the relevant
data-modifying command, e.g. RESAMPLE
, RECORD-SIZE
, MINMAX
,
etc). That is, these options only modify the header and nothing else.
Note that any start time/date changes and made after any annotations
are attached. Internally, annotations are represented as elapsed time
from the current EDF start - i.e. their alignment with the signal data
will not change, but the output of WRITE-ANNOTS
will differ if
setting hms
or dhms
flags. See also the
starttime
and
startdate
special variables
(which make the changes before attaching annotations).
Parameters
Primary headers
Parameter | Example | Description |
---|---|---|
id |
id001 |
EDF patient ID (max 80 chars) |
recording-info |
EDF recording information field (max 80 chars) | |
start-date |
EDF start date (max 8 characters; no format imposed) | |
start-time |
EDF start time (max 8 characters; no format imposed) |
Channel-specific headers
Parameter | Example | Description |
---|---|---|
sig |
${eeg} |
Specify the channel(s) to modify |
transducer |
Set the transducer field for specified channels (max 80 chars) | |
physical-dimension |
Set the physical dimension (units) for specified channels (max 8 chars) | |
unit |
Same as physical-dimensions |
|
prefiltering |
Set the prefiltering field for specified channels (max 80 chars) |
Output
This command only modifies the in-memory representation of the EDF. Use WRITE
to save any changes.
e.g. to fix the start date, and add transducer types for the EEGs (here using Luna's automatic specification of common EEG channel names):
luna file1.edf -s 'SET-HEADERS start-date=08.08.21 sig=${eeg} transducer=Ag/AgCl & WRITE edf-tag=edit '
file1-edit.edf
with the above fields fixed.
SET-VAR
Directly specify Luna variables
This can be useful if one wants to include individual-level variables when defining a script variable. If it isn't clear why you'd want to do this, then there is no need to worry about using this command.
Parameters
This command takes only a single option, which will be given as the variable name. The argument is the variable value.
Parameter | Example | Description |
---|---|---|
any valid variable name | v=100 |
Sets this variable (e.g. v ) to the value 100 |
Output
None, other than a message to the console log.
Example
Sets an individual-level variable var
to the text string val
:
luna s.lst -s 'SET-VAR var=val`
SET-TIMESTAMPS
Directly specify EDF record timestamps
This is an advanced function for directly manipulating EDF record timing. Given a file with as many rows/values as there are EDF records in the current in-memory EDF, set each record to start at that time. This can be used to generate toy datasets, e.g. with gaps. Note that this command does not adjust annotations in any way.
All times are expected in seconds, one value per line, and all values must be increasing.
Parameters
Parameter | Example | Description |
---|---|---|
file |
timestxt |
Required text file of new time-stamps |
Output
None, except modifying the in-memory EDF and some information to the console.
Example
See this vignette for an example of using SET-TIMESTAMPS
to generate an example EDF+D file.
RECTIFY
Rectifies a signal
This commands sets all values of an EDF signal to their absolute values. It is primarily designed for use
working with other functions such as HILBERT
and PEAKS
, to build up larger processing procedures.
Parameters
Parameter | Example | Description |
---|---|---|
sig |
C3,C4 |
Signals to be rectified (or all, if this is absent) |
Output
None.
Example
As toy example, here rectifying a signal with positive and negative values (an EEG):
luna s.lst 1 -o out.db \
-s ' TAG run/1 & STATS sig=EEG
& RECTIFY sig=EEG
& TAG run/2 & STATS sig=EEG '
destrat out.db +STATS -r CH run/1 -v MIN MAX | behead
ID nsrr01
CH EEG
run 1
MAX 125
MIN -124.019607843137
destrat out.db +STATS -r CH run/2 -v MIN MAX | behead
ID nsrr01
CH EEG
run 2
MAX 125
MIN 0.490196078431372
REVERSE
Reverse a signal
This command is primarily designed for evaluated other time-domain/phase-based methods, e.g. to provide a sanity-check by completely reversing a signal in the time-domain.
Parameters
Parameter | Example | Description |
---|---|---|
sig |
C3,C4 |
Signals to be reversed (or all, if this is absent) |
Output
None (other than to reverse the in-memory signal.
MOVING-AVERAGE
Applies a moving-average (or median) filter to a signal
Applies a moving average window to filter a signal based on either a) the mean, b) median, or c) ...
Parameters
Note that median
and tri
cannot be specified together.
Parameter | Example | Description |
---|---|---|
sig |
C3,C4 |
Signals to be reversed (or all, if this is absent) |
median |
Signals to be reversed (or all, if this is absent) | |
tri |
Signals to be reversed (or all, if this is absent) | |
hw |
Half-width (in seconds) of the triangular window | |
lwr |
Weight at triangular window edge (between 0 and 1) | |
epoch |
Signals to be reversed (or all, if this is absent) |
Output
None.