snplib 1.1.10__py3-none-any.whl → 1.2.11__py3-none-any.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.
- snplib/__init__.py +8 -8
- snplib/finalreport/__init__.py +7 -7
- snplib/finalreport/_finalreport.py +305 -253
- snplib/format/__init__.py +19 -19
- snplib/format/__settings.py +7 -7
- snplib/format/_plink.py +291 -291
- snplib/format/_snp.py +113 -113
- snplib/parentage/__init__.py +15 -15
- snplib/parentage/_discov.py +102 -102
- snplib/parentage/_isagmark.py +15 -15
- snplib/parentage/_verif.py +91 -91
- snplib/statistics/__init__.py +16 -16
- snplib/statistics/_callrate.py +60 -60
- snplib/statistics/_freq.py +67 -67
- snplib/statistics/_snphwe.py +132 -132
- {snplib-1.1.10.dist-info → snplib-1.2.11.dist-info}/LICENSE +674 -674
- {snplib-1.1.10.dist-info → snplib-1.2.11.dist-info}/METADATA +80 -80
- snplib-1.2.11.dist-info/RECORD +22 -0
- {snplib-1.1.10.dist-info → snplib-1.2.11.dist-info}/WHEEL +1 -1
- snplib-1.1.10.dist-info/RECORD +0 -22
- {snplib-1.1.10.dist-info → snplib-1.2.11.dist-info}/top_level.txt +0 -0
@@ -1,80 +1,80 @@
|
|
1
|
-
Metadata-Version: 2.2
|
2
|
-
Name: snplib
|
3
|
-
Version: 1.
|
4
|
-
Summary: Snptools is a tool for Single Nucleotide Polymorphism (SNP) data processing
|
5
|
-
Author-email: Igor <igor.loschinin@gmail.com>
|
6
|
-
License: GNU
|
7
|
-
Project-URL: Homepage, https://github.com/IgorekLoschinin/snptools
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
9
|
-
Classifier: Operating System :: OS Independent
|
10
|
-
Requires-Python: >=3.10
|
11
|
-
Description-Content-Type: text/markdown
|
12
|
-
License-File: LICENSE
|
13
|
-
Requires-Dist: numpy>=2.2.3
|
14
|
-
Requires-Dist: pandas>=2.2.3
|
15
|
-
Requires-Dist: six>=1.17.0
|
16
|
-
Requires-Dist: swifter>=1.4.0
|
17
|
-
Requires-Dist: xlrd>=2.0.1
|
18
|
-
Requires-Dist: XlsxWriter>=3.2.2
|
19
|
-
Requires-Dist: openpyxl>=3.1.5
|
20
|
-
Requires-Dist: pydantic>=2.10.6
|
21
|
-
|
22
|
-
# snptools
|
23
|
-
<p align="center">
|
24
|
-
<img width="150" height="150" src="./iconlib.png">
|
25
|
-
</p>
|
26
|
-
|
27
|
-
**Snptools** is a tool for SNP (Single Nucleotide Polymorphism) data processing,
|
28
|
-
parentage calculation and call rate estimation.
|
29
|
-
|
30
|
-
## Introduction
|
31
|
-
|
32
|
-
SNP (Single Nucleotide Polymorphism) represent genetic variations, that can
|
33
|
-
be used to analyze genetic data. SNPTools provides a set of tools for working
|
34
|
-
with SNP data, including the following capabilities:
|
35
|
-
|
36
|
-
- SNP data processing - FinalReport.
|
37
|
-
- Parentage Verification and Parentage Discovery Based on SNP Genotypes (ICAR).
|
38
|
-
- Call rate estimation (percentage of missing data).
|
39
|
-
- Processing and preparation of data in plink formats.
|
40
|
-
|
41
|
-
## Installation
|
42
|
-
You can install snptools via pip from [PyPI](https://pypi.org/project/snplib/):
|
43
|
-
```
|
44
|
-
pip install snplib
|
45
|
-
```
|
46
|
-
|
47
|
-
## Usage
|
48
|
-
Snptools provides commands for a variety of operations. Here are examples of
|
49
|
-
usage:
|
50
|
-
|
51
|
-
#### SNP data processing:
|
52
|
-
```
|
53
|
-
from snplib import FinalReport
|
54
|
-
```
|
55
|
-
|
56
|
-
#### Computation of parentage:
|
57
|
-
```
|
58
|
-
from snplib import Discovery, Verification
|
59
|
-
```
|
60
|
-
|
61
|
-
#### Preparation format files:
|
62
|
-
```
|
63
|
-
from snplib import (
|
64
|
-
Snp, make_fam, make_ped, make_lgen, make_map
|
65
|
-
)
|
66
|
-
```
|
67
|
-
|
68
|
-
#### Stat:
|
69
|
-
```
|
70
|
-
from snplib import (
|
71
|
-
hwe, hwe_test, call_rate, allele_freq, minor_allele_freq
|
72
|
-
)
|
73
|
-
```
|
74
|
-
|
75
|
-
## Documentation
|
76
|
-
Detailed documentation on how to use SNPTools is available see the [docs](https://snptools.readthedocs.io/en/latest/).
|
77
|
-
|
78
|
-
## License
|
79
|
-
This project is licensed under the GNU General Public License - see the
|
80
|
-
LICENSE file for details.
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: snplib
|
3
|
+
Version: 1.2.11
|
4
|
+
Summary: Snptools is a tool for Single Nucleotide Polymorphism (SNP) data processing
|
5
|
+
Author-email: Igor <igor.loschinin@gmail.com>
|
6
|
+
License: GNU
|
7
|
+
Project-URL: Homepage, https://github.com/IgorekLoschinin/snptools
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Classifier: Operating System :: OS Independent
|
10
|
+
Requires-Python: >=3.10
|
11
|
+
Description-Content-Type: text/markdown
|
12
|
+
License-File: LICENSE
|
13
|
+
Requires-Dist: numpy>=2.2.3
|
14
|
+
Requires-Dist: pandas>=2.2.3
|
15
|
+
Requires-Dist: six>=1.17.0
|
16
|
+
Requires-Dist: swifter>=1.4.0
|
17
|
+
Requires-Dist: xlrd>=2.0.1
|
18
|
+
Requires-Dist: XlsxWriter>=3.2.2
|
19
|
+
Requires-Dist: openpyxl>=3.1.5
|
20
|
+
Requires-Dist: pydantic>=2.10.6
|
21
|
+
|
22
|
+
# snptools
|
23
|
+
<p align="center">
|
24
|
+
<img width="150" height="150" src="./iconlib.png">
|
25
|
+
</p>
|
26
|
+
|
27
|
+
**Snptools** is a tool for SNP (Single Nucleotide Polymorphism) data processing,
|
28
|
+
parentage calculation and call rate estimation.
|
29
|
+
|
30
|
+
## Introduction
|
31
|
+
|
32
|
+
SNP (Single Nucleotide Polymorphism) represent genetic variations, that can
|
33
|
+
be used to analyze genetic data. SNPTools provides a set of tools for working
|
34
|
+
with SNP data, including the following capabilities:
|
35
|
+
|
36
|
+
- SNP data processing - FinalReport.
|
37
|
+
- Parentage Verification and Parentage Discovery Based on SNP Genotypes (ICAR).
|
38
|
+
- Call rate estimation (percentage of missing data).
|
39
|
+
- Processing and preparation of data in plink formats.
|
40
|
+
|
41
|
+
## Installation
|
42
|
+
You can install snptools via pip from [PyPI](https://pypi.org/project/snplib/):
|
43
|
+
```
|
44
|
+
pip install snplib
|
45
|
+
```
|
46
|
+
|
47
|
+
## Usage
|
48
|
+
Snptools provides commands for a variety of operations. Here are examples of
|
49
|
+
usage:
|
50
|
+
|
51
|
+
#### SNP data processing:
|
52
|
+
```
|
53
|
+
from snplib import FinalReport
|
54
|
+
```
|
55
|
+
|
56
|
+
#### Computation of parentage:
|
57
|
+
```
|
58
|
+
from snplib import Discovery, Verification
|
59
|
+
```
|
60
|
+
|
61
|
+
#### Preparation format files:
|
62
|
+
```
|
63
|
+
from snplib import (
|
64
|
+
Snp, make_fam, make_ped, make_lgen, make_map
|
65
|
+
)
|
66
|
+
```
|
67
|
+
|
68
|
+
#### Stat:
|
69
|
+
```
|
70
|
+
from snplib import (
|
71
|
+
hwe, hwe_test, call_rate, allele_freq, minor_allele_freq
|
72
|
+
)
|
73
|
+
```
|
74
|
+
|
75
|
+
## Documentation
|
76
|
+
Detailed documentation on how to use SNPTools is available see the [docs](https://snptools.readthedocs.io/en/latest/).
|
77
|
+
|
78
|
+
## License
|
79
|
+
This project is licensed under the GNU General Public License - see the
|
80
|
+
LICENSE file for details.
|
@@ -0,0 +1,22 @@
|
|
1
|
+
snplib/__init__.py,sha256=xw0VDA6vCABCOwfQHF2L2paFnc4Q_ss7OvFLJYjeU-U,204
|
2
|
+
snplib/finalreport/__init__.py,sha256=yF48v321n31WqnzzX3F_vZ41t0NkeWruJVIOnM1yLj0,168
|
3
|
+
snplib/finalreport/_finalreport.py,sha256=M22ZkKhV_XsLH1BLTWIE7dFPCQLWANG7e42ckTi4Ars,7822
|
4
|
+
snplib/format/__init__.py,sha256=nA7SIUSKZumP62yWvstew8ASLsC4Uz__Ywr8roGdc18,280
|
5
|
+
snplib/format/__settings.py,sha256=UUK1kc3Fnzl9S3U7MQEbGrumyzogKNW0nllys41ymfk,296
|
6
|
+
snplib/format/_plink.py,sha256=2MfAtCpYoAIcJ-oVcHOs9o27ruoS6qz1MW7H4Co07Wo,10663
|
7
|
+
snplib/format/_snp.py,sha256=vKUhsNHjfRCXPxNV0wP1xcPM831SOGIu4RPmuLYh-g4,3285
|
8
|
+
snplib/parentage/__init__.py,sha256=9wgWZxDJA0FfXs8MT-VVF3O7LfZhDh9y-jEV4_wE4-c,295
|
9
|
+
snplib/parentage/_discov.py,sha256=YHM83V92uIc8wBtKySU3cschikCCg1vc4wY2fWkg5Xc,3282
|
10
|
+
snplib/parentage/_isagmark.py,sha256=djEKEHn15vEzcovIh2t_r9PLJOztEM40enWZJf1Un44,371
|
11
|
+
snplib/parentage/_verif.py,sha256=lcfFMZrNC6ymIMU2cel9Dudgqc3OZ6CIASjDUhnos7E,3110
|
12
|
+
snplib/parentage/isag_disc.pl,sha256=XzjcsnO_kwPg4WaE2YMuZXBNHQ9ixi6pg5n2mfGOuJU,14219
|
13
|
+
snplib/parentage/isag_verif.pl,sha256=e_c4YGd5_JXGWqFQwmcxjp6hEkdcqpK_5y5MqJ8J9YY,8254
|
14
|
+
snplib/statistics/__init__.py,sha256=2xN_dUTProTBUzPW3oKi_CZ0QlqjIUlxbtGfsBqLD2c,318
|
15
|
+
snplib/statistics/_callrate.py,sha256=Lq8cSPRh-xtGFsANKd0YOt1ucWSZjcsk8z_qocpfq6Y,1926
|
16
|
+
snplib/statistics/_freq.py,sha256=ZxuZLm8vFS60YKMcrTZDNuj1Y22FkqfaFp76R4hivLY,1690
|
17
|
+
snplib/statistics/_snphwe.py,sha256=lvIuRYYs625tduNa_DU5OfqWUB7fHnXnh5VoSkNQe_Q,3485
|
18
|
+
snplib-1.2.11.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
19
|
+
snplib-1.2.11.dist-info/METADATA,sha256=HLRbRaM-j1SckrH61L4N2pstK1_iqzKaa-FjcAb_0Pc,2264
|
20
|
+
snplib-1.2.11.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
21
|
+
snplib-1.2.11.dist-info/top_level.txt,sha256=CGCrLXuCSyXPCTwMFQjPxQR7b93FFFft56sAPPun_2g,7
|
22
|
+
snplib-1.2.11.dist-info/RECORD,,
|
snplib-1.1.10.dist-info/RECORD
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
snplib/__init__.py,sha256=xhjj4ZywdwCq91GBh1zfBP_TwFW26-KpHcCUUVvMdgI,196
|
2
|
-
snplib/finalreport/__init__.py,sha256=Yk49x8t-STIfsdP6QLMtaGm1gTj_n-XS8kchPguvW1g,161
|
3
|
-
snplib/finalreport/_finalreport.py,sha256=dE44NsJ5ciGyFCh2LpFncf4LwQDI_-l4LatOPg879Sk,6148
|
4
|
-
snplib/format/__init__.py,sha256=3W_l_sP1u9HV3HWwnsJxPGw9anrVknstqLaJmWQaG0k,261
|
5
|
-
snplib/format/__settings.py,sha256=kyAVZ4tiU61sNr3jQhjXbLXRyBA3pjFfCw3fOfSkY14,289
|
6
|
-
snplib/format/_plink.py,sha256=cjT6PkvDJr8KwvQo76i7_Hm1Og4bASYCDN9G7CHsQ00,10372
|
7
|
-
snplib/format/_snp.py,sha256=oI-V4-_w28aX-VxoimywLDDnX6owhdjLbqt9a54_ouU,3172
|
8
|
-
snplib/parentage/__init__.py,sha256=bN3mWTxmaFQ1qzRtyMLaAoxfomz6jnoWa-kmnJ9q_fE,280
|
9
|
-
snplib/parentage/_discov.py,sha256=qGlNzpl4xKOWRr6-fi1osylzizgiPO8vCus8VE56nec,3180
|
10
|
-
snplib/parentage/_isagmark.py,sha256=0xi9YhuIpU7zf16HnWw1XIkcQLk4rTNeAeCE-5p9hQE,356
|
11
|
-
snplib/parentage/_verif.py,sha256=VbX46dC4tl4Qeuw65aRg1s6hSn0FI25Hy9-3U_jxmrg,3019
|
12
|
-
snplib/parentage/isag_disc.pl,sha256=XzjcsnO_kwPg4WaE2YMuZXBNHQ9ixi6pg5n2mfGOuJU,14219
|
13
|
-
snplib/parentage/isag_verif.pl,sha256=e_c4YGd5_JXGWqFQwmcxjp6hEkdcqpK_5y5MqJ8J9YY,8254
|
14
|
-
snplib/statistics/__init__.py,sha256=XJFU7mEwAJJ2M187jEkO8rFNYKoxF-g9KF_stS7eFFw,302
|
15
|
-
snplib/statistics/_callrate.py,sha256=yfHxnNVpcDfV3qxZVwrk2RWPgy9dTf7NHWczDUORwtY,1866
|
16
|
-
snplib/statistics/_freq.py,sha256=ZPZBZM3xq9EseOxuMzRVvzkjjFfaaA4ZvF7XI8ctON0,1623
|
17
|
-
snplib/statistics/_snphwe.py,sha256=KcoRGwovMCc53-GJ8VfYs_3ZEHObgt8B0EvrW5nFnmM,3353
|
18
|
-
snplib-1.1.10.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
19
|
-
snplib-1.1.10.dist-info/METADATA,sha256=hmE1zLFNhDwwbl03PVupafM1n-NGOV2yKYmKzi1a6lw,2184
|
20
|
-
snplib-1.1.10.dist-info/WHEEL,sha256=nn6H5-ilmfVryoAQl3ZQ2l8SH5imPWFpm1A5FgEuFV4,91
|
21
|
-
snplib-1.1.10.dist-info/top_level.txt,sha256=CGCrLXuCSyXPCTwMFQjPxQR7b93FFFft56sAPPun_2g,7
|
22
|
-
snplib-1.1.10.dist-info/RECORD,,
|
File without changes
|