Skip to content

Commit

Permalink
Merge pull request #1396 from virtualcell/biosim-log-pure-java
Browse files Browse the repository at this point in the history
write Biosimulation log file directly from Java
  • Loading branch information
jcschaff authored Dec 9, 2024
2 parents 275e828 + d0945a8 commit 76d0fed
Show file tree
Hide file tree
Showing 15 changed files with 354 additions and 559 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@
<jackson-annotations.version>2.15.2</jackson-annotations.version>
<jackson-core.version>2.15.2</jackson-core.version>
<jackson-databind.version>2.15.2</jackson-databind.version>
<jackson-dataformat-yaml.version>2.15.2</jackson-dataformat-yaml.version>
<jama.version>1.0.3</jama.version>
<jaxb-api.version>2.3.0</jaxb-api.version>
<jaxb-core.version>2.3.0</jaxb-core.version>
Expand Down
14 changes: 0 additions & 14 deletions vcell-cli-utils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,3 @@ poetry run python -i -W ignore

### example command session
Caution: use of stdin/stdout to pipe commands/reponses to process. This is sensitive to print statements or logging to stdout.
```python
>>> from vcell_cli_utils import wrapper
>>> wrapper.genStatusYaml("../../vcdb/published/biomodel/omex/sbml/biomodel_102061382.omex", "/tmp")
>>> wrapper.genStatusYaml("missing-file", "/tmp")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/schaff/Documents/workspace/vcell/vcell-cli-utils/vcell_cli_utils/wrapper.py", line 31, in genStatusYaml
status.status_yml(omexFile, outDir)
File "/Users/schaff/Documents/workspace/vcell/vcell-cli-utils/vcell_cli_utils/status.py", line 37, in status_yml
for sedml in extract_omex_archive(omex_file):
File "/Users/schaff/Documents/workspace/vcell/vcell-cli-utils/vcell_cli_utils/status.py", line 19, in extract_omex_archive
raise FileNotFoundError("File does not exist: {}".format(omex_file))
FileNotFoundError: File does not exist: missing-file
```
335 changes: 0 additions & 335 deletions vcell-cli-utils/vcell_cli_utils/status.py

This file was deleted.

Loading

0 comments on commit 76d0fed

Please sign in to comment.