Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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.

Info

This feature works only for:

  1. Participant-centric and Specimen-Centric CPs.

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

Configure the below code under the 'common' section.

Expand
titleClick here for code

Code Block
languagejson
"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
             } ]
           } ]
         } ]
         }

On Participant Centric CP:

...

Whole Blood

...

Fresh Tissue

...

On Specimen Centric CP:

...

Whole Blood

...

Fresh Tissue

...

Example JSON

Download