Closed magicDGS closed 6 years ago
Merging #473 into master will increase coverage by
0.03%
. The diff coverage is100%
.
@@ Coverage Diff @@
## master #473 +/- ##
==============================================
+ Coverage 93.386% 93.417% +0.03%
+ Complexity 993 991 -2
==============================================
Files 95 95
Lines 2646 2643 -3
Branches 284 284
==============================================
- Hits 2471 2469 -2
+ Misses 134 133 -1
Partials 41 41
Impacted Files | Coverage Δ | Complexity Δ | |
---|---|---|---|
...gicdgs/readtools/utils/read/ReadReaderFactory.java | 80% <100%> (+2.222%) |
6 <1> (-2) |
:arrow_down: |
Previously our
ReadReaderFactory
was callingPath.toFile
for FASTQ input, which might file for non-local files. This commit fix this bug and also removes non-Path methods inReadReaderFactory
for simplify codepaths.Fixes #472