nmrml2isa - nmrML to ISA-Tab parsing tool
Project description
Overview
nmrml2isa is a Python3 program that can be used to generate an ISA-Tab structured investigation out of nmrML files, providing the backbone of a study that can then be edited with an ISA editing tool (see MetaboLights pre-packaged ISA Creator)
Install
See the Installation page of the online documentation.
Use
See the Usage page and the Examples page for more detailed descriptions of usage and examples.
CLI
The parser comes with a simple one-liner:
mzml2isa -i /path/to/nmrml_files/ -o /path/to/out_folder -s name_of_study
Module
It possible to import nmrml2isa as a Python module:
from nmrml2isa import parsing
in_dir = "/path/to/nmrml_files/"
out_dir = "/path/to/out_folder/"
study_identifier_name = "name_of_study"
parsing.full_parse(in_dir, out_dir, study_identifier_name)
Meta extraction
If you just want to extract the meta information without writing them in ISA-Tab files, it is possible to do so either by running the nmrml2isa.nmrml module as main:
python -m nmrml2isa.nmrml /path/to/your/file.nmrML
# this will produce a JSON dict of all extracted metadata
Or within a python program with the nmrml submodule:
from nmrml2isa import nmrml
nmrml_path = "/path/to/file.nmrML"
nmrml_meta = nmrml.nmrMLmeta(nmrml_path)
# python dictionnary
print(nmrml_meta.meta)
# json dictionnary
print(nmrml_meta.meta_json)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for nmrml2isa-0.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0f17b2cfd8b697d42ecbe75fa194b2a389226e6eba187ce602c303ba159ba19 |
|
MD5 | 22a94824bea81d1890913a28bdeee1e7 |
|
BLAKE2b-256 | f978883ba755b9d1617aba41973ee23a59a367a65568e26d4c0fcffceaf6f554 |