aboutsummaryrefslogtreecommitdiff
path: root/r_qtl/r_qtl2_qc.py
AgeCommit message (Collapse)Author
2024-02-20Track filename in the errorsFrederick Muriuki Muriithi
R/qtl2 bundles can contain more than one file, of the same type. When errors are encountered in any of the files, we need to be able to inform the user which file it is, in addition to the line and column number.
2024-02-13Make "FILE_TYPES" part of public interface for module/package.Frederick Muriuki Muriithi
2024-02-12Refactor: Use new decimal places checker.Frederick Muriuki Muriithi
2024-02-12Check for errors in the 'phenose' file.Frederick Muriuki Muriithi
2024-02-12Provide the key for each file listed in the control file.Frederick Muriuki Muriithi
2024-02-08Generalise error retrieval: extract common structureFrederick Muriuki Muriithi
Extract the common structure into a separate function and pass in checkers that return the errors they find.
2024-02-08Use error objects rather than plain tuple values.Frederick Muriuki Muriithi
2024-02-06Check that pheno values are numerical and at least 3 decimal placesFrederick Muriuki Muriithi
2024-02-05Check that data in geno file is validFrederick Muriuki Muriithi
Add a function to ensure the values in the geno files are all listed in the control data under the "genotypes" key.
2024-02-05Fix linting and type errors.Frederick Muriuki Muriithi
2024-02-05Do general bundle validation and show errorsFrederick Muriuki Muriithi
* Display any and all errors on the UI * Move `validate_bundle` to QC module and refactor to use `missing_files`
2024-02-05Retrieve list of all files, and list of missing filesFrederick Muriuki Muriithi
Add QC a function to list all files listed in the control file, and another to list only the files missing from the bundle.