Skip to content

Commit

Permalink
Update pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
MsMatias committed Oct 25, 2019
1 parent 8e67a1e commit becc53f
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
21 changes: 18 additions & 3 deletions Mixture/Mixture.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions Mixture/Mixture.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
MANIFEST.in
README.md
setup.py
Mixture/Mixer.py
Expand Down
6 changes: 3 additions & 3 deletions Mixture/build/lib/Mixture/nuSvmRobust.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
# ----------------
Expand Down
2 changes: 1 addition & 1 deletion Mixture/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit becc53f

Please sign in to comment.