-
Notifications
You must be signed in to change notification settings - Fork 3
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
remove directory for balsamic specific rules #4116
base: improve-order-flow-main
Are you sure you want to change the base?
Conversation
Quality Gate passedIssues Measures |
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.
Looks good!
) -> list[CaptureKitMissingError]: | ||
""" | ||
Return an error for each new sample missing a capture kit, if its application requires one. | ||
Applicable to Balsamic orders only. |
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.
Applicable to Balsamic orders only. | |
Applicable to Balsamic and Balsamic-UMI orders only. |
|
||
|
||
def validate_capture_kit_panel_requirement( | ||
order: BalsamicOrder, store: Store |
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.
order: BalsamicOrder, store: Store | |
order: BalsamicOrder | BalsamicUmiOrder, store: Store |
@@ -283,3 +286,13 @@ def is_buffer_missing(sample: SampleInCase) -> bool: | |||
sample.application.startswith(tuple(applications_requiring_buffer)) | |||
and not sample.elution_buffer | |||
) | |||
|
|||
|
|||
def is_sample_missing_capture_kit(sample: BalsamicSample, store: Store) -> bool: |
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.
def is_sample_missing_capture_kit(sample: BalsamicSample, store: Store) -> bool: | |
def is_sample_missing_capture_kit(sample: BalsamicSample | BalsamicUmiSample, store: Store) -> bool: |
Description
Added
Changed
Fixed
How to prepare for test
us
paxa
How to test
Expected test outcome
Review
Thanks for filling in who performed the code review and the test!
This version is a
Implementation Plan