Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
insilicolife committed Sep 30, 2019
1 parent 9bb1196 commit 25d1649
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MICTI.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: MICTI
Version: 0.1.4
Version: 0.1.5
Summary: Feature extraction approach in single-cell gene expression profiling for cell-type marker identification.
Home-page: https://github.com/insilicolife/micti
Author: Nigatu Ayele
Expand Down
1 change: 1 addition & 0 deletions MICTI.egg-info/requires.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ seaborn
pyensembl
bs4
requests
html5lib
6 changes: 3 additions & 3 deletions MICTI/MARKERS.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,13 +199,13 @@ def get_Visualization(self,dim=2,method="PCA"):


def get_cluster_data(self, cluster_number):
return self.data.toarray()[np.in1d(np.array(self.cluster_assignment), cluster_number),:], self.cellNames[np.in1d(np.array(self.cluster_assignment), cluster_number)]
return self.data.toarray()[np.in1d(self.cluster_assignment, cluster_number),:], self.cellNames[np.in1d(self.cluster_assignment, cluster_number)]

def get_cluster_ICF_data(self, cluster_number):
return self.ICF(self.data[np.in1d(np.array(self.cluster_assignment), cluster_number),:])
return self.ICF(self.data[np.in1d(self.cluster_assignment, cluster_number),:])

def get_cluster_CF_data(self,cluster_number):
return self.CF(self.data[np.in1d(np.array(self.cluster_assignment), cluster_number),:])
return self.CF(self.data[np.in1d(self.cluster_assignment, cluster_number),:])

def get_selected_cluster_marker(self, clusters):

Expand Down
Binary file modified MICTI/__pycache__/MARKERS.cpython-35.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="MICTI",
version="0.1.4",
version="0.1.5",
author="Nigatu Ayele",
author_email="[email protected]",
description="Feature extraction approach in single-cell gene expression profiling for cell-type marker identification.",
Expand Down

0 comments on commit 25d1649

Please sign in to comment.