Background
There are a number of biomarkers of amyotrophic lateral sclerosis (ALS, aka motor neuron disease), but at present these can only be tested for in a clinical setting. The goal of the SPiQE project was to enable remote home assessment of ALS, making use of IoT (internet of things) devices to track patients' activity, sleep and physiology. In addition, patients were to be given a high density surface EMG device (named PANACEA), to track muscle twitches, known as fasciculations, a hallmark symptom of ALS. Data was to be uploaded to the secure Minder home monitoring system, originally developed for the UK Dementia Research Institutel at Imperial College London. It is hoped that this will provide rich data about the early progression of the disease to further research. While there was existing software for the bespoke PANACEA device, it had a number of technical limitations. The role of the RSE team was to develop a new piece of software able to visualise EMG data in real time, record it to disk and upload it to the Minder platform.
Our Contribution
For the graphical user interface, we used guikit, an in-house wrapper around the cross-platform wxPython package, which provides a lightweight alternative to the various Qt packages. We were able to provide a simple, user-friendly interface, which could be used by patients with minimal training. The researchers wanted to be able to visualise the incoming EMG data in real time in the GUI, to check that the system is working as intended and to give a rough indication of the results. Plotting the EMG results in real time was challenging, however, as the PANACEA device returns a lot of data: 2,000 samples per second for 24 channels. matplotlib, our usual choice of plotting library, was unable to plot this data in real time, due to the number of data points involved. It is also unfortunately not possible to simply average over multiple data points before plotting, as doing so would average out the very brief spikes caused by fasciculations. For lower-level control of the graphics, we settled on using pyglet, a package which provides OpenGL bindings and is written in pure Python. This finer-grained control of the graphics allowed us to update only the portions of the plot which had changed since the last refresh and to offload some computation to the GPU, so we were able to visualise the data in real time.
The data is recorded in CSV format, along with relevant metadata in the header (using our in-house pycsvy package), for easy interoperability with other tools. Data is then compressed and uploaded to the Minder platform in the background. To do this, we provided an interface for authenticating with ICL's OAuth service (needed for Minder) and wrote integration for uploading the data to an Azure blob storage container (which is how data is uploaded to Minder).