Skip to content

Commit

Permalink
Code review fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
gbggrant committed Feb 25, 2020
1 parent a229b85 commit f3fccea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/picard/arrays/VcfToAdpc.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,9 @@ public class VcfToAdpc extends CommandLineProgram {
@Override
protected int doWork() {
final List<File> inputs = IOUtil.unrollFiles(VCF, IOUtil.VCF_EXTENSIONS);
IOUtil.assertFilesAreWritable(inputs);
IOUtil.assertFilesAreReadable(inputs);
IOUtil.assertFileIsWritable(SAMPLES_FILE);
IOUtil.assertFileIsWritable(NUM_MARKERS_FILE);
IOUtil.assertFileIsWritable(OUTPUT);
final List<String> sampleNames = new ArrayList<>();

Expand Down

0 comments on commit f3fccea

Please sign in to comment.