HTSeq


NameHTSeq JSON
Version 2.0.5 PyPI version JSON
download
home_pagehttps://github.com/htseq
SummaryA framework to process and analyze data from high-throughput sequencing (HTS) assays
upload_time2023-12-13 05:01:40
maintainerFabio Zanini
docs_urlNone
authorSimon Anders, Fabio Zanini
requires_python
licenseGPL3
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![CI](https://github.com/htseq/htseq/actions/workflows/ci.yml/badge.svg?branch=main)
[![Documentation Status](https://readthedocs.org/projects/htseq/badge/?version=latest)](https://htseq.readthedocs.io)

# HTSeq
**DEVS**: https://github.com/htseq/htseq

**DOCS**: https://htseq.readthedocs.io

**CITATION** (please cite this new paper!): Putri et al. Analysing high-throughput sequencing data in Python with HTSeq 2.0. Bioinformatics, btac166, [https://doi.org/10.1093/bioinformatics/btac166](https://doi.org/10.1093/bioinformatics/btac166) (2022).

A Python library to facilitate programmatic analysis of data
from high-throughput sequencing (HTS) experiments. A popular component of ``HTSeq``
is ``htseq-count``, a script to quantify gene expression in bulk and single-cell RNA-Seq
and similar experiments.

## Requirements

To use ``HTSeq`` you need:

-  ``Python >= 3.7`` (**note**: ``Python 2.7`` support has been dropped)
-  ``numpy``
-  ``pysam``

To manipulate BigWig files, you also need:

- ``pyBigWig``

To run the ``htseq-qa`` script, you also need:

-  ``matplotlib``

To run ``htseq-count`` and ``htseq-count-barcodes`` with custom output formats for the counts table, you need:

- ``mtx`` file: ``scipy``
- ``h5ad`` file: ``anndata``
- ``loom`` file: ``loompy``

Both **Linux** and **OSX** are supported and binaries are provided on Pypi. We
would like to support **Windows** but currently lack the expertise to do so. If
you would like to take on the Windows release and maintenance, please open an
issue and we'll try to help.

A source package which should not require ``Cython`` nor ``SWIG`` is also
provided on Pypi.

To **develop** `HTSeq` you will **also** need:

-  ``Cython >=0.29.5``
-  ``SWIG >=3.0.8``

## Installation

### PIP

To install directly from PyPI:

```bash
pip install HTSeq
```

To install a specific version:

```bash
pip install 'HTSeq==2.0.0'
```

If this fails, please install all dependencies first:

```bash
pip install matplotlib
pip install Cython
pip install pysam
pip install HTSeq
```

### setup.py (distutils/setuptools)

Install the dependencies with your favourite tool (``pip``, ``conda``,
etc.).

To install ``HTSeq`` itself, run:

```bash
python setup.py build install
```

## Testing
To test locally, run

```bash
./test.sh
```

To test `htseq-count` alone, run it with the `-o` option.

A virtual environment is created in the `.venv` folder and `HTSeq` is installed inside it, including all modules and scripts.

## Authors
- 2021-: Givanna Putri ([ghar1821](https://github.com/ghar1821))
- 2016-: Fabio Zanini ([iosonofabio](https://github.com/iosonofabio))@ https://fabilab.org
- 2010-2015: Simon Anders ([simon-anders](https://github.com/simon-anders)), Wolfgang Huber

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/htseq",
    "name": "HTSeq",
    "maintainer": "Fabio Zanini",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "fabio.zanini@unsw.edu.au",
    "keywords": "",
    "author": "Simon Anders, Fabio Zanini",
    "author_email": "fabio.zanini@unsw.edu.au",
    "download_url": "",
    "platform": null,
    "description": "![CI](https://github.com/htseq/htseq/actions/workflows/ci.yml/badge.svg?branch=main)\n[![Documentation Status](https://readthedocs.org/projects/htseq/badge/?version=latest)](https://htseq.readthedocs.io)\n\n# HTSeq\n**DEVS**: https://github.com/htseq/htseq\n\n**DOCS**: https://htseq.readthedocs.io\n\n**CITATION** (please cite this new paper!): Putri et al. Analysing high-throughput sequencing data in Python with HTSeq 2.0. Bioinformatics, btac166, [https://doi.org/10.1093/bioinformatics/btac166](https://doi.org/10.1093/bioinformatics/btac166) (2022).\n\nA Python library to facilitate programmatic analysis of data\nfrom high-throughput sequencing (HTS) experiments. A popular component of ``HTSeq``\nis ``htseq-count``, a script to quantify gene expression in bulk and single-cell RNA-Seq\nand similar experiments.\n\n## Requirements\n\nTo use ``HTSeq`` you need:\n\n-  ``Python >= 3.7`` (**note**: ``Python 2.7`` support has been dropped)\n-  ``numpy``\n-  ``pysam``\n\nTo manipulate BigWig files, you also need:\n\n- ``pyBigWig``\n\nTo run the ``htseq-qa`` script, you also need:\n\n-  ``matplotlib``\n\nTo run ``htseq-count`` and ``htseq-count-barcodes`` with custom output formats for the counts table, you need:\n\n- ``mtx`` file: ``scipy``\n- ``h5ad`` file: ``anndata``\n- ``loom`` file: ``loompy``\n\nBoth **Linux** and **OSX** are supported and binaries are provided on Pypi. We\nwould like to support **Windows** but currently lack the expertise to do so. If\nyou would like to take on the Windows release and maintenance, please open an\nissue and we'll try to help.\n\nA source package which should not require ``Cython`` nor ``SWIG`` is also\nprovided on Pypi.\n\nTo **develop** `HTSeq` you will **also** need:\n\n-  ``Cython >=0.29.5``\n-  ``SWIG >=3.0.8``\n\n## Installation\n\n### PIP\n\nTo install directly from PyPI:\n\n```bash\npip install HTSeq\n```\n\nTo install a specific version:\n\n```bash\npip install 'HTSeq==2.0.0'\n```\n\nIf this fails, please install all dependencies first:\n\n```bash\npip install matplotlib\npip install Cython\npip install pysam\npip install HTSeq\n```\n\n### setup.py (distutils/setuptools)\n\nInstall the dependencies with your favourite tool (``pip``, ``conda``,\netc.).\n\nTo install ``HTSeq`` itself, run:\n\n```bash\npython setup.py build install\n```\n\n## Testing\nTo test locally, run\n\n```bash\n./test.sh\n```\n\nTo test `htseq-count` alone, run it with the `-o` option.\n\nA virtual environment is created in the `.venv` folder and `HTSeq` is installed inside it, including all modules and scripts.\n\n## Authors\n- 2021-: Givanna Putri ([ghar1821](https://github.com/ghar1821))\n- 2016-: Fabio Zanini ([iosonofabio](https://github.com/iosonofabio))@ https://fabilab.org\n- 2010-2015: Simon Anders ([simon-anders](https://github.com/simon-anders)), Wolfgang Huber\n",
    "bugtrack_url": null,
    "license": "GPL3",
    "summary": "A framework to process and analyze data from high-throughput sequencing (HTS) assays",
    "version": "2.0.5",
    "project_urls": {
        "Homepage": "https://github.com/htseq"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a54f9c40a9684e5554f2efa6fb9706a299bf7defa59ce6853fe773cd6062b75d",
                "md5": "fb9de740dbd654cce0730430cdbb1951",
                "sha256": "3df9e3fe6be02b5f8c45b4af8f163017aa56291a4c9114be0042db981ac1c908"
            },
            "downloads": -1,
            "filename": "HTSeq-2.0.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb9de740dbd654cce0730430cdbb1951",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 358195,
            "upload_time": "2023-12-13T05:01:40",
            "upload_time_iso_8601": "2023-12-13T05:01:40.553912Z",
            "url": "https://files.pythonhosted.org/packages/a5/4f/9c40a9684e5554f2efa6fb9706a299bf7defa59ce6853fe773cd6062b75d/HTSeq-2.0.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fa1f47c2f7f93e2714f7bcd8ad4b5a8073140af0ec7527b0383f2b78fda28f0",
                "md5": "0cb87d162d3279e573f5bae0e41b2cd6",
                "sha256": "a0441e9f5cc89828c71d9ecb2c3e8e653b0e9ec967c43958103891dafc4d2df0"
            },
            "downloads": -1,
            "filename": "HTSeq-2.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0cb87d162d3279e573f5bae0e41b2cd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2030482,
            "upload_time": "2023-12-13T05:11:04",
            "upload_time_iso_8601": "2023-12-13T05:11:04.155604Z",
            "url": "https://files.pythonhosted.org/packages/5f/a1/f47c2f7f93e2714f7bcd8ad4b5a8073140af0ec7527b0383f2b78fda28f0/HTSeq-2.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2cb27bef61b0d2df21b246f382a746f60c6e895ef1487860daf801da4a7767e",
                "md5": "78fec1294b57b002dd8d1db1c4a1ebff",
                "sha256": "676a577c48102834f171b5c381265b22c22e69145302f157610c4ed2757cccb8"
            },
            "downloads": -1,
            "filename": "HTSeq-2.0.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "78fec1294b57b002dd8d1db1c4a1ebff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 359676,
            "upload_time": "2023-12-13T05:03:29",
            "upload_time_iso_8601": "2023-12-13T05:03:29.215580Z",
            "url": "https://files.pythonhosted.org/packages/d2/cb/27bef61b0d2df21b246f382a746f60c6e895ef1487860daf801da4a7767e/HTSeq-2.0.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adc2a70f73f5dbb458d7cb34b5962b1a75440380e02a640eaf457b4d71fa86b8",
                "md5": "58a2a3914b2f89088902ad2e7217a7c2",
                "sha256": "9de97c2e0ca9d222d05527803240d28fd921706130ee7f7147412a91c06874c8"
            },
            "downloads": -1,
            "filename": "HTSeq-2.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58a2a3914b2f89088902ad2e7217a7c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2197604,
            "upload_time": "2023-12-13T05:11:56",
            "upload_time_iso_8601": "2023-12-13T05:11:56.205729Z",
            "url": "https://files.pythonhosted.org/packages/ad/c2/a70f73f5dbb458d7cb34b5962b1a75440380e02a640eaf457b4d71fa86b8/HTSeq-2.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cae6ec4ca1ca5d80111b539390fc5964e8e9f828030916090e6a3c2d7bff0dc3",
                "md5": "718a9e78003f7c8a2b93f099b026ce25",
                "sha256": "f932ddca7d09e9c6cf5a0d47b36f1309abd080bc9d6c28a85cbdc43e594d44c8"
            },
            "downloads": -1,
            "filename": "HTSeq-2.0.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "718a9e78003f7c8a2b93f099b026ce25",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 373285,
            "upload_time": "2023-12-13T05:06:46",
            "upload_time_iso_8601": "2023-12-13T05:06:46.445327Z",
            "url": "https://files.pythonhosted.org/packages/ca/e6/ec4ca1ca5d80111b539390fc5964e8e9f828030916090e6a3c2d7bff0dc3/HTSeq-2.0.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63a56fa0de7fc539dfe3693dab4c03bdaa7052498ba6a01950fd94526fad33b7",
                "md5": "3a2dfb86ae2791def8eeffa7fa1c86ee",
                "sha256": "8e8b130e82049c850f434cf7f143cd2e5c56cdc0bb3bb92cb4412d1496b3c310"
            },
            "downloads": -1,
            "filename": "HTSeq-2.0.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a2dfb86ae2791def8eeffa7fa1c86ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 378928,
            "upload_time": "2023-12-13T05:05:00",
            "upload_time_iso_8601": "2023-12-13T05:05:00.579311Z",
            "url": "https://files.pythonhosted.org/packages/63/a5/6fa0de7fc539dfe3693dab4c03bdaa7052498ba6a01950fd94526fad33b7/HTSeq-2.0.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbc2277a16964de03be09fdee48ad191826fa6f08a21038d70de6457979508a9",
                "md5": "430e36799c70d991263dbb5f39eb61f3",
                "sha256": "b5b337bca3e4ade6333b42debca0ffce6644d0384c43ec505c0aa52669792fab"
            },
            "downloads": -1,
            "filename": "HTSeq-2.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "430e36799c70d991263dbb5f39eb61f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2075363,
            "upload_time": "2023-12-13T04:59:47",
            "upload_time_iso_8601": "2023-12-13T04:59:47.662921Z",
            "url": "https://files.pythonhosted.org/packages/db/c2/277a16964de03be09fdee48ad191826fa6f08a21038d70de6457979508a9/HTSeq-2.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0be09cbfd114f63df31418d8bac3f88c13f9b5964685f40b62a7c648fb4b1c0",
                "md5": "cde3b339c891c21cfa4c7ed471844bed",
                "sha256": "43b4ea95bbea9608deab032eee6d07aa33b27fa64f06198ef6a405b30e6515f6"
            },
            "downloads": -1,
            "filename": "HTSeq-2.0.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cde3b339c891c21cfa4c7ed471844bed",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 358712,
            "upload_time": "2023-12-13T05:05:31",
            "upload_time_iso_8601": "2023-12-13T05:05:31.440148Z",
            "url": "https://files.pythonhosted.org/packages/d0/be/09cbfd114f63df31418d8bac3f88c13f9b5964685f40b62a7c648fb4b1c0/HTSeq-2.0.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c417b25367552809c9ebff83f1b8ada6f9be0cc67a6702bbbed4d227e70b5845",
                "md5": "8a2eeb6e804bdebb11f26ab5ce81986a",
                "sha256": "a857d78fb4b826f8c4250083ac3e0ba7eeb51cfa2e4cecfdc8f675e6f4ce0a95"
            },
            "downloads": -1,
            "filename": "HTSeq-2.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8a2eeb6e804bdebb11f26ab5ce81986a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2035803,
            "upload_time": "2023-12-13T05:12:07",
            "upload_time_iso_8601": "2023-12-13T05:12:07.280860Z",
            "url": "https://files.pythonhosted.org/packages/c4/17/b25367552809c9ebff83f1b8ada6f9be0cc67a6702bbbed4d227e70b5845/HTSeq-2.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-13 05:01:40",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "htseq"
}
        
Elapsed time: 0.18115s