... | ... |
@@ -2,6 +2,13 @@ |
2 | 2 |
title: "NEWS" |
3 | 3 |
output: github_document |
4 | 4 |
--- |
5 |
+# ISAnalytics 1.3.9 (2021-10-25) |
|
6 |
+ |
|
7 |
+## FIXES |
|
8 |
+ |
|
9 |
+* Fixed issues with function that make use of BiocParallel that sometimes |
|
10 |
+failed on Windows platform |
|
11 |
+ |
|
5 | 12 |
# ISAnalytics 1.3.7 (2021-10-20) |
6 | 13 |
|
7 | 14 |
## NEW |
... | ... |
@@ -157,7 +157,7 @@ import_single_Vispa2Matrix <- function(path, |
157 | 157 |
BiocParallel::SnowParam( |
158 | 158 |
tasks = length(chunks), |
159 | 159 |
progressbar = getOption("ISAnalytics.verbose"), |
160 |
- exportglobals = FALSE, |
|
160 |
+ exportglobals = TRUE, |
|
161 | 161 |
stop.on.error = TRUE |
162 | 162 |
) |
163 | 163 |
} else { |
... | ... |
@@ -608,7 +608,7 @@ |
608 | 608 |
stop.on.error = FALSE, |
609 | 609 |
tasks = length(stats_paths$stats_files), |
610 | 610 |
progressbar = getOption("ISAnalytics.verbose"), |
611 |
- exportglobals = FALSE |
|
611 |
+ exportglobals = TRUE |
|
612 | 612 |
) |
613 | 613 |
} else { |
614 | 614 |
p <- BiocParallel::MulticoreParam( |
... | ... |
@@ -4812,7 +4812,7 @@ |
4812 | 4812 |
p <- BiocParallel::SnowParam( |
4813 | 4813 |
tasks = length(common_names), |
4814 | 4814 |
progressbar = getOption("ISAnalytics.verbose"), |
4815 |
- exportglobals = FALSE |
|
4815 |
+ exportglobals = TRUE |
|
4816 | 4816 |
) |
4817 | 4817 |
} else { |
4818 | 4818 |
p <- BiocParallel::MulticoreParam( |
... | ... |
@@ -182,7 +182,7 @@ HSC_population_size_estimate <- function(x, |
182 | 182 |
stop.on.error = FALSE, |
183 | 183 |
tasks = length(x_subj_split), |
184 | 184 |
progressbar = getOption("ISAnalytics.verbose"), |
185 |
- exportglobals = FALSE |
|
185 |
+ exportglobals = TRUE |
|
186 | 186 |
) |
187 | 187 |
} else { |
188 | 188 |
p <- BiocParallel::MulticoreParam( |
... | ... |
@@ -137,6 +137,13 @@ options("ISAnalytics.reports" = TRUE) |
137 | 137 |
Show more |
138 | 138 |
</summary> |
139 | 139 |
|
140 |
+# ISAnalytics 1.3.9 (2021-10-25) |
|
141 |
+ |
|
142 |
+## FIXES |
|
143 |
+ |
|
144 |
+- Fixed issues with function that make use of BiocParallel that |
|
145 |
+ sometimes failed on Windows platform |
|
146 |
+ |
|
140 | 147 |
# ISAnalytics 1.3.7 (2021-10-20) |
141 | 148 |
|
142 | 149 |
## NEW |