Skip to content

Commit

Permalink
MICTI
Browse files Browse the repository at this point in the history
  • Loading branch information
insilicolife committed Sep 30, 2019
1 parent 25d1649 commit 1000553
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 15 deletions.
12 changes: 0 additions & 12 deletions Pipfile

This file was deleted.

6 changes: 3 additions & 3 deletions build/lib/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 removed dist/MICTI-0.1.4.tar.gz
Binary file not shown.
Binary file not shown.
Binary file added dist/MICTI-0.1.5.tar.gz
Binary file not shown.

0 comments on commit 1000553

Please sign in to comment.