Skip to content

Commit

Permalink
everything working now
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthecoder committed May 2, 2024
1 parent af86812 commit fd00c7a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions hardware-testing/hardware_testing/gravimetric/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def build_run_args(cls, args: argparse.Namespace) -> "RunArgs": # noqa: C901
if args.trials == 0:
trials = 240
else:
trials = (
trials = int(
args.trials * args.cavity_racks
) # we want to specify trials in X per rack so multiply by 8
elif args.trials == 0:
Expand Down Expand Up @@ -584,7 +584,7 @@ def _main(
parser.add_argument("--touch-tip", action="store_true")
parser.add_argument("--refill", action="store_true")
parser.add_argument("--isolate-channels", nargs="+", type=int, default=None)
parser.add_argument("--cavity-racks", nargs="+", type=int, default=8)
parser.add_argument("--cavity-racks", type=int, default=8)
parser.add_argument("--isolate-volumes", nargs="+", type=float, default=None)
parser.add_argument("--extra", action="store_true")
parser.add_argument("--jog", action="store_true")
Expand Down
6 changes: 3 additions & 3 deletions hardware-testing/hardware_testing/gravimetric/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from opentrons.hardware_control.types import InstrumentProbeType


CAVITY_1uL_COMMAND_VOL = 0.9
CAVITY_1uL_COMMAND_VOL = 0.7


class ConfigType(Enum):
Expand Down Expand Up @@ -93,7 +93,7 @@ class PhotometricConfig(VolumetricConfig):
50: {
1: {
50: {
"max_z_distance": 20,
"max_z_distance": 16,
"min_z_distance": 5,
"mount_speed": 5,
"plunger_speed": 21,
Expand Down Expand Up @@ -198,7 +198,7 @@ def _get_liquid_probe_settings(
plunger_speed=lqid_cfg["plunger_speed"],
sensor_threshold_pascals=lqid_cfg["sensor_threshold_pascals"],
expected_liquid_height=110,
output_option=OutputOptions.stream_to_csv,
output_option=OutputOptions.sync_buffer_to_csv,
aspirate_while_sensing=False,
auto_zero_sensor=True,
num_baseline_reads=10,
Expand Down

0 comments on commit fd00c7a

Please sign in to comment.