diff options
author | Frederick Muriuki Muriithi | 2024-12-02 15:49:16 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-12-02 15:49:16 -0600 |
commit | ecc1fb7a1186cade850fd33c0468706efcd256c3 (patch) | |
tree | 3e8fe1d64fe7a4cae0080d4ddee4db7554be4f31 | |
parent | e256c1f0cc77dc952daa414392840bca66c05907 (diff) | |
download | gn-uploader-ecc1fb7a1186cade850fd33c0468706efcd256c3.tar.gz |
Return 0 on completion of QC processing.
-rw-r--r-- | scripts/rqtl2/phenotypes_qc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rqtl2/phenotypes_qc.py b/scripts/rqtl2/phenotypes_qc.py index 83828e4..0e503cc 100644 --- a/scripts/rqtl2/phenotypes_qc.py +++ b/scripts/rqtl2/phenotypes_qc.py @@ -446,7 +446,7 @@ def run_qc(# pylint: disable=[too-many-locals] # - Delete all extracted files shutil.rmtree(extractiondir) - raise NotImplementedError("WIP!") + return 0 if __name__ == "__main__": |