SSDR 0.0.0.0.0__tar.gz

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.
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: SSDR
3
+ Version: 0.0.0.0.0
4
+ Summary: SSDR: Self-Supervised learning for Single-Cell Dimensionality Reduction.
5
+ Home-page: https://github.com/wangzichenbioinformatics/SSDR
6
+ Author: Wangchen
7
+ Author-email: wch_bioinformatics@163.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: requires-python
20
+ Dynamic: summary
21
+
22
+
23
+ # SSDR
24
+
25
+ You can use it.
26
+ https://github.com/wangzichenbioinformatics/SSDR
@@ -0,0 +1,5 @@
1
+
2
+ # SSDR
3
+
4
+ You can use it.
5
+ https://github.com/wangzichenbioinformatics/SSDR
@@ -0,0 +1,14 @@
1
+ import matplotlib.pyplot as plt
2
+ import numpy as np
3
+ import pandas as pd
4
+ import scanpy as sc
5
+ import os,sys,stat
6
+ import scipy.sparse as ss
7
+ from sklearn.decomposition import TruncatedSVD
8
+ from sklearn.preprocessing import normalize
9
+ from sklearn.base import BaseEstimator
10
+ from sklearn.utils import check_array
11
+ from os.path import isfile
12
+ import subprocess
13
+ import os, pkg_resources
14
+ #from subprocess import check_call
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: SSDR
3
+ Version: 0.0.0.0.0
4
+ Summary: SSDR: Self-Supervised learning for Single-Cell Dimensionality Reduction.
5
+ Home-page: https://github.com/wangzichenbioinformatics/SSDR
6
+ Author: Wangchen
7
+ Author-email: wch_bioinformatics@163.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: requires-python
20
+ Dynamic: summary
21
+
22
+
23
+ # SSDR
24
+
25
+ You can use it.
26
+ https://github.com/wangzichenbioinformatics/SSDR
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ SSDR/__init__.py
4
+ SSDR.egg-info/PKG-INFO
5
+ SSDR.egg-info/SOURCES.txt
6
+ SSDR.egg-info/dependency_links.txt
7
+ SSDR.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ SSDR
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,22 @@
1
+ import setuptools
2
+
3
+ with open("README.md", "r") as fh:
4
+ long_description = fh.read()
5
+
6
+ setuptools.setup(
7
+ name="SSDR",
8
+ version="0.0.0.0.0",
9
+ author="Wangchen",
10
+ author_email="wch_bioinformatics@163.com",
11
+ description="SSDR: Self-Supervised learning for Single-Cell Dimensionality Reduction.",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
+ url="https://github.com/wangzichenbioinformatics/SSDR",
15
+ packages=setuptools.find_packages(),
16
+ classifiers=[
17
+ "Programming Language :: Python :: 3",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ ],
21
+ python_requires='>=3.10',
22
+ )