nmraspecds


Namenmraspecds JSON
Version 0.2.0 PyPI version JSON
download
home_pagehttps://www.nmraspecds.de
SummaryASpecD derived Package for recipe driven data analysis of NMR spectra
upload_time2025-01-12 14:49:30
maintainerNone
docs_urlNone
authorMirjam Schröder, Florian Taube, Till Biskup
requires_python>=3.7
licenseBSD
keywords spectroscopy nmr data processing and analysis good scientific practice recipe-driven data analysis reproducible science
VCS
bugtrack_url
requirements aspecd matplotlib numpy scipy setuptools nmrglue spindata
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ==========
NMRAspecds
==========

.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.13293054.svg
   :target: https://doi.org/10.5281/zenodo.13293054
   :align: right

The NMRAspecds package provides tools for handling experimental data obtained using nuclear magnetic resonance (NMR) spectroscopy and is derived from the `ASpecD framework <https://docs.aspecd.de/>`_,  hence all data generated with the nmraspecds package are completely reproducible and have a complete history.

What is even better: Actual data processing and analysis no longer requires programming skills, but is as simple as writing a text file summarising all the steps you want to have been performed on your dataset(s) in an organised way. Curious? Have a look at the following example::

    format:
      type: ASpecD recipe
      version: '0.2'

    settings:
      default_package: nmraspecds

    datasets:
      - /path/to/first/dataset
      - /path/to/second/dataset

    tasks:
      - kind: processing
        type: Normalisation
        parameters:
          properties:
            kind: scan_number
      - kind: singleplot
        type: SinglePlotter1D
        properties:
          filename:
            - first_dataset.pdf
            - second_dataset.pdf


Interested in more real-live examples? Check out the growing list of examples providing complete recipes for different needs.


Features
========

A list of features:

* Fully reproducible processing and analysis of NMR data.

* Gap-less record of each processing/analysis step, including explicit and implicit parameters.

* Import of Bruker NMR data

* Generic representation of NMR data, independent of the original format.

* Datasets contain both, numerical data and all crucial metadata, a prerequisite for FAIR data.

* Generic plotting capabilities, easily extendable

* Report generation using pre-defined templates

* Recipe-driven data analysis, allowing tasks to be performed fully unattended in the background


And to make it even more convenient for users and future-proof:

* Open source project written in Python (>= 3.7)

* Developed mostly test-driven

* Extensive user and API documentation



Target audience
===============

The NMRAspecds package addresses scientists working with nuclear magnetic resonance (NMR) data on a daily base and concerned with reproducibility. Due to being based on the ASpecD framework, the NMRAspecds package ensures reproducibility and---as much as possible---replicability of data processing, starting from recording data and ending with their final (graphical) representation, e.g., in a peer-reviewed publication. This is achieved by automatically creating a gap-less record of each operation performed on your data. If you do care about reproducibility and are looking for a system that helps you to achieve this goal, the NMRAspecds package may well be interesting for you.


How to cite
===========

NMRAspecds is free software. However, if you use NMRAspecds for your own research, please cite the software:

  * Mirjam Schröder. NMRAspecds (2024). `doi:10.5281/zenodo.13293054 <https://doi.org/10.5281/zenodo.13293054>`_

To make things easier, NMRAspecds has a `DOI <https://doi.org/10.5281/zenodo.13293054>`_ provided by `Zenodo <https://zenodo.org/>`_, and you may click on the badge below to directly access the record associated with it. Note that this DOI refers to the package as such and always forwards to the most current version.

.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.13293054.svg
   :target: https://doi.org/10.5281/zenodo.13293054


Installation
============

To install the NMRAspecds package on your computer (sensibly within a Python virtual environment), open a terminal (activate your virtual environment), and type in the following::

    pip install nmraspecds


License
=======

This program is free software: you can redistribute it and/or modify it under the terms of the **BSD License**. However, if you use NMRAspecds for your own research, please cite it appropriately.


Related projects
================

There is a number of related packages users of the NMRAspecds package may well be interested in, as they have a similar scope, focussing on spectroscopy and reproducible research.

* `ASpecD <https://docs.aspecd.de/>`_

  A Python framework for the analysis of spectroscopic data focussing on reproducibility and good scientific practice. The framework the NMRAspecds package is based on, developed by T. Biskup.

* `FitPy <https://docs.fitpy.de/>`_

  Framework for the advanced fitting of models to spectroscopic data focussing on reproducibility, developed by T. Biskup.

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.nmraspecds.de",
    "name": "nmraspecds",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "spectroscopy, NMR, data processing and analysis, good scientific practice, recipe-driven data analysis, reproducible science",
    "author": "Mirjam Schr\u00f6der, Florian Taube, Till Biskup",
    "author_email": "code@mirjam-schroeder.de",
    "download_url": "https://files.pythonhosted.org/packages/47/13/6b48fd876dbf874fc40214c5de55677670a040048f67ec13825fe033dc07/nmraspecds-0.2.0.tar.gz",
    "platform": null,
    "description": "==========\nNMRAspecds\n==========\n\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.13293054.svg\n   :target: https://doi.org/10.5281/zenodo.13293054\n   :align: right\n\nThe NMRAspecds package provides tools for handling experimental data obtained using nuclear magnetic resonance (NMR) spectroscopy and is derived from the `ASpecD framework <https://docs.aspecd.de/>`_,  hence all data generated with the nmraspecds package are completely reproducible and have a complete history.\n\nWhat is even better: Actual data processing and analysis no longer requires programming skills, but is as simple as writing a text file summarising all the steps you want to have been performed on your dataset(s) in an organised way. Curious? Have a look at the following example::\n\n    format:\n      type: ASpecD recipe\n      version: '0.2'\n\n    settings:\n      default_package: nmraspecds\n\n    datasets:\n      - /path/to/first/dataset\n      - /path/to/second/dataset\n\n    tasks:\n      - kind: processing\n        type: Normalisation\n        parameters:\n          properties:\n            kind: scan_number\n      - kind: singleplot\n        type: SinglePlotter1D\n        properties:\n          filename:\n            - first_dataset.pdf\n            - second_dataset.pdf\n\n\nInterested in more real-live examples? Check out the growing list of examples providing complete recipes for different needs.\n\n\nFeatures\n========\n\nA list of features:\n\n* Fully reproducible processing and analysis of NMR data.\n\n* Gap-less record of each processing/analysis step, including explicit and implicit parameters.\n\n* Import of Bruker NMR data\n\n* Generic representation of NMR data, independent of the original format.\n\n* Datasets contain both, numerical data and all crucial metadata, a prerequisite for FAIR data.\n\n* Generic plotting capabilities, easily extendable\n\n* Report generation using pre-defined templates\n\n* Recipe-driven data analysis, allowing tasks to be performed fully unattended in the background\n\n\nAnd to make it even more convenient for users and future-proof:\n\n* Open source project written in Python (>= 3.7)\n\n* Developed mostly test-driven\n\n* Extensive user and API documentation\n\n\n\nTarget audience\n===============\n\nThe NMRAspecds package addresses scientists working with nuclear magnetic resonance (NMR) data on a daily base and concerned with reproducibility. Due to being based on the ASpecD framework, the NMRAspecds package ensures reproducibility and---as much as possible---replicability of data processing, starting from recording data and ending with their final (graphical) representation, e.g., in a peer-reviewed publication. This is achieved by automatically creating a gap-less record of each operation performed on your data. If you do care about reproducibility and are looking for a system that helps you to achieve this goal, the NMRAspecds package may well be interesting for you.\n\n\nHow to cite\n===========\n\nNMRAspecds is free software. However, if you use NMRAspecds for your own research, please cite the software:\n\n  * Mirjam Schr\u00f6der. NMRAspecds (2024). `doi:10.5281/zenodo.13293054 <https://doi.org/10.5281/zenodo.13293054>`_\n\nTo make things easier, NMRAspecds has a `DOI <https://doi.org/10.5281/zenodo.13293054>`_ provided by `Zenodo <https://zenodo.org/>`_, and you may click on the badge below to directly access the record associated with it. Note that this DOI refers to the package as such and always forwards to the most current version.\n\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.13293054.svg\n   :target: https://doi.org/10.5281/zenodo.13293054\n\n\nInstallation\n============\n\nTo install the NMRAspecds package on your computer (sensibly within a Python virtual environment), open a terminal (activate your virtual environment), and type in the following::\n\n    pip install nmraspecds\n\n\nLicense\n=======\n\nThis program is free software: you can redistribute it and/or modify it under the terms of the **BSD License**. However, if you use NMRAspecds for your own research, please cite it appropriately.\n\n\nRelated projects\n================\n\nThere is a number of related packages users of the NMRAspecds package may well be interested in, as they have a similar scope, focussing on spectroscopy and reproducible research.\n\n* `ASpecD <https://docs.aspecd.de/>`_\n\n  A Python framework for the analysis of spectroscopic data focussing on reproducibility and good scientific practice. The framework the NMRAspecds package is based on, developed by T. Biskup.\n\n* `FitPy <https://docs.fitpy.de/>`_\n\n  Framework for the advanced fitting of models to spectroscopic data focussing on reproducibility, developed by T. Biskup.\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "ASpecD derived Package for recipe driven data analysis of NMR spectra",
    "version": "0.2.0",
    "project_urls": {
        "Documentation": "https://docs.nmraspecds.de",
        "Homepage": "https://www.nmraspecds.de",
        "Source": "https://github.com/MirjamSchr/nmraspecds"
    },
    "split_keywords": [
        "spectroscopy",
        " nmr",
        " data processing and analysis",
        " good scientific practice",
        " recipe-driven data analysis",
        " reproducible science"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c43c5d1b4c2cf46023f26ffd4ae8631bdc2f9daf691e664aac74b01edcef12a",
                "md5": "be1ccde5047bf1e85e54eabce0416c89",
                "sha256": "942d7e461b0f8e414672c52b0ade4eb4a1399d9b93e0e059d3035b1df3796be3"
            },
            "downloads": -1,
            "filename": "nmraspecds-0.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "be1ccde5047bf1e85e54eabce0416c89",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 22266,
            "upload_time": "2025-01-12T14:49:29",
            "upload_time_iso_8601": "2025-01-12T14:49:29.141846Z",
            "url": "https://files.pythonhosted.org/packages/7c/43/c5d1b4c2cf46023f26ffd4ae8631bdc2f9daf691e664aac74b01edcef12a/nmraspecds-0.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47136b48fd876dbf874fc40214c5de55677670a040048f67ec13825fe033dc07",
                "md5": "8a7d26f5918bfb6091401a90454a1dfc",
                "sha256": "934343235a99f6ed2d1f40a4176a2bc9fd944bf6c7d49f774fb4b328396e23e3"
            },
            "downloads": -1,
            "filename": "nmraspecds-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8a7d26f5918bfb6091401a90454a1dfc",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 29481,
            "upload_time": "2025-01-12T14:49:30",
            "upload_time_iso_8601": "2025-01-12T14:49:30.826009Z",
            "url": "https://files.pythonhosted.org/packages/47/13/6b48fd876dbf874fc40214c5de55677670a040048f67ec13825fe033dc07/nmraspecds-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-12 14:49:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MirjamSchr",
    "github_project": "nmraspecds",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "aspecd",
            "specs": [
                [
                    ">=",
                    "0.10"
                ]
            ]
        },
        {
            "name": "matplotlib",
            "specs": []
        },
        {
            "name": "numpy",
            "specs": [
                [
                    "~=",
                    "1.26.3"
                ]
            ]
        },
        {
            "name": "scipy",
            "specs": [
                [
                    "~=",
                    "1.11.4"
                ]
            ]
        },
        {
            "name": "setuptools",
            "specs": [
                [
                    ">=",
                    "70.0.0"
                ]
            ]
        },
        {
            "name": "nmrglue",
            "specs": [
                [
                    "~=",
                    "0.10"
                ]
            ]
        },
        {
            "name": "spindata",
            "specs": [
                [
                    "~=",
                    "1.13"
                ]
            ]
        }
    ],
    "lcname": "nmraspecds"
}
        
Elapsed time: 4.27430s