PyTFBS 1.0.0__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.
PyTFBS/__init__.py ADDED
File without changes
PyTFBS/tango.py ADDED
File without changes
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.4
2
+ Name: PyTFBS
3
+ Version: 1.0.0
4
+ Summary: PyTFBS: A Python Package for Transcription Factor Binding Site Prediction
5
+ Author-email: Tinghua Huang <thua45@126.com>
6
+ License: Acdemic
7
+ Project-URL: Homepage, https://github.com/thua45/pytfbs
8
+ Project-URL: Documentation, https://github.com/thua45/pytfbs#readme
9
+ Project-URL: Repository, https://github.com/thua45/pytfbs
10
+ Project-URL: Issues, https://github.com/thua45/pytfbs/issues
11
+ Keywords: PyTFBS,Transcription Factor,Binding Site
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Requires-Python: >=3.8
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: requests>=2.25.0
24
+ Requires-Dist: numpy>=1.21.0
25
+ Provides-Extra: dev
26
+ Requires-Dist: pytest>=6.0; extra == "dev"
27
+ Provides-Extra: test
28
+ Requires-Dist: pytest>=6.0; extra == "test"
29
+ Dynamic: license-file
30
+
31
+ # My Package
32
+
33
+ A Python package for dpredicting transcription factor binding sites.
34
+
35
+ ## Installation
36
+
37
+ ```bash
38
+ pip install PyTFBS
39
+ ```
40
+
41
+ ## Usage
42
+
43
+ ```python
44
+ import PyTFBS
45
+
46
+ result = PyTFBS.predict()
47
+ print(result)
48
+ ```
@@ -0,0 +1,8 @@
1
+ PyTFBS/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ PyTFBS/tango.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ pytfbs-1.0.0.dist-info/licenses/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ pytfbs-1.0.0.dist-info/METADATA,sha256=6oLSdACE4WCg5wqfKLa6rNl9GVO2b534i6Lzih-z4cM,1434
5
+ pytfbs-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
6
+ pytfbs-1.0.0.dist-info/entry_points.txt,sha256=N8I1wCyFgyCDVPlATKCyQ1Z9T67_G7uCK0-UUWZgZUs,43
7
+ pytfbs-1.0.0.dist-info/top_level.txt,sha256=BbnfbpEDU-Xl97YaKwHsMSRCocWgf1_BrmrSWjM4J4M,7
8
+ pytfbs-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ PyTFBS = PyTFBS.cli:main
File without changes
@@ -0,0 +1 @@
1
+ PyTFBS