immucellai2 2.1.20__tar.gz → 2.1.22__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.
- {immucellai2-2.1.20 → immucellai2-2.1.22}/PKG-INFO +1 -1
- immucellai2-2.1.20/immucellai2/myfunction1.py → immucellai2-2.1.22/immucellai2/Deconvolution.py +1 -1
- immucellai2-2.1.20/immucellai2/myfunction3.py → immucellai2-2.1.22/immucellai2/ObtainCategory.py +1 -1
- immucellai2-2.1.20/immucellai2/myfunction2.py → immucellai2-2.1.22/immucellai2/PrepareData.py +1 -1
- {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2/__init__.py +4 -4
- {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2.egg-info/PKG-INFO +1 -1
- {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2.egg-info/SOURCES.txt +5 -5
- {immucellai2-2.1.20 → immucellai2-2.1.22}/setup.cfg +1 -1
- {immucellai2-2.1.20 → immucellai2-2.1.22}/README.md +0 -0
- /immucellai2-2.1.20/immucellai2/myfunction4.py → /immucellai2-2.1.22/immucellai2/Drawplot.py +0 -0
- /immucellai2-2.1.20/immucellai2/myfunction5.py → /immucellai2-2.1.22/immucellai2/Time.py +0 -0
- {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2/myclasses.py +0 -0
- {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2/myconfig/Celltype.category +0 -0
- {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2/myconfig/MarkerUsedDeconvolution.txt +0 -0
- {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2/myconfig/reference_normalCelltypes.txt +0 -0
- {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2/myconfig/reference_tumorCelltypes.txt +0 -0
- {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2.egg-info/dependency_links.txt +0 -0
- {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2.egg-info/entry_points.txt +0 -0
- {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2.egg-info/requires.txt +0 -0
- {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2.egg-info/top_level.txt +0 -0
- {immucellai2-2.1.20 → immucellai2-2.1.22}/pyproject.toml +0 -0
immucellai2-2.1.20/immucellai2/myfunction1.py → immucellai2-2.1.22/immucellai2/Deconvolution.py
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/python3
|
|
2
2
|
import re
|
|
3
3
|
import pandas
|
|
4
|
-
from immucellai2.
|
|
4
|
+
from immucellai2.Time import CLASS_FOR_TIME
|
|
5
5
|
import numpy as np
|
|
6
6
|
import random
|
|
7
7
|
from immucellai2.myclasses import CLASS_FOR_RUN, CLASS_FOR_RUNRESULT, CLASS_FOR_EMCEEPARAMETER
|
immucellai2-2.1.20/immucellai2/myfunction3.py → immucellai2-2.1.22/immucellai2/ObtainCategory.py
RENAMED
|
@@ -49,7 +49,7 @@ def ObtainInformation2(line, SearchString, DictValue):
|
|
|
49
49
|
else:
|
|
50
50
|
DictValue[SearchString] = obcontent
|
|
51
51
|
|
|
52
|
-
def
|
|
52
|
+
def ObtainCellTypeCategory(CellTypeCateogry):
|
|
53
53
|
if CellTypeCateogry is None or not os.path.isfile(CellTypeCateogry):
|
|
54
54
|
try:
|
|
55
55
|
from importlib.resources import files
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
from .
|
|
2
|
-
from .
|
|
3
|
-
from .
|
|
4
|
-
from .
|
|
1
|
+
from .Deconvolution import MainRun # MainRun
|
|
2
|
+
from .PrepareData import PrepareData # PrepareDate
|
|
3
|
+
from .ObtainCategory import ExtractResult, SummaryCellRatio # ExtractResult()
|
|
4
|
+
from .Drawplot import DrawPlotFunction1, DrawPlotFunction2 # visualization()
|
|
5
5
|
import os
|
|
6
6
|
import pandas
|
|
7
7
|
import argparse
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
README.md
|
|
2
2
|
pyproject.toml
|
|
3
3
|
setup.cfg
|
|
4
|
+
immucellai2/Deconvolution.py
|
|
5
|
+
immucellai2/Drawplot.py
|
|
6
|
+
immucellai2/ObtainCategory.py
|
|
7
|
+
immucellai2/PrepareData.py
|
|
8
|
+
immucellai2/Time.py
|
|
4
9
|
immucellai2/__init__.py
|
|
5
10
|
immucellai2/myclasses.py
|
|
6
|
-
immucellai2/myfunction1.py
|
|
7
|
-
immucellai2/myfunction2.py
|
|
8
|
-
immucellai2/myfunction3.py
|
|
9
|
-
immucellai2/myfunction4.py
|
|
10
|
-
immucellai2/myfunction5.py
|
|
11
11
|
immucellai2.egg-info/PKG-INFO
|
|
12
12
|
immucellai2.egg-info/SOURCES.txt
|
|
13
13
|
immucellai2.egg-info/dependency_links.txt
|
|
File without changes
|
/immucellai2-2.1.20/immucellai2/myfunction4.py → /immucellai2-2.1.22/immucellai2/Drawplot.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2/myconfig/reference_normalCelltypes.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|