#1958 closed task (fixed)
Add Kit item
Reported by: | Nicklas Nordborg | Owned by: | Nicklas Nordborg |
---|---|---|---|
Priority: | critical | Milestone: | BASE 3.7 |
Component: | core | Version: | |
Keywords: | Cc: |
Description (last modified by )
A Kit is an item that should represent a kit/collection of reagents and other stuff used in the lab to do something.
To begin with we intend to keep the Kit item as simple as possible. For example we do not add special data structures for keeping track of individual items in a kit (use annotations for that).
A kit should have:
- Name and description (implement the
Nameable
interface). - Registration date (implement the
Registered
interface). - Access is controlled via regular project/user/group sharing (implement the
Ownable
/Shareable
interfaces) - A subtype so we can filter kits to be used at a specific step in the lab process (implement the
Subtypable
interface) - An
inactive
flag that indicates if the kit can still be used or not. - An
expirationDate
for storing the recommended last date the kit should be used.
Selecting inactive kits or using kits after the expiration date should not be forbidden in the core API. It should be used by applications to make sensible default selections.
Kits are linked from:
- Biomaterial events (samples, extracts, physical bioassays)
- Bioplate events
- Derived bioassays (since the first derived bioassay typically represents the sequencing of a flow cell)
- More??
Besides the usual list/view/edit pages in the web client we need to implement and update some other things:
- A batch item importer for kits
- The annotation importer should support kits
- Add kits to the "Item overview" and some new validation rules:
- Check the expiration date against the creation date of items that has used the kit
- Add kits to "Item subtypes"
- Inherit annotations from kits
- More??
Change History (21)
comment:1 by , 9 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:2 by , 9 years ago
Description: | modified (diff) |
---|
comment:3 by , 9 years ago
Description: | modified (diff) |
---|
comment:4 by , 9 years ago
comment:5 by , 9 years ago
comment:6 by , 9 years ago
comment:7 by , 9 years ago
comment:8 by , 9 years ago
comment:9 by , 9 years ago
comment:10 by , 9 years ago
Description: | modified (diff) |
---|
comment:11 by , 9 years ago
comment:12 by , 9 years ago
comment:13 by , 9 years ago
comment:14 by , 9 years ago
comment:15 by , 9 years ago
comment:16 by , 9 years ago
comment:17 by , 9 years ago
comment:18 by , 9 years ago
comment:19 by , 9 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
(In [6989]) References #1958: Add Kit item
Added
KitData
item in the data layer and links to it from theBioMaterialEventData
andBioPlateEventData
classes.Increasing the database schema version.