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.
Files changed (21) hide show
  1. {immucellai2-2.1.20 → immucellai2-2.1.22}/PKG-INFO +1 -1
  2. immucellai2-2.1.20/immucellai2/myfunction1.py → immucellai2-2.1.22/immucellai2/Deconvolution.py +1 -1
  3. immucellai2-2.1.20/immucellai2/myfunction3.py → immucellai2-2.1.22/immucellai2/ObtainCategory.py +1 -1
  4. immucellai2-2.1.20/immucellai2/myfunction2.py → immucellai2-2.1.22/immucellai2/PrepareData.py +1 -1
  5. {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2/__init__.py +4 -4
  6. {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2.egg-info/PKG-INFO +1 -1
  7. {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2.egg-info/SOURCES.txt +5 -5
  8. {immucellai2-2.1.20 → immucellai2-2.1.22}/setup.cfg +1 -1
  9. {immucellai2-2.1.20 → immucellai2-2.1.22}/README.md +0 -0
  10. /immucellai2-2.1.20/immucellai2/myfunction4.py → /immucellai2-2.1.22/immucellai2/Drawplot.py +0 -0
  11. /immucellai2-2.1.20/immucellai2/myfunction5.py → /immucellai2-2.1.22/immucellai2/Time.py +0 -0
  12. {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2/myclasses.py +0 -0
  13. {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2/myconfig/Celltype.category +0 -0
  14. {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2/myconfig/MarkerUsedDeconvolution.txt +0 -0
  15. {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2/myconfig/reference_normalCelltypes.txt +0 -0
  16. {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2/myconfig/reference_tumorCelltypes.txt +0 -0
  17. {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2.egg-info/dependency_links.txt +0 -0
  18. {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2.egg-info/entry_points.txt +0 -0
  19. {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2.egg-info/requires.txt +0 -0
  20. {immucellai2-2.1.20 → immucellai2-2.1.22}/immucellai2.egg-info/top_level.txt +0 -0
  21. {immucellai2-2.1.20 → immucellai2-2.1.22}/pyproject.toml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: immucellai2
3
- Version: 2.1.20
3
+ Version: 2.1.22
4
4
  Summary: A tool for immune cell type deconvolution
5
5
  Home-page: https://github.com/VyvyanYjm/ImmuCellAI2.0
6
6
  Author: YangJingmin
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/python3
2
2
  import re
3
3
  import pandas
4
- from immucellai2.myfunction5 import CLASS_FOR_TIME
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
@@ -49,7 +49,7 @@ def ObtainInformation2(line, SearchString, DictValue):
49
49
  else:
50
50
  DictValue[SearchString] = obcontent
51
51
 
52
- def ObtainCellTypeCateogry(CellTypeCateogry):
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,6 +1,6 @@
1
1
  #!/usr/bin/python3
2
2
  from .myclasses import CLASS_FOR_RUN
3
- from .myfunction3 import ObtainCellTypeCateogry
3
+ from .ObtainCategory import ObtainCellTypeCategory
4
4
  import pandas
5
5
  import os
6
6
  import importlib.util
@@ -1,7 +1,7 @@
1
- from .myfunction1 import MainRun # MainRun
2
- from .myfunction2 import PrepareData # PrepareDate
3
- from .myfunction3 import ExtractResult, SummaryCellRatio # ExtractResult()
4
- from .myfunction4 import DrawPlotFunction1, DrawPlotFunction2 # visualization()
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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: immucellai2
3
- Version: 2.1.20
3
+ Version: 2.1.22
4
4
  Summary: A tool for immune cell type deconvolution
5
5
  Home-page: https://github.com/VyvyanYjm/ImmuCellAI2.0
6
6
  Author: YangJingmin
@@ -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
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = immucellai2
3
- version = 2.1.20
3
+ version = 2.1.22
4
4
  author = YangJingmin
5
5
  author_email = yangjingmin2021@163.com
6
6
  description = A tool for immune cell type deconvolution
File without changes