HTSeq 2.0.7__cp312-cp312-macosx_10_9_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- HTSeq/StepVector.py +629 -0
- HTSeq/StretchVector.py +491 -0
- HTSeq/_HTSeq.cpython-312-darwin.so +0 -0
- HTSeq/_HTSeq_internal.py +85 -0
- HTSeq/_StepVector.cpython-312-darwin.so +0 -0
- HTSeq/__init__.py +1131 -0
- HTSeq/_version.py +1 -0
- HTSeq/features.py +462 -0
- HTSeq/scripts/__init__.py +0 -0
- HTSeq/scripts/count.py +492 -0
- HTSeq/scripts/count_features/__init__.py +0 -0
- HTSeq/scripts/count_features/count_features_per_file.py +465 -0
- HTSeq/scripts/count_features/reads_io_processor.py +187 -0
- HTSeq/scripts/count_features/reads_stats.py +92 -0
- HTSeq/scripts/count_with_barcodes.py +743 -0
- HTSeq/scripts/qa.py +336 -0
- HTSeq/scripts/utils.py +372 -0
- HTSeq/utils.py +95 -0
- HTSeq-2.0.7.data/scripts/htseq-count +5 -0
- HTSeq-2.0.7.data/scripts/htseq-count-barcodes +5 -0
- HTSeq-2.0.7.data/scripts/htseq-qa +5 -0
- HTSeq-2.0.7.dist-info/LICENSE +674 -0
- HTSeq-2.0.7.dist-info/METADATA +130 -0
- HTSeq-2.0.7.dist-info/RECORD +26 -0
- HTSeq-2.0.7.dist-info/WHEEL +5 -0
- HTSeq-2.0.7.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: HTSeq
|
|
3
|
+
Version: 2.0.7
|
|
4
|
+
Summary: A framework to process and analyze data from high-throughput sequencing (HTS) assays
|
|
5
|
+
Home-page: https://github.com/htseq
|
|
6
|
+
Author: Simon Anders, Fabio Zanini
|
|
7
|
+
Author-email: fabio.zanini@unsw.edu.au
|
|
8
|
+
Maintainer: Fabio Zanini
|
|
9
|
+
Maintainer-email: fabio.zanini@unsw.edu.au
|
|
10
|
+
License: GPL3
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Science/Research
|
|
15
|
+
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
|
|
16
|
+
Classifier: Operating System :: POSIX
|
|
17
|
+
Classifier: Programming Language :: Python
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Requires-Dist: numpy
|
|
21
|
+
Requires-Dist: pysam
|
|
22
|
+
Provides-Extra: htseq-qa
|
|
23
|
+
Requires-Dist: matplotlib >=1.4 ; extra == 'htseq-qa'
|
|
24
|
+
Provides-Extra: test
|
|
25
|
+
Requires-Dist: scipy >=1.5.0 ; extra == 'test'
|
|
26
|
+
Requires-Dist: pytest >=6.2.5 ; extra == 'test'
|
|
27
|
+
Requires-Dist: pandas >=1.1.0 ; extra == 'test'
|
|
28
|
+
Requires-Dist: matplotlib >=1.4 ; extra == 'test'
|
|
29
|
+
|
|
30
|
+

|
|
31
|
+
[](https://htseq.readthedocs.io)
|
|
32
|
+
|
|
33
|
+
# HTSeq
|
|
34
|
+
**DEVS**: https://github.com/htseq/htseq
|
|
35
|
+
|
|
36
|
+
**DOCS**: https://htseq.readthedocs.io
|
|
37
|
+
|
|
38
|
+
**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).
|
|
39
|
+
|
|
40
|
+
A Python library to facilitate programmatic analysis of data
|
|
41
|
+
from high-throughput sequencing (HTS) experiments. A popular component of ``HTSeq``
|
|
42
|
+
is ``htseq-count``, a script to quantify gene expression in bulk and single-cell RNA-Seq
|
|
43
|
+
and similar experiments.
|
|
44
|
+
|
|
45
|
+
## Requirements
|
|
46
|
+
|
|
47
|
+
To use ``HTSeq`` you need:
|
|
48
|
+
|
|
49
|
+
- ``Python >= 3.7`` (**note**: ``Python 2.7`` support has been dropped)
|
|
50
|
+
- ``numpy``
|
|
51
|
+
- ``pysam``
|
|
52
|
+
|
|
53
|
+
To manipulate BigWig files, you also need:
|
|
54
|
+
|
|
55
|
+
- ``pyBigWig``
|
|
56
|
+
|
|
57
|
+
To run the ``htseq-qa`` script, you also need:
|
|
58
|
+
|
|
59
|
+
- ``matplotlib``
|
|
60
|
+
|
|
61
|
+
To run ``htseq-count`` and ``htseq-count-barcodes`` with custom output formats for the counts table, you need:
|
|
62
|
+
|
|
63
|
+
- ``mtx`` file: ``scipy``
|
|
64
|
+
- ``h5ad`` file: ``anndata``
|
|
65
|
+
- ``loom`` file: ``loompy``
|
|
66
|
+
|
|
67
|
+
Both **Linux** and **OSX** are supported and binaries are provided on Pypi. We
|
|
68
|
+
would like to support **Windows** but currently lack the expertise to do so. If
|
|
69
|
+
you would like to take on the Windows release and maintenance, please open an
|
|
70
|
+
issue and we'll try to help.
|
|
71
|
+
|
|
72
|
+
A source package which should not require ``Cython`` nor ``SWIG`` is also
|
|
73
|
+
provided on Pypi.
|
|
74
|
+
|
|
75
|
+
To **develop** `HTSeq` you will **also** need:
|
|
76
|
+
|
|
77
|
+
- ``Cython >=0.29.5``
|
|
78
|
+
- ``SWIG >=3.0.8``
|
|
79
|
+
|
|
80
|
+
## Installation
|
|
81
|
+
|
|
82
|
+
### PIP
|
|
83
|
+
|
|
84
|
+
To install directly from PyPI:
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
pip install HTSeq
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
To install a specific version:
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
pip install 'HTSeq==2.0.0'
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
If this fails, please install all dependencies first:
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
pip install matplotlib
|
|
100
|
+
pip install Cython
|
|
101
|
+
pip install pysam
|
|
102
|
+
pip install HTSeq
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
### setup.py (distutils/setuptools)
|
|
106
|
+
|
|
107
|
+
Install the dependencies with your favourite tool (``pip``, ``conda``,
|
|
108
|
+
etc.).
|
|
109
|
+
|
|
110
|
+
To install ``HTSeq`` itself, run:
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
python setup.py build install
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
## Testing
|
|
117
|
+
To test locally, run
|
|
118
|
+
|
|
119
|
+
```bash
|
|
120
|
+
./test.sh
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
To test `htseq-count` alone, run it with the `-o` option.
|
|
124
|
+
|
|
125
|
+
A virtual environment is created in the `.venv` folder and `HTSeq` is installed inside it, including all modules and scripts.
|
|
126
|
+
|
|
127
|
+
## Authors
|
|
128
|
+
- 2021-: Givanna Putri ([ghar1821](https://github.com/ghar1821))
|
|
129
|
+
- 2016-: Fabio Zanini ([iosonofabio](https://github.com/iosonofabio))@ https://fabilab.org
|
|
130
|
+
- 2010-2015: Simon Anders ([simon-anders](https://github.com/simon-anders)), Wolfgang Huber
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
HTSeq/StepVector.py,sha256=0a94Rac9pzMRJoENX_MB26Y6M_2vanWvczEonf-AOrU,25180
|
|
2
|
+
HTSeq/StretchVector.py,sha256=hlbHcAumfbT_Cw-5mbTNu9sDO2HIYcTOUc0-mgn4Cu4,17874
|
|
3
|
+
HTSeq/_HTSeq.cpython-312-darwin.so,sha256=GL3FXgcG63kjFpfO1ZiWbQBYPv-DtuiAIAt93YLIo_Y,660376
|
|
4
|
+
HTSeq/_HTSeq_internal.py,sha256=yJRVObZqV9IwEkV2Sxr4SuPHDKUHGGbTF514-tzVCRw,3486
|
|
5
|
+
HTSeq/_StepVector.cpython-312-darwin.so,sha256=VXiwNOlceJ32w3KCF82No0nqr-x_xLcGzB2TXCU3fNs,125736
|
|
6
|
+
HTSeq/__init__.py,sha256=2aQBapRtdvJASiDddKUeN78rEmJ8XGaiIt4hYoXEiqM,40518
|
|
7
|
+
HTSeq/_version.py,sha256=Ch1foRTConPN5Ppjf6BSKYuXYy0kR0uQuUlG41WPUX4,21
|
|
8
|
+
HTSeq/features.py,sha256=4LtHv4ovqX7k7BWp_A99j6o12U9b6lK3ADEU6owF9b4,16742
|
|
9
|
+
HTSeq/utils.py,sha256=TmwW3pNHhZAjeJp3pF9S-AMpXlzdRIpPjmXVM4YxNUs,2888
|
|
10
|
+
HTSeq/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
HTSeq/scripts/count.py,sha256=OiOGqvFzJv_f63y2KtPcdQml3Ar6t5hRYiNWMswNnls,16683
|
|
12
|
+
HTSeq/scripts/count_with_barcodes.py,sha256=4LHC088jflITde54mm2v_b_8UqpXZfFLLqngjSVXnHY,27575
|
|
13
|
+
HTSeq/scripts/qa.py,sha256=te4ndMOvdCOpDPT-8sEdLDMqr9xcDT1lZVyFwGiRdxc,10427
|
|
14
|
+
HTSeq/scripts/utils.py,sha256=taD2ENVoEBfB3z8eeq9zbRHOjQPW_MHiIIBRERo9YWU,10418
|
|
15
|
+
HTSeq/scripts/count_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
HTSeq/scripts/count_features/count_features_per_file.py,sha256=dOYC4xE5epgBnqL1pOKIHMtrxcyXs8N3nBalg-YkS4k,15773
|
|
17
|
+
HTSeq/scripts/count_features/reads_io_processor.py,sha256=0YIUmlbYq_LhfzCne1a1mwI3-R-fLuJ5uhh2IkVgpuk,6364
|
|
18
|
+
HTSeq/scripts/count_features/reads_stats.py,sha256=JcTWNTrCwmpc6zDzd5msW7iRcbL8fKknoO55T1DJzr4,2799
|
|
19
|
+
HTSeq-2.0.7.data/scripts/htseq-count,sha256=NXwgriCihpOlvf0EXKkimmV_lQjubvB6r51BvohLESk,65
|
|
20
|
+
HTSeq-2.0.7.data/scripts/htseq-count-barcodes,sha256=0tSPIF4DJOYq7xsgdnm3jRh2W8knOnCxnfTr_C3wg60,93
|
|
21
|
+
HTSeq-2.0.7.data/scripts/htseq-qa,sha256=gg-Jy16UJAccVdv5CaUZZyO3b_gdYfO11prgAJY0EwU,59
|
|
22
|
+
HTSeq-2.0.7.dist-info/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
|
|
23
|
+
HTSeq-2.0.7.dist-info/METADATA,sha256=oeg15VLtBelVld3z0IPR5ExKenlnS_tu7AWWgHtL3jQ,3831
|
|
24
|
+
HTSeq-2.0.7.dist-info/WHEEL,sha256=KYtn_mzb_QwZSHwPlosUO3fDl70znfUFngLlrLVHeBY,111
|
|
25
|
+
HTSeq-2.0.7.dist-info/top_level.txt,sha256=W3Y4w3SxbKN6Yf8TF1JXvVtZin7F6fLQp-mMC96m-mA,6
|
|
26
|
+
HTSeq-2.0.7.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
HTSeq
|