We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5f990b commit e945268Copy full SHA for e945268
src/java/org/broadinstitute/dropseqrna/beadsynthesis/CorrectScrnaReadPairs.java
@@ -165,7 +165,13 @@ protected int doWork() {
165
166
try {
167
if (DELETE_INPUTS) {
168
- inputPaths.stream().forEach(p -> Files.delete(p));
+ inputPaths.stream().forEach(p -> {
169
+ try {
170
+ Files.delete(p);
171
+ } catch (IOException e) {
172
+ throw new RuntimeIOException(e);
173
+ }
174
+ });
175
}
176
if (DELETE_INPUT_INDICES) {
177
for (final Path inputBam : inputPaths) {
0 commit comments