Name | HTSeq JSON |
Version |
2.0.9
JSON |
| download |
home_page | https://github.com/htseq |
Summary | A framework to process and analyze data from high-throughput sequencing (HTS) assays |
upload_time | 2024-09-12 04:07:49 |
maintainer | Fabio Zanini |
docs_url | None |
author | Simon Anders, Fabio Zanini |
requires_python | None |
license | GPL3 |
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": null,
"maintainer_email": "fabio.zanini@unsw.edu.au",
"keywords": null,
"author": "Simon Anders, Fabio Zanini",
"author_email": "fabio.zanini@unsw.edu.au",
"download_url": "https://files.pythonhosted.org/packages/5d/40/e32ff538b46acc5b19b807cf2127c9852b659fd5b63835a5024d902862bf/htseq-2.0.9.tar.gz",
"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.9",
"project_urls": {
"Homepage": "https://github.com/htseq"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "aa2254bc7e8fb986ea4d084de4575ee88f02f29a9c0283ebdcf760feb98a6258",
"md5": "7e7dbcefea7f50f290427926994c5973",
"sha256": "7f49a0b975eb37b51be0e493e81ab6889fe7dbf94099f0c5a7a4ec7b12e02f9c"
},
"downloads": -1,
"filename": "HTSeq-2.0.9-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7e7dbcefea7f50f290427926994c5973",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 348763,
"upload_time": "2024-09-12T04:15:49",
"upload_time_iso_8601": "2024-09-12T04:15:49.478015Z",
"url": "https://files.pythonhosted.org/packages/aa/22/54bc7e8fb986ea4d084de4575ee88f02f29a9c0283ebdcf760feb98a6258/HTSeq-2.0.9-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e051186f56b65204b288ddddbc42ad56aafa4b79e1d3611cd79044d633266ac",
"md5": "0ba69bbb2cb974860087892dd7d57ff1",
"sha256": "81326ec698ed6809e084536af8ea6f27f3c461d06d4dc33673a164c8e12b1d36"
},
"downloads": -1,
"filename": "HTSeq-2.0.9-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "0ba69bbb2cb974860087892dd7d57ff1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1976495,
"upload_time": "2024-09-12T04:07:58",
"upload_time_iso_8601": "2024-09-12T04:07:58.572057Z",
"url": "https://files.pythonhosted.org/packages/6e/05/1186f56b65204b288ddddbc42ad56aafa4b79e1d3611cd79044d633266ac/HTSeq-2.0.9-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ecf3bafb27df456d69f84b8afe3393ee606b5aceddb56dbf99e0007baf8e5c03",
"md5": "3943b21909e5daf77fd9808ff7678ed9",
"sha256": "4f25d34dcf5d298b56de1b38b94fc4bc600261c994402f156bf97b01c5b23f37"
},
"downloads": -1,
"filename": "HTSeq-2.0.9-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "3943b21909e5daf77fd9808ff7678ed9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 350176,
"upload_time": "2024-09-12T04:15:46",
"upload_time_iso_8601": "2024-09-12T04:15:46.306682Z",
"url": "https://files.pythonhosted.org/packages/ec/f3/bafb27df456d69f84b8afe3393ee606b5aceddb56dbf99e0007baf8e5c03/HTSeq-2.0.9-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c3476726dfcc234285bdd52e96218978b22ea84d9a0beb403934faf37ea6394",
"md5": "5564465755d82b428fec13d57ee7af74",
"sha256": "fb8550b4838bf949d4f28621f7513c447b65f965aff596a278879e5862253c5d"
},
"downloads": -1,
"filename": "HTSeq-2.0.9-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "5564465755d82b428fec13d57ee7af74",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2162772,
"upload_time": "2024-09-12T04:07:53",
"upload_time_iso_8601": "2024-09-12T04:07:53.706029Z",
"url": "https://files.pythonhosted.org/packages/2c/34/76726dfcc234285bdd52e96218978b22ea84d9a0beb403934faf37ea6394/HTSeq-2.0.9-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e031e6a5c97d712aad58418d858a58c2ca5475a55bef864627d58ef318a6c685",
"md5": "9b49c3cb6270623faf83492f6a3a78fb",
"sha256": "890d2d66452b376d64f60d2832d026fc3dc0a9ea093c1107151d1df6f34eaac8"
},
"downloads": -1,
"filename": "HTSeq-2.0.9-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9b49c3cb6270623faf83492f6a3a78fb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 352547,
"upload_time": "2024-09-12T04:16:18",
"upload_time_iso_8601": "2024-09-12T04:16:18.524531Z",
"url": "https://files.pythonhosted.org/packages/e0/31/e6a5c97d712aad58418d858a58c2ca5475a55bef864627d58ef318a6c685/HTSeq-2.0.9-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c325138be35e32988db67ce55d7939c3026b383014ca7ea620f0218796398607",
"md5": "fc4b0f237a840bfc9c71e578cef7a065",
"sha256": "6db887e6ebf1571666b0922d8449bae123c743f17b728aee42abe619b166de0c"
},
"downloads": -1,
"filename": "HTSeq-2.0.9-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "fc4b0f237a840bfc9c71e578cef7a065",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2137662,
"upload_time": "2024-09-12T04:07:52",
"upload_time_iso_8601": "2024-09-12T04:07:52.850760Z",
"url": "https://files.pythonhosted.org/packages/c3/25/138be35e32988db67ce55d7939c3026b383014ca7ea620f0218796398607/HTSeq-2.0.9-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fa0baeea727ea3cd0dc1d259bd851f43a4c18e948ab787a941e7a6f65aa098d",
"md5": "df61417e6fcc7512f7e2c8e0807bc7fc",
"sha256": "a0883e975906a90e2b95b44997f4831cc480759be0ca75f8fd567881340faba4"
},
"downloads": -1,
"filename": "HTSeq-2.0.9-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "df61417e6fcc7512f7e2c8e0807bc7fc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 343798,
"upload_time": "2024-09-12T04:17:16",
"upload_time_iso_8601": "2024-09-12T04:17:16.520992Z",
"url": "https://files.pythonhosted.org/packages/7f/a0/baeea727ea3cd0dc1d259bd851f43a4c18e948ab787a941e7a6f65aa098d/HTSeq-2.0.9-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f554946087ff7d46aae4646fc61680ef5a6483ca1a3371cb9bf3e428e4d49068",
"md5": "6e859e9a8f9722f17869f716f0890d54",
"sha256": "c462e30c095109b76631f566d8d94212712a082154ff4a18e6dba7dab74c0720"
},
"downloads": -1,
"filename": "HTSeq-2.0.9-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "6e859e9a8f9722f17869f716f0890d54",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2035281,
"upload_time": "2024-09-12T04:07:53",
"upload_time_iso_8601": "2024-09-12T04:07:53.929989Z",
"url": "https://files.pythonhosted.org/packages/f5/54/946087ff7d46aae4646fc61680ef5a6483ca1a3371cb9bf3e428e4d49068/HTSeq-2.0.9-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f12eb43ca63f39e58dc79db249ea44062282ac492eeaf98261d9954c8128b826",
"md5": "d47da6c8b51f84517c5456b3208dca3a",
"sha256": "9fd3b751129dff0ec7ae224e749c001d72eaf8e0545bceb4f5044c575d0c0659"
},
"downloads": -1,
"filename": "HTSeq-2.0.9-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "d47da6c8b51f84517c5456b3208dca3a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 349150,
"upload_time": "2024-09-12T04:19:17",
"upload_time_iso_8601": "2024-09-12T04:19:17.643529Z",
"url": "https://files.pythonhosted.org/packages/f1/2e/b43ca63f39e58dc79db249ea44062282ac492eeaf98261d9954c8128b826/HTSeq-2.0.9-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b541efc400431621928477873dbfe84d543a96b3db046a3e5154ab9ce7ab220",
"md5": "74cd23a87a856168b2c364d5f201cae3",
"sha256": "a988cdb5da7362f915f242cd6df87e2639045de689cf19a41e2610fc260b8bb4"
},
"downloads": -1,
"filename": "HTSeq-2.0.9-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "74cd23a87a856168b2c364d5f201cae3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1978602,
"upload_time": "2024-09-12T04:07:49",
"upload_time_iso_8601": "2024-09-12T04:07:49.063332Z",
"url": "https://files.pythonhosted.org/packages/8b/54/1efc400431621928477873dbfe84d543a96b3db046a3e5154ab9ce7ab220/HTSeq-2.0.9-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d40e32ff538b46acc5b19b807cf2127c9852b659fd5b63835a5024d902862bf",
"md5": "dffc93f8c8624915c51520cb6002604e",
"sha256": "3bbec23f033d35f40ab33a40c2b5c43f75e382c424b804c099dea635b52c2b12"
},
"downloads": -1,
"filename": "htseq-2.0.9.tar.gz",
"has_sig": false,
"md5_digest": "dffc93f8c8624915c51520cb6002604e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 468908,
"upload_time": "2024-09-12T04:07:49",
"upload_time_iso_8601": "2024-09-12T04:07:49.513376Z",
"url": "https://files.pythonhosted.org/packages/5d/40/e32ff538b46acc5b19b807cf2127c9852b659fd5b63835a5024d902862bf/htseq-2.0.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-12 04:07:49",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "htseq"
}