immucellai2 2.1.26__tar.gz → 2.1.28__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.26 → immucellai2-2.1.28}/PKG-INFO +1 -1
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2/PrepareData.py +0 -1
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2/__init__.py +2 -2
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2.egg-info/PKG-INFO +1 -1
- {immucellai2-2.1.26 → immucellai2-2.1.28}/setup.cfg +1 -1
- {immucellai2-2.1.26 → immucellai2-2.1.28}/README.md +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2/Deconvolution.py +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2/Drawplot.py +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2/ObtainCategory.py +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2/Time.py +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2/myclasses.py +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2/myconfig/Celltype.category +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2/myconfig/MarkerUsedDeconvolution.txt +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2/myconfig/reference_normalCelltypes.txt +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2/myconfig/reference_tumorCelltypes.txt +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2.egg-info/SOURCES.txt +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2.egg-info/dependency_links.txt +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2.egg-info/entry_points.txt +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2.egg-info/requires.txt +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/immucellai2.egg-info/top_level.txt +0 -0
- {immucellai2-2.1.26 → immucellai2-2.1.28}/pyproject.toml +0 -0
|
@@ -6,7 +6,6 @@ import os
|
|
|
6
6
|
import re
|
|
7
7
|
import sys
|
|
8
8
|
import multiprocessing as mp
|
|
9
|
-
from importlib_resources import files
|
|
10
9
|
|
|
11
10
|
def SelectGeneForDeconvolution(DFReferenceProfile, FileCoveredGenes="", Method="UsedMarker"):
|
|
12
11
|
print("Select the gene for the following deconvolution...")
|
|
@@ -11,12 +11,12 @@ import numpy as np
|
|
|
11
11
|
import random
|
|
12
12
|
|
|
13
13
|
def load_tumor_reference_data():
|
|
14
|
-
from
|
|
14
|
+
from importlib.resources import path
|
|
15
15
|
with path("immucellai2.myconfig", "reference_tumorCelltypes.txt") as file_path:
|
|
16
16
|
return pandas.read_table(file_path, sep="\t", header=0, index_col=0)
|
|
17
17
|
|
|
18
18
|
def load_normal_reference_data():
|
|
19
|
-
from
|
|
19
|
+
from importlib.resources import path
|
|
20
20
|
with path("immucellai2.myconfig", "reference_normalCelltypes.txt") as file_path:
|
|
21
21
|
return pandas.read_table(file_path, sep="\t", header=0, index_col=0)
|
|
22
22
|
|
|
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.26 → immucellai2-2.1.28}/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
|