Skip to content

Commit

Permalink
updated logging
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminbeer256 committed Oct 12, 2023
1 parent 3fd5a23 commit 6de3a23
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,10 @@ private String validateInput() throws IOException {

public static String getCLIcommand(File matrix, File output, int startROW, int startCOL, boolean gzOutput){
String command = "java -jar $SCRIPTMANAGER read-analysis transpose-matrix";
if (gzOutput){
command += " -z";
}
command += " -l " + startCOL;
command += gzOutput? " -z": "";
command += startCOL != 0? " -l " + startCOL: "";
command += " -o " + output.getAbsolutePath();
command += " -r " + startROW;
command += startROW != 0? " -r " + startROW: "";
command += " " + matrix.getAbsolutePath();
return command;
}
Expand Down

0 comments on commit 6de3a23

Please sign in to comment.