read5


Nameread5 JSON
Version 1.2.4 PyPI version JSON
download
home_pagehttps://github.com/JannesSP/read5
SummaryWrapper to read fast5, slow5, blow5 and pod5 files.
upload_time2024-03-06 10:11:32
maintainer
docs_urlNone
authorJannes Spangenberg
requires_python>=3.8,<3.11
licenseGNU General Public License v3
keywords read5 slow5 blow5 fast5 pod5 ont oxford nanopore technologies nanopore raw data wrapper
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Installation
------------

Pypi/pip
~~~~~~~~

.. code:: bash

   pip install read5

Conda
~~~~~

Pod5 is now available via `conda <https://anaconda.org/jannessp/pod5>`__ (19.07.2023).

.. code:: bash

   conda install mamba
   mamba create -n read5 -c jannessp read5
   conda activate read5

Alternatively you can create the environment using the
`conda.recipe/env.yml <conda.recipe/env.yml>`__ file.

.. code:: bash

   conda install mamba
   mamba env create -f conda.recipe/env.yml
   conda activate read5

--------------

Usage
-----

`Click here to see a full documentation about the classes and
function. <https://jannessp.github.io/read5.github.io/>`__

*my_file* can be a fast5, slow5, blow5 or pod5 file. The wrapper detects
the file format depending on the file extension.

Small example:
~~~~~~~~~~~~~~

.. code:: python

   from read5 import read # or from read5.Reader import read

   r5 = read(my_file) # file with on of these extensions: .fast5, .slow5, .blow5, .pod5
   for readid in r5:
       signal = r5.getSignal(readid) # returns raw integer values stored in the file
       pA_signal = r5.getpASignal(readid) # returns pA signal
       norm_signal = r5.getZNormSignal(readid) # returns normalised read signal: norm_signal = (signal - median(signal)) / mad(signal)
       polyAstdSignal = r5.getPolyAStandardizedSignal(readid, polyAstart, polyAend) # returns polyA standardized read signal
       channel = r5.getChannelNumber(readid)
       sampleid = r5.getSampleID(readid)
       runid = r5.getRunID(readid)

   readid_list = r5.getReads()

File Reader Classes
~~~~~~~~~~~~~~~~~~~

If you want to use the file readers you can import the corresponding
class like this:

.. code:: python

   from read5.Fast5Reader import Fast5Reader # contains the Fast5 Reader class
   from read5.Slow5Reader import Slow5Reader # contains the Slow5 Reader class
   from read5.Pod5Reader import Pod5Reader # contains the Pod5 Reader class

Abstract File Reader Class
~~~~~~~~~~~~~~~~~~~~~~~~~~

.. code:: python

   from read5.AbstractFileReader import AbstractFileReader

Possible Exceptions
~~~~~~~~~~~~~~~~~~~

.. code:: python

   from read5.Exceptions import UnknownFileFormatException, UnknownNormalizationMode

-  UnknownFileFormatException: is raised, when the file extension does
   not match one of [‘.fast5’, ‘.slow5’, ‘.blow5’, ‘pod5’]
-  UnknownNormalizationMode: is raised, when an unknown mode is provided
   for the signal normalization function

Full Documentation
------------------

Created with `pdoc3 <https://pdoc3.github.io/pdoc/>`__. Can be found
`here <https://jannessp.github.io/read5.github.io/>`__.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/JannesSP/read5",
    "name": "read5",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<3.11",
    "maintainer_email": "",
    "keywords": "read5,slow5,blow5,fast5,pod5,ONT,Oxford Nanopore Technologies,Nanopore,raw data,wrapper",
    "author": "Jannes Spangenberg",
    "author_email": "jannes.spangenberg@uni-jena.de",
    "download_url": "https://files.pythonhosted.org/packages/d5/e1/8e11165500c6e026d28daca771942a7c8f8c1daf8e4dd243ce633cc491ff/read5-1.2.4.tar.gz",
    "platform": null,
    "description": "Installation\n------------\n\nPypi/pip\n~~~~~~~~\n\n.. code:: bash\n\n   pip install read5\n\nConda\n~~~~~\n\nPod5 is now available via `conda <https://anaconda.org/jannessp/pod5>`__ (19.07.2023).\n\n.. code:: bash\n\n   conda install mamba\n   mamba create -n read5 -c jannessp read5\n   conda activate read5\n\nAlternatively you can create the environment using the\n`conda.recipe/env.yml <conda.recipe/env.yml>`__ file.\n\n.. code:: bash\n\n   conda install mamba\n   mamba env create -f conda.recipe/env.yml\n   conda activate read5\n\n--------------\n\nUsage\n-----\n\n`Click here to see a full documentation about the classes and\nfunction. <https://jannessp.github.io/read5.github.io/>`__\n\n*my_file* can be a fast5, slow5, blow5 or pod5 file. The wrapper detects\nthe file format depending on the file extension.\n\nSmall example:\n~~~~~~~~~~~~~~\n\n.. code:: python\n\n   from read5 import read # or from read5.Reader import read\n\n   r5 = read(my_file) # file with on of these extensions: .fast5, .slow5, .blow5, .pod5\n   for readid in r5:\n       signal = r5.getSignal(readid) # returns raw integer values stored in the file\n       pA_signal = r5.getpASignal(readid) # returns pA signal\n       norm_signal = r5.getZNormSignal(readid) # returns normalised read signal: norm_signal = (signal - median(signal)) / mad(signal)\n       polyAstdSignal = r5.getPolyAStandardizedSignal(readid, polyAstart, polyAend) # returns polyA standardized read signal\n       channel = r5.getChannelNumber(readid)\n       sampleid = r5.getSampleID(readid)\n       runid = r5.getRunID(readid)\n\n   readid_list = r5.getReads()\n\nFile Reader Classes\n~~~~~~~~~~~~~~~~~~~\n\nIf you want to use the file readers you can import the corresponding\nclass like this:\n\n.. code:: python\n\n   from read5.Fast5Reader import Fast5Reader # contains the Fast5 Reader class\n   from read5.Slow5Reader import Slow5Reader # contains the Slow5 Reader class\n   from read5.Pod5Reader import Pod5Reader # contains the Pod5 Reader class\n\nAbstract File Reader Class\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n   from read5.AbstractFileReader import AbstractFileReader\n\nPossible Exceptions\n~~~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n   from read5.Exceptions import UnknownFileFormatException, UnknownNormalizationMode\n\n-  UnknownFileFormatException: is raised, when the file extension does\n   not match one of [\u2018.fast5\u2019, \u2018.slow5\u2019, \u2018.blow5\u2019, \u2018pod5\u2019]\n-  UnknownNormalizationMode: is raised, when an unknown mode is provided\n   for the signal normalization function\n\nFull Documentation\n------------------\n\nCreated with `pdoc3 <https://pdoc3.github.io/pdoc/>`__. Can be found\n`here <https://jannessp.github.io/read5.github.io/>`__.\n",
    "bugtrack_url": null,
    "license": "GNU General Public License v3",
    "summary": "Wrapper to read fast5, slow5, blow5 and pod5 files.",
    "version": "1.2.4",
    "project_urls": {
        "Homepage": "https://github.com/JannesSP/read5"
    },
    "split_keywords": [
        "read5",
        "slow5",
        "blow5",
        "fast5",
        "pod5",
        "ont",
        "oxford nanopore technologies",
        "nanopore",
        "raw data",
        "wrapper"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "457202cae0e36689cd2e3d2eba1c39b857a04d0dbb4107015939e071e5114d01",
                "md5": "153f400aae408c373c08c67642614273",
                "sha256": "9f953899514cba5719e2eb20c5d86a495bedc37210d9c4fd892e86cf505726fe"
            },
            "downloads": -1,
            "filename": "read5-1.2.4-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "153f400aae408c373c08c67642614273",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.8,<3.11",
            "size": 26918,
            "upload_time": "2024-03-06T10:11:27",
            "upload_time_iso_8601": "2024-03-06T10:11:27.370873Z",
            "url": "https://files.pythonhosted.org/packages/45/72/02cae0e36689cd2e3d2eba1c39b857a04d0dbb4107015939e071e5114d01/read5-1.2.4-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5e18e11165500c6e026d28daca771942a7c8f8c1daf8e4dd243ce633cc491ff",
                "md5": "0cc2e55bcc5e0aa38aae19fe170d2bc4",
                "sha256": "447f22c62c74e8579744fb9a0fc30109f4ee2031b6fd86072608ee4f5dfd5c5b"
            },
            "downloads": -1,
            "filename": "read5-1.2.4.tar.gz",
            "has_sig": false,
            "md5_digest": "0cc2e55bcc5e0aa38aae19fe170d2bc4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<3.11",
            "size": 1508401,
            "upload_time": "2024-03-06T10:11:32",
            "upload_time_iso_8601": "2024-03-06T10:11:32.790442Z",
            "url": "https://files.pythonhosted.org/packages/d5/e1/8e11165500c6e026d28daca771942a7c8f8c1daf8e4dd243ce633cc491ff/read5-1.2.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-06 10:11:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "JannesSP",
    "github_project": "read5",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "read5"
}
        
Elapsed time: 0.19534s