User Interface Specifications:
For samples, there will be three additional tabs in the right (content) panel:
The additional tabs will be:
Germplasm
Dnasample
Dnarun
For germplasm, the filtering controls:
germplasm_id (range, ex: 100-210)
germplasm.name list (text area: line-separated list)
For dnasample, the filtering controls:
project.name/project_id
filtering controls from #2 above
dnasample_id (range, ex: 100-210)
dnasample.name list (text area: line-separated list)
uuid
For dnarun, the filtering controls:
filtering controls from #3 above, which includes controls from #2
dnarun_id (range, ex: 100-210)
dnarun.name list (text area: line-separated list)
experiment.name/experiment_id
dataset.name/dataset_id
include option ‘none’
A submit button to query the database
A clear button to clear the current filters and result set
A table listing the data resulting from the filters
This table will provide pagination for optimal performance
This table will provide a capability to select rows individually
And a select all button to select all rows
A delete button to delete the rows selected
For the result table: All the columns wherein an ID is displayed should have a column next to it displaying the names. Columns should be sortable.
Functional Specifications:
Upon selecting a set of markers from the result table and clicking the delete button, the system will:
Prompt the user to confirm what will be deleted (basic yes-no prompt window with a list of all the germplasm/dnasamples/dnaruns that will be deleted)
PREREQUISITE CHECK:
We only allow dnarun deletion IFF the dnaruns are not associated with any datasets
If there are dnaruns associated with datasets:
Provide a window/prompt/page that displays the list of dataset references for the dnaruns, and do not allow deletion if there are references. Basically, you have to delete the datasets first.
A message that essentially displays: "dnarun 1 is being used in dataset A, B, and C. dnarun 2 is being used in dataset D and E. Please delete those datasets first."
Presentation of this message and list of datasets should be consistent with that of the Marker Module
We only allow dnasample deletion IFF the dnasamples are not associated with any dnaruns.
If there are dnaruns associated with those dnasamples:
Provide a window/prompt/page that displays the list of dnarun references for the dnasamples, and do not allow deletion if there are references. Basically, you have to delete the dnaruns first.
A message that essentially displays: "dnasample 1 is associated with dnarun A, B, and C. dnasample 2 is being used on dnarun D and E. Please delete those dnaruns first."
Presentation of this message and list of datasets should be consistent with that of the Marker Module
We only allow germplasm deletion IFF the germplasms are not associated with any dnasamples.
If there are dnasamples associated with those germplasms:
Provide a window/prompt/page that displays the list of dnasample references for the germplasms, and do not allow deletion if there are references. Basically, you have to delete the dnasamples first.
A message that essentially displays: "germplasm 1 is associated with dnasample A, B, and C. germplasm 2 is being used on dnasample D and E. Please delete those dnasamples first."
Presentation of this message and list of datasets should be consistent with that of the Marker Module
If the user clicks yes, the system will delete the entities provided they meet all pre-requisite checks.
If the user clicks no, the operation will simply abort.
Everytime a deletion is being made, show:
Prompt Messages:
A warning message box will be shown that clearly indicates that the operation is final and the data will be deleted, providing a quick statistics on how many rows there are (ex. Are you sure you want to delete 102321 markers?). The user is then provided with the ability to cancel or go through with the operation.
Result Report Page:
Upon completion of deletion, a summary page of what was deleted will be displayed. This will contain:
Add a Footer: This should show one or two sentences that warns the user to do regular backups or at least one backup before using this tool to allow for recoverability in case of user mistakes.
Logging:
Log a detailed list of what gets deleted per operation. The developer has the flexibility to use whatever library (or stay with basic stdout) s/he wants. The only requirement is that the following gets logged:
For every deletion, log the actual SQL (or the JOOQ equivalent) that ran.
The username of the user who ran the deletion operation
Timestamp of deletion
Result of deletion
Total number of rows deleted
Filtering criteria
Deletion duration