diff --git a/Mixture/Mixture.egg-info/PKG-INFO b/Mixture/Mixture.egg-info/PKG-INFO index b877aaa..a8225d6 100644 --- a/Mixture/Mixture.egg-info/PKG-INFO +++ b/Mixture/Mixture.egg-info/PKG-INFO @@ -1,13 +1,28 @@ -Metadata-Version: 1.2 +Metadata-Version: 2.1 Name: Mixture -Version: 0.7 +Version: 0.8 Summary: Mixture for Py Home-page: https://github.com/MsMatias/MixturePy Author: Mixture License: MIT -Description: UNKNOWN +Description: # MIXTUREpy + + A v-SVR based noise constrained Recursive Feature Extraction algorithm for robust deconvolution of cell-types mixture from molecular signatures en python + + Since the significant impact of immunotherapy in cancer, the estimation of the immune cell-type proportions present in a tumor becomes crucial. Currently, the deconvolution of the cell mixture content of a tumor is carried out by different analytic tools, yet the accuracy of inferred cell type proportions has room for improvement. We improve tumor immune environment characterization developing MIXTURE, an analytical method based on a noise constrained recursive variable selection for a support vector regression + + + ### Prerequisites + + The current "functional like" version of the software requires the following libraries, however, this package download automatically yours dependencies + * pandas + * numpy + * sklearn + * multiprocessing + * joblib Platform: UNKNOWN Classifier: Programming Language :: Python :: 3 Classifier: License :: OSI Approved :: MIT License Classifier: Operating System :: OS Independent Requires-Python: >=3.6 +Description-Content-Type: text/markdown diff --git a/Mixture/Mixture.egg-info/SOURCES.txt b/Mixture/Mixture.egg-info/SOURCES.txt index c3da508..aecf6f3 100644 --- a/Mixture/Mixture.egg-info/SOURCES.txt +++ b/Mixture/Mixture.egg-info/SOURCES.txt @@ -1,3 +1,4 @@ +MANIFEST.in README.md setup.py Mixture/Mixer.py diff --git a/Mixture/build/lib/Mixture/nuSvmRobust.py b/Mixture/build/lib/Mixture/nuSvmRobust.py index 4e13402..e1e2c24 100644 --- a/Mixture/build/lib/Mixture/nuSvmRobust.py +++ b/Mixture/build/lib/Mixture/nuSvmRobust.py @@ -11,9 +11,9 @@ # from ipynb.fs.full.tuneSvmForDeconv import tuneSvmForDeconv from Mixture import tuneSvmForDeconv -pd.set_option('display.max_columns', None) -pd.set_option('display.max_rows', None) -pd.set_option('display.max_colwidth', -1) +#pd.set_option('display.max_columns', None) +#pd.set_option('display.max_rows', None) +#pd.set_option('display.max_colwidth', -1) # Function nuSvmRobust # ---------------- diff --git a/Mixture/setup.py b/Mixture/setup.py index 5dce525..31e4355 100644 --- a/Mixture/setup.py +++ b/Mixture/setup.py @@ -4,7 +4,7 @@ long_description = fh.read() setup(name='Mixture', - version='0.7', + version='0.8', description='Mixture for Py', long_description=long_description, long_description_content_type="text/markdown",