Skip to content

Commit 56ca8c3

Browse files
committed
Print the content of filelist_skyline.txt to log.
1 parent efd169d commit 56ca8c3

File tree

1 file changed

+4
-0
lines changed
  • MSFragger-GUI/src/com/dmtavt/fragpipe/tools/skyline

1 file changed

+4
-0
lines changed

MSFragger-GUI/src/com/dmtavt/fragpipe/tools/skyline/Skyline.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,10 @@ private static void runSkyline(String skylinePath, Path wd, String skylineVersio
272272
Process skylineProcess = null;
273273
try {
274274
System.out.println("Running command: " + String.join(" ", cmd));
275+
276+
System.out.println("Content of " + pp.toAbsolutePath() + ":");
277+
System.out.println(new String(Files.readAllBytes(pp)));
278+
275279
ProcessBuilder pb = new ProcessBuilder(cmd);
276280
ProcessBuilderInfo pbi = new PbiBuilder().setPb(pb).setName(pb.toString()).setFnStdOut(null).setFnStdErr(null).setParallelGroup(null).create();
277281
ProcessResult pr = new ProcessResult(pbi);

0 commit comments

Comments
 (0)