Skip to content

Commit

Permalink
small buts
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Jul 3, 2024
1 parent 0e857e4 commit 5cc75a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
### Upcoming

#### Highlights
#### Enhancements
- A new live preview in the UI's experiment profile editor. This preview tool is useful for getting immediate feedback when writing a profile. We'll keep on adding to this to improve the edit-profile workflow - please send us feedback!
- new `when` action type in experiment profiles that will execute an action (or list of actions) when some expression is true. For example, start a chemostat when a threshold OD is first achieved, log a message when event is triggered, or monitor a bioreactor parameter and execute an action if it goes out of bounds.

#### Enhancements
- New config `turbidostat.config` that can be used to modify some internal turbidostat settings:
```
[turbidostat.config]
signal_channel=2
od_smoothing_ema=0.5
```

- Better user interaction on the Pioreactors page when the assigned experiment and "viewing" experiment are different.
- Select / Deselect all Pioreactors to assign to an experiment faster.
- Added `unit()` function to experiment profiles expressions that returns the unit name the expression is evaluated for. Ex: `if: ${{ unit() == worker01 }}`.
Expand Down
1 change: 1 addition & 0 deletions pioreactor/cli/pios.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ def _thread_function(unit: str) -> bool:
return False

for unit in units:
# TODO: why don't we pool this? It was here at one point, now removed (probably for good reason/)
_thread_function(unit)

@pios.command("rm", short_help="rm a file across the cluster")
Expand Down

0 comments on commit 5cc75a1

Please sign in to comment.