def download_dragen_fpga()

in app/source/dragen/src/dragen_qs.py [0:0]


    def download_dragen_fpga(self):
        exit_code = \
            exec_cmd("/opt/edico/bin/dragen --partial-reconfig DNA-MAPPER --ignore-version-check true -Z 0")

        if not exit_code:
            # PR complete success. Write '1' into status file
            f = open(self.FPGA_DOWNLOAD_STATUS_FILE, 'w')
            f.write('1')
            f.close()
            printf('Completed Partial Reconfig for FPGA')
            return True

        # Error!
        printf('Could not do initial Partial Reconfig program for FPGA')
        return False