GithubHelp home page GithubHelp logo

Comments (4)

andrewsparkes avatar andrewsparkes commented on June 29, 2024

Done in UAT via SQL updates.
SQL queries to perform updates:

SELECT * FROM psd_cherrytrack_uat.configurations;

UPDATE psd_cherrytrack_uat.configurations conf
SET conf.config_value = "2.0"
WHERE conf.automation_system_id IN (1,2)
AND conf.config_key = "config_version"
;

UPDATE psd_cherrytrack_uat.configurations conf
SET conf.config_value = "Update for initial use of control strip tubes"
WHERE conf.automation_system_id IN (1,2)
AND conf.config_key = "change_description"
;

UPDATE psd_cherrytrack_uat.configurations conf
SET conf.config_value = "as28"
WHERE conf.automation_system_id IN (1,2)
AND conf.config_key = "change_user_id"
;

UPDATE psd_cherrytrack_uat.configurations conf
SET conf.config_value = "D1"
WHERE conf.automation_system_id IN (1,2)
AND conf.config_key = "control_coordinate_positive"
;

UPDATE psd_cherrytrack_uat.configurations conf
SET conf.config_value = "A1"
WHERE conf.automation_system_id IN (1,2)
AND conf.config_key = "control_coordinate_negative"
;

UPDATE psd_cherrytrack_uat.configurations conf
SET conf.config_value = "A3, B3, D3, E11, H3, H10"
WHERE conf.automation_system_id IN (1,2)
AND conf.config_key = "control_excluded_destination_wells"
;

UPDATE psd_cherrytrack_uat.configurations conf
SET conf.config_value = "DN845929S"
WHERE conf.automation_system_id IN (1,2)
AND conf.config_key = "bv_barcode_prefixes_control"
;

from cherrytrack.

andrewsparkes avatar andrewsparkes commented on June 29, 2024

being tested in UAT. Awaiting decision from R&D if strip tubes ready for use in Prod. Unlikely for initial go Live.

from cherrytrack.

andrewsparkes avatar andrewsparkes commented on June 29, 2024

For Prod initial version have set excluded wells list as above in UAT (as requested by Scott T):

UPDATE psd_cherrytrack_prod.configurations conf
SET conf.config_value = "A3, B3, D3, E11, H3, H10"
WHERE conf.automation_system_id IN (1,2)
AND conf.config_key = "control_excluded_destination_wells"
;

and set control prefix to full barcode

UPDATE psd_cherrytrack_prod.configurations conf
SET conf.config_value = "DN845929S"
WHERE conf.automation_system_id IN (1,2)
AND conf.config_key = "bv_barcode_prefixes_control"
;

from cherrytrack.

andrewsparkes avatar andrewsparkes commented on June 29, 2024

Added 4 additional wells to be excluded to UAT and Prod

UPDATE psd_cherrytrack_prod.configurations conf
SET conf.config_value = "A3, B3, B7, B10, C7, D3, E11, G7, H3, H10"
WHERE conf.automation_system_id IN (1,2)
AND conf.config_key = "control_excluded_destination_wells"
;

from cherrytrack.

Related Issues (14)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.