Skip to content

Commit 76d0fed

Browse files
authored
Merge pull request #1396 from virtualcell/biosim-log-pure-java
write Biosimulation log file directly from Java
2 parents 275e828 + d0945a8 commit 76d0fed

File tree

15 files changed

+354
-559
lines changed

15 files changed

+354
-559
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@
123123
<jackson-annotations.version>2.15.2</jackson-annotations.version>
124124
<jackson-core.version>2.15.2</jackson-core.version>
125125
<jackson-databind.version>2.15.2</jackson-databind.version>
126+
<jackson-dataformat-yaml.version>2.15.2</jackson-dataformat-yaml.version>
126127
<jama.version>1.0.3</jama.version>
127128
<jaxb-api.version>2.3.0</jaxb-api.version>
128129
<jaxb-core.version>2.3.0</jaxb-core.version>

vcell-cli-utils/README.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,3 @@ poetry run python -i -W ignore
3131

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

vcell-cli-utils/vcell_cli_utils/status.py

Lines changed: 0 additions & 335 deletions
This file was deleted.

0 commit comments

Comments
 (0)