Skip to main content

The FMRIB UKBiobank Normalisation, Processing, And Cleaning Kit

Project description

https://img.shields.io/pypi/v/fmrib_unpack.svg https://anaconda.org/conda-forge/fmrib_unpack/badges/version.svg https://zenodo.org/badge/DOI/10.5281/zenodo.1997626.svg https://git.fmrib.ox.ac.uk/fsl/funpack/badges/master/coverage.svg

funpack is a Python library for pre-processing of UK BioBank data.

funpack is developed at the Wellcome Centre for Integrative Neuroimaging (WIN@FMRIB), University of Oxford. funpack is in no way endorsed, sanctioned, or validated by the UK BioBank.

funpack comes bundled with metadata about the variables present in UK BioBank data sets. This metadata can be obtained from the UK BioBank online data showcase

Installation

Install funpack via pip:

pip install fmrib_unpack

Or from conda-forge:

conda install -c conda-forge fmrib_unpack

Introductory notebook

The funpack_demo command will start a Jupyter Notebook which introduces the main features provided by funpack. To run it, you need to install a few additional dependencies:

pip install fmrib_unpack[demo]

You can then start the demo by running funpack_demo.

Usage

General usage is as follows:

funpack [options] output.tsv input1.tsv input2.tsv

You can get information on all of the options by typing funpack --help.

Options can be specified on the command line, and/or stored in a configuration file. For example, the options in the following command line:

funpack \
  --overwrite \
  --import_all \
  --log_file log.txt \
  --icd10_map_file icd_codes.tsv \
  --category 10 \
  --category 11 \
  output.tsv input1.tsv input2.tsv

Could be stored in a configuration file config.txt:

overwrite
import_all
log_file       log.txt
icd10_map_file icd_codes.tsv
category       10
category       11

And then executed as follows:

funpack -cfg config.txt output.tsv input1.tsv input2.tsv

Customising

funpack contains a large number of built-in rules which have been specifically written to pre-process UK BioBank data variables. These rules are stored in the following files:

  • funpack/data/variables_*.tsv: Cleaning rules for individual variables

  • funpack/data/datacodings_*.tsv: Cleaning rules for data codings

  • funpack/data/types.tsv: Cleaning rules for specific types

  • funpack/data/processing.tsv: Processing steps

You can customise or replace these files as you see fit. You can also pass your own versions of these files to funpack via the --variable_file, --datacoding_file, --type_file and --processing_file command-line options respectively. funpack will load all variable and datacoding files, and merge them into a single table which contains the cleaning rules for each variable.

Finally, you can use the --no_builtins option to bypass all of the built-in cleaning and processing rules.

Output

The main output of funpack is a plain-text tab-delimited[*]_ file which contains the input data, after cleaning and processing, potentially with some columns removed, and new columns added.

If you used the --non_numeric_file option, the main output file will only contain the numeric columns; non-numeric columns will be saved to a separate file.

You can use any tool of your choice to load this output file, such as Python, MATLAB, or Excel. It is also possible to pass the output back into funpack.

Loading output into MATLAB

If you are using MATLAB, you have several options for loading the funpack output. The best option is readtable, which will load column names, and will handle both non-numeric data and missing values. Use readtable like so:

data = readtable('out.tsv', 'FileType', 'text');

The readtable function returns a table object, which stores each column as a separate vector (or cell-array for non-numeric columns). If you are only interested in numeric columns, you can retrieve them as an array like this:

rawdata =  data(:, vartype('numeric')).Variables;

The readtable function will potentially rename the column names to ensure that they are are valid MATLAB identifiers. You can retrieve the original names from the table object like so:

colnames        = data.Properties.VariableDescriptions;
colnames        = regexp(colnames, '''(.+)''', 'tokens', 'once');
empty           = cellfun(@isempty, colnames);
colnames(empty) = data.Properties.VariableNames(empty);
colnames        = vertcat(colnames{:});

If you have used the --description_file option, you can load in the descriptions for each column as follows:

descs = readtable('descriptions.tsv', ...
                  'FileType', 'text', ...
                  'Delimiter', '\t',  ...
                  'ReadVariableNames',false);
descs = [descs; {'eid', 'ID'}];
idxs  = cellfun(@(x) find(strcmp(descs.Var1, x)), colnames, ...
                'UniformOutput', false);
idxs  = cell2mat(idxs);
descs = descs.Var2(idxs);

Tests

To run the test suite, you need to install some additional dependencies:

pip install fmrib_unpack[test]

Then you can run the test suite using pytest:

pytest

Citing

If you would like to cite funpack, please refer to its Zenodo page.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fmrib_unpack-1.0.0.tar.gz (1.5 MB view hashes)

Uploaded Source

Built Distribution

fmrib_unpack-1.0.0-py3-none-any.whl (1.5 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page