UNPKG

liquid-data-handler

Version:

Transform plate layouts according to liquid handling instructions

75 lines 1.88 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.clashStrategySuffix = exports.clashStrategyKeepSource = exports.clashStrategyKeepDest = exports.clashStrategyConcat = exports.platesConfig = exports.keysConfig = void 0; exports.keysConfig = { plateIdKey: "Plate", wellIdKey: "Well", sourePlateKey: "Source Plate", destPlateKey: "Destination Plate", volumeKey: "Volume", sourceWellKey: "Source Well", destWellKey: "Destination Well", }; exports.platesConfig = [ { id: "p384", layoutId: "", instructionId: "empty384", size: 384, suffix: "_e384", isEmpty: true, }, { id: "Q1", layoutId: "layout1", instructionId: "quadrant1", size: 96, suffix: "_Q1", isEmpty: false, }, { id: "Q2", layoutId: "layout2", instructionId: "quadrant2", size: 96, suffix: "_Q2", isEmpty: false, }, { id: "Q3", layoutId: "layout3", instructionId: "quadrant3", size: 96, suffix: "_Q3", isEmpty: false, }, { id: "Q4", layoutId: "layout4", instructionId: "quadrant4", size: 96, suffix: "_Q4", isEmpty: false, }, ]; exports.clashStrategyConcat = { column_name: "sample_id", concatenation_separator: "_", strategy: "concatenate", }; exports.clashStrategyKeepDest = { column_name: "sample_id", concatenation_separator: "_", strategy: "keepDestination", }; exports.clashStrategyKeepSource = { column_name: "sample_id", concatenation_separator: "_", strategy: "keepSource", }; exports.clashStrategySuffix = { column_name: "sample_id", concatenation_separator: "_", strategy: "suffix", }; //# sourceMappingURL=configs.js.map