Browse code

[UPDATE] Update to fixed version 1.3.9

Giulia Pais authored on 25/10/2021 13:17:04
Showing 9 changed files

... ...
@@ -1,6 +1,6 @@
1 1
 Package: ISAnalytics
2 2
 Title: Analyze gene therapy vector insertion sites data identified from genomics next generation sequencing reads for clonal tracking studies
3
-Version: 1.3.8
3
+Version: 1.3.9
4 4
 Date: 2020-07-03
5 5
 Authors@R: c(
6 6
   person(given = "Andrea",
... ...
@@ -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
... ...
@@ -1,6 +1,13 @@
1 1
 NEWS
2 2
 ================
3 3
 
4
+# ISAnalytics 1.3.9 (2021-10-25)
5
+
6
+## FIXES
7
+
8
+-   Fixed issues with function that make use of BiocParallel that
9
+    sometimes failed on Windows platform
10
+
4 11
 # ISAnalytics 1.3.7 (2021-10-20)
5 12
 
6 13
 ## 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(
... ...
@@ -519,7 +519,7 @@ integration_alluvial_plot <- function(x,
519 519
             stop.on.error = FALSE,
520 520
             progressbar = TRUE,
521 521
             tasks = length(groups_to_plot),
522
-            exportglobals = FALSE
522
+            exportglobals = TRUE
523 523
         )
524 524
     } else {
525 525
         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(
... ...
@@ -130,7 +130,7 @@ compute_near_integrations <- function(x,
130 130
             stop.on.error = FALSE,
131 131
             progressbar = TRUE,
132 132
             tasks = length(split_to_process),
133
-            exportglobals = FALSE
133
+            exportglobals = TRUE
134 134
         )
135 135
     } else {
136 136
         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