immucellai2 2.1.29__tar.gz → 2.1.30__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.29 → immucellai2-2.1.30}/PKG-INFO +1 -1
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2/PrepareData.py +8 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2.egg-info/PKG-INFO +1 -1
- {immucellai2-2.1.29 → immucellai2-2.1.30}/setup.cfg +1 -1
- {immucellai2-2.1.29 → immucellai2-2.1.30}/README.md +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2/Deconvolution.py +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2/Drawplot.py +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2/ObtainCategory.py +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2/Time.py +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2/__init__.py +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2/myclasses.py +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2/myconfig/Celltype.category +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2/myconfig/MarkerUsedDeconvolution.txt +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2/myconfig/reference_normalCelltypes.txt +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2/myconfig/reference_tumorCelltypes.txt +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2.egg-info/SOURCES.txt +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2.egg-info/dependency_links.txt +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2.egg-info/entry_points.txt +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2.egg-info/requires.txt +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/immucellai2.egg-info/top_level.txt +0 -0
- {immucellai2-2.1.29 → immucellai2-2.1.30}/pyproject.toml +0 -0
|
@@ -6,6 +6,14 @@ import os
|
|
|
6
6
|
import re
|
|
7
7
|
import sys
|
|
8
8
|
import multiprocessing as mp
|
|
9
|
+
import importlib.util
|
|
10
|
+
|
|
11
|
+
def get_package_dir(package_name):
|
|
12
|
+
spec = importlib.util.find_spec(package_name)
|
|
13
|
+
if spec is None:
|
|
14
|
+
raise ModuleNotFoundError(f"Package '{package_name}' not found")
|
|
15
|
+
path = spec.origin or spec.submodule_search_locations[0]
|
|
16
|
+
return os.path.dirname(path)
|
|
9
17
|
|
|
10
18
|
def SelectGeneForDeconvolution(DFReferenceProfile, FileCoveredGenes="", Method="UsedMarker"):
|
|
11
19
|
print("Select the gene for the following deconvolution...")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{immucellai2-2.1.29 → immucellai2-2.1.30}/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
|
|
File without changes
|