Got feedback or spotted a mistake?

Leave a comment at the end of this page or email contact@krishagni.com

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Introduction

You can pre-define aliquots details based on specimen type on the unplanned specimen collection page. For example, if you collect unplanned specimens (say whole blood and fresh tissue) and always process whole blood into plasma and buffy coat and tissue sample into three frozen aliquots.

This feature works only for:

  1. Participant-centric CPs.

  2. When you collect unplanned specimens from the visit page.

Configure the below code under the 'common' section.

"addSpecimen" : {
         "showCreateAliquots" : true,
         "allowMultipleSpecimens" : false,
         "aliquotDerivativesOnly" : true,
         "requirements" : [ {
           "name" : "wholeBlood",
           "title" : "Whole Blood",
           "specimens" : [ {
             "fields" : [ {
               "name" : "specimen.type",
               "value" : "Whole Blood"
             }, {
               "name" : "specimen.anatomicSite"
             } ],
             "aliquots" : [ {
               "type" : "Plasma",
               "count" : 5,
               "quantity" : 1,
               "pathology" : "Plasma"
             }, {
               "type" : "Buffy Coat",
               "count" : 1,
               "quantity" : 0.9,
               "pathology" : "Buffy Coat"
             } ]
           } ]
         }, {
           "name" : "Tissue",
           "title" : "Fresh Tissue",
           "specimens" : [ {
             "fields" : [ {
               "name" : "specimen.type",
               "value" : "Fresh Tissue"
             } ],
             "aliquots" : [ {
               "type" : "Frozen Tissue",
               "count" : 1
             }, {
               "type" : "Frozen Tissue",
               "count" : 1
             }, {
               "type" : "Frozen Tissue",
               "count" : 1
             } ]
           } ]
         } ]
         }

Example JSON

Download

  • No labels