-
Notifications
You must be signed in to change notification settings - Fork 199
feat(shared-data, api, hardware-testing): add the p200_96 #17105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
d17039a
update the shared data defs
ryanthecoder 82370d0
fix places where the p200_96 wasn't being properly processed
ryanthecoder ecb6a38
pull in all the changes to the hardware-tesing repo that have been made
ryanthecoder c22f24c
fix the snapshot tests
ryanthecoder 3d02f24
Pause for inspection
Andiiiiiiyy da318ca
changing liquid setting
Andiiiiiiyy 9acbb56
format
ryanthecoder 7de2e5e
fix ci tests
ryanthecoder c3f119f
update load calll from edge
ryanthecoder 31b942b
update flowrates from SZ testing branch
ryanthecoder File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,6 +46,7 @@ | |
| "B": {"min": 10, "max": 49.99}, | ||
| "C": {"min": 2, "max": 9.999}, | ||
| "D": {"min": 1, "max": 1.999}, | ||
| "E": {"min": 0, "max": 0.9999}, | ||
| } | ||
| _MIN_START_VOLUME_UL = {1: 500, 8: 3000, 96: 30000} | ||
| _MIN_END_VOLUME_UL = {1: 400, 8: 3000, 96: 10000} | ||
|
|
@@ -191,6 +192,8 @@ def _record_measurement_and_store(m_type: MeasurementType) -> EnvironmentData: | |
| ) | ||
|
|
||
| _record_measurement_and_store(MeasurementType.ASPIRATE) | ||
| if not trial.ctx.is_simulating(): | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what is this for? |
||
| input("请记录吸液状态,并尝试拍摄清晰的吸液后的针管照片..........") | ||
| for i in range(num_dispenses): | ||
| dest_name = _get_photo_plate_dest(trial.cfg, trial.trial) | ||
| dest_well = trial.dest[dest_name] | ||
|
|
@@ -215,6 +218,8 @@ def _record_measurement_and_store(m_type: MeasurementType) -> EnvironmentData: | |
| touch_tip=trial.cfg.touch_tip, | ||
| ) | ||
| _record_measurement_and_store(MeasurementType.DISPENSE) | ||
| if not trial.ctx.is_simulating(): | ||
| input("请记录排液状态,并尝试拍摄清晰的排液后的针管照片..........") | ||
| trial.pipette._retract() # retract to top of gantry | ||
| if (i + 1) == num_dispenses: | ||
| if not trial.cfg.same_tip: | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
did you want to keep this commented code