sciv 0.0.79__py3-none-any.whl → 0.0.80__py3-none-any.whl
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.
sciv/tool/_algorithm_.py
CHANGED
|
@@ -1023,10 +1023,10 @@ def calculate_fragment_weighted_accessibility(input_data: dict, block_size: int
|
|
|
1023
1023
|
|
|
1024
1024
|
ul.log(__name__).info("Calculate expected counts matrix ===> (numerator)")
|
|
1025
1025
|
global_scale_data = vector_multiply_block_storage(row_sum, col_sum, block_size=block_size)
|
|
1026
|
-
|
|
1026
|
+
global_scale_data = global_scale_data.astype(np.float32)
|
|
1027
1027
|
del row_sum, col_sum
|
|
1028
1028
|
|
|
1029
|
-
global_scale_data /= all_sum
|
|
1029
|
+
global_scale_data /= all_sum * 1.0
|
|
1030
1030
|
|
|
1031
1031
|
del all_sum
|
|
1032
1032
|
|
|
@@ -1127,10 +1127,10 @@ def calculate_init_score_weight(
|
|
|
1127
1127
|
|
|
1128
1128
|
ul.log(__name__).info("Calculate expected counts matrix ===> (numerator)")
|
|
1129
1129
|
global_scale_data = vector_multiply_block_storage(row_sum, col_sum, block_size=block_size)
|
|
1130
|
-
|
|
1130
|
+
global_scale_data = global_scale_data.astype(np.float32)
|
|
1131
1131
|
del row_sum, col_sum
|
|
1132
1132
|
|
|
1133
|
-
global_scale_data /= all_sum
|
|
1133
|
+
global_scale_data /= all_sum * 1.0
|
|
1134
1134
|
|
|
1135
1135
|
del all_sum
|
|
1136
1136
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sciv
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.80
|
|
4
4
|
Summary: Unveiling the pivotal cell types involved in variant function regulation at a single-cell resolution
|
|
5
5
|
Project-URL: github, https://github.com/YuZhengM/sciv
|
|
6
6
|
Author-email: Zheng-Min Yu <yuzmbio@163.com>
|
|
@@ -27,13 +27,13 @@ sciv/preprocessing/_scanpy_.py,sha256=mmkk4cMCzJCziF49RnOuXBiF4frS6aSiwZdUmfDAg4
|
|
|
27
27
|
sciv/preprocessing/_scvi_.py,sha256=ZIDkQ_4deYmzSMiAbu5C3j_jMMl7hBTFLCBXHCNj3B4,10332
|
|
28
28
|
sciv/preprocessing/_snapatac_.py,sha256=Dq8CHF7Psl3CQszaEokQYO56Oe2uzyWOy_cGlaOywfc,27798
|
|
29
29
|
sciv/tool/__init__.py,sha256=WXzHkWt6RgBC3qqD-98nR5wQmt6oC850ox_VpMrapSU,2468
|
|
30
|
-
sciv/tool/_algorithm_.py,sha256=
|
|
30
|
+
sciv/tool/_algorithm_.py,sha256=ggMW1tWxojQElbZcSdugHwwOm68KGFvuujtV7Zg-n4A,48003
|
|
31
31
|
sciv/tool/_matrix_.py,sha256=NDQf7yTuN4_GaKL7jK5i1BGYCIOGFQHcmpWgQkuquK8,24230
|
|
32
32
|
sciv/tool/_random_walk_.py,sha256=98HLa9X2xx3Tj7VKKwQ2oS-CWL7HbOURAXiYKky2OYs,47338
|
|
33
33
|
sciv/util/__init__.py,sha256=nOxZ8if27X7AUJ6hZwTwxOJwIBJb0obWlHjqCzjg_Gc,1964
|
|
34
34
|
sciv/util/_constant_.py,sha256=w0wKQd8guLd1ZTW24_5aECrWsIWDiNQmEpLsWlHar1A,3000
|
|
35
35
|
sciv/util/_core_.py,sha256=ZD2uSnEBHVu0i9TmXWzri_3bXZzYKnIZk818gW3zadE,14751
|
|
36
|
-
sciv-0.0.
|
|
37
|
-
sciv-0.0.
|
|
38
|
-
sciv-0.0.
|
|
39
|
-
sciv-0.0.
|
|
36
|
+
sciv-0.0.80.dist-info/METADATA,sha256=YIURiNcqDzxUamWuaHg89UIvX4rsDHR4XrKs4S6jAMQ,3465
|
|
37
|
+
sciv-0.0.80.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
38
|
+
sciv-0.0.80.dist-info/licenses/LICENSE,sha256=4UvHVf3qCOZjHLs4LkYz8u96XRpXnZrpTKrkUQPs5_A,1075
|
|
39
|
+
sciv-0.0.80.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|