Skip to content

Commit

Permalink
Investigate weird unicode error
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeByDrescher committed Oct 22, 2024
1 parent 74b078f commit c87e81c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import java.io.File;
import java.util.concurrent.Callable;

@Command(name = "execute", description = "run .vcml or .omex files via Python API")
@Command(name = "execute", description = "run .vcml or .omex files")
public class ExecuteCommand implements Callable<Integer> {

private final static Logger logger = org.apache.logging.log4j.LogManager.getLogger(ExecuteCommand.class);
Expand Down
1 change: 1 addition & 0 deletions vcell-cli/src/main/java/org/vcell/cli/run/ExecuteImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public static void batchMode(File dirOfArchivesToProcess, File outputDir, CLIRec
// Build statuses
for (File inputFile : inputFiles){
String bioModelBaseName = FileUtils.getBaseName(inputFile.getName());
logger.debug("Performing initial processing of `" + bioModelBaseName + "` (source file: `" + inputFile.getName() +"`)");
String outputBaseDir = outputDir.getAbsolutePath(); // bioModelBaseName = input file without the path
String targetOutputDir = Paths.get(outputBaseDir, bioModelBaseName).toString();
File adjustedOutputDir = new File(targetOutputDir);
Expand Down

0 comments on commit c87e81c

Please sign in to comment.