Thursday, May 9, 2013

LAB


POINTS TO REMEMBER:


Clinical laboratory data is usually integrated into the clinical database via direct data entry or through importation of electronic data files. Lab data rarely arrives ‘analysis-ready’, usually requiring Reformatting, Data cleaning, Conversions, or Flagging. To streamline the processing effort prior to analysis our approach has been to reformat the laboratory data as much as possible into standard data set structures, which then allow for usage of standard SAS data review and reporting modules.

SDTM 
Natural key structure of LB for tabulation:

STUDYID

USUBJID

LBTESTCD (Topic variable): Short name of the measurement, test, or examination described in LBTEST. It can be used as a column name when converting a dataset from a vertical to a horizontal format. The value in LBTESTCD cannot be longer than 8 characters, nor can it start with a number (e.g.”1TEST”). LBTESTCD cannot contain characters other than letters, numbers, or underscores. Examples: ALT, LDH.

LBSPEC: Defines the type of specimen used for a measurement. Examples: SERUM, PLASMA, URINE.

VISITNUM,         1. Clinical encounter number.
                              2. Numeric version of VISIT, used for sorting.

LBTPTREF(Time Point Reference ): Name of the fixed reference point referred to by LBELTM, LBTPTNUM, and LBTPT. Examples: PREVIOUS DOSE, PREVIOUS MEAL.

LBTPTNUM: Numerical version of LBTPT to aid in sorting.

lbtpt:     1. Text Description of time when specimen should be taken.
            2. This may be represented as an elapsed time relative to a fixed reference point, such as time of last dose. See LBTPTNUM and LBTPTREF. Examples: Start, 5 min post.

Structure: 

One record per analyte per planned time point number per time point reference per visit per subject

ADAM: ADLB
Variables:


General Introduction:

BLOOD COMPONENTS AND COMPOSITION
Human Blood is made up of about 45 percent cellular components (primarily Red Blood Cells (RBC), White Blood Cells (WBC), and platelets) and 55 percent fluid (Plasma).


CENTRAL VS LOCAL LABS
The laboratory data collected for clinical trials is typically handled by two types of labs. Central Labs, such as Covance, CCLS, and Quintiles and local labs which are general on-site in the hospital, or medical unit where the patient visit is taking place. Each type of lab has advantages or problems associated with it. Central labs have the advantage in that each test will be conducted using a standard procedure, which makes for better direct comparison among patients. Data is usually provided electronically. In most cases the central lab will also apply the normal ranges to each patient and lab test, as well as provide the results in the units specified by the sponsor or at least in common unit based on their own defaults. But of course the samples need to be sent to the central lab which means there is a delay in results to the investigator. Local labs are most often used when an immediate result is needed to allow dosing or entry into the trial. The data is usually captured directly on the case report form. Local labs also complicated by the fact that you have to collect normal ranges from each lab, and sometimes they are not available. The unit of collection is dependent on the lab and will often vary from lab to lab. Standardization of the results to a single unit is often required.


UNITS OF MEASUREMENTS
The units of measurement for a given lab test often very from lab to lab, in part based on the country the lab is located in. The labs in the US often use what is referred to as Conventional Units, while international labs use SI (Systeme Internationale). SI units are usually preferred for international trials, while US only trials often make use of the conventional units. In some cases the tests are expressed and analysis in both units.

Prior to analysis, it’s important that all the values in a given lab test are expressed in terms of a single unit and It is also important that that lab test be labeled with a single Parameter Name

Parameter Name

proc format;
value $lbtest
'ACANTHOCYTES'='ACANTHOCYTES'
'ALBU','ALBUMIN'='ALBUMIN'
'ALKPH','ALKALINE PHOSPHATASE'='ALKALINE PHOSPHATASE‘
;
lbtest = put(labvar,$lbtest.);


single unit

select(lbtest);
when('BASOPHILS, ABS') do;
select(labunit);
when('K/UL','10^9/L') do;
factor=1;
lbstresu='10^9/L';
end;
otherwise factor=.;
end;
end;
lbstresn=lborresn*factor;



TYPICAL LAB SUMMARIES
Lab summary tables will vary from study to study depending on what the objectives of that particular clinical trial, Of the more common types are table displaying descriptive statistics such as TABLE 1. They usually describe the lab value and its change or percent change from baseline at various visits or time points. The most common statistics are usually the mean, median, standard deviation, minimum and maximum values. This table would then be repeated  for any lab tests collected.





When there is a large variation in the results that makes direct comparison difficult, such as cases where local labs are used, shift tables are often used. The lab values are classified as above the normal range, within the normal  range, or below the normal range. And then these values are summarized based on the change of categories between baseline and some subsequent time point (usually the last visit in the study). An example of this type of table is shown in Table 2.




Another common type of table is to categorize the values into clinically significant categories, such as below a predefined critical value. Then the number of patients who fall into the categories are summarized. Table 3 is an example of this type of table.




In the United States, the National Cancer Institute publishes Common Terminology Criteria (formerly referred to as Common Toxicity Criteria) for Adverse Events to set a common standard for assigning severity grades to Adverse Events. Events are graded on a scale of one to five with one meaning “mildly abnormal” and five meaning “death.”

Usually only Oncology studies require them. The sponsor of the study is expected to provide the version to be used.
http://evs.nci.nih.gov/ftp1/CTCAE/CTCAE_4.03_2010-06-14_QuickReference_8.5x11.pdf
Not all lab tests have CTC grades. The CTC grade can be already attached to original data. If not, the derivation is required and is depended on lab test normal ranges.


LABORATORY EVENTS
Many central laboratories now provide their data with the National Cancer Institute Common Toxicity Criteria (NCICTC) coding included. When mapped to the LB domain in SDTM, we find this information recorded in the variables LBTOXGR (toxicity grade value using a standard toxicity scale) and LBTOX (Description of toxicity quantified by LBTOXGR).
LBTOX can thus be thought of as an event contained within the laboratory data. These laboratory events are easily mapped to a standard dictionary, such as MedDRA. It’s worth noting that the mapping of laboratory data to the MedDRA terminology may or may not be done in SDTM; if it isn’t done in SDTM, it would then be part of the derivation of the analysis dataset. Once MedDRA hierarchy categories are added to laboratory data, they can be used to produce laboratory event tables, similar to adverse event tables.



Here is an example of a Laboratory Events table layout, summarized by two levels of hierarchy (MedDRA System Organ Class and Preferred Term), and also broken down by grade. It is also similar to an standard Adverse Event table, since it summarizes records using a hierarchical dictionary, and counts unique subjects within each category.


Table 4 is an example of this.



















Definitions


ADaM – CDISC Analysis Data Model

ADaM Basic Data Structure (BDS) – A dataset structure designed to facilitate ease of analysis and review, organized as one or more records per subject per analysis parameter per analysis timepoint. Analysis timepoint is conditionally required, depending on the analysis. The BDS, described in the ADaMIG, supports the majority of analyses.

ADaM Implementation Guide (ADaMIG) – A document that specifies ADaM standard dataset structures and variables, including naming conventions. It also specifies standard solutions to implementation issues. The ADaM document and the ADaMIG should be used together.

Analysis Datasets – Datasets used for statistical analysis and reporting.


Analysis Parameter (PARAM) – A row identifier used to uniquely characterize a group of values that share a common definition. Example: The primary efficacy analysis parameter is “3-Minute Sitting Systolic Blood Pressure (mmHg).” Note that the ADaM analysis parameter contains all of the information needed to uniquely identify a group of related analysis values. In contrast, the SDTM TEST column may need to be combined with qualifier columns such as POS, LOC, SPEC, etc., in order to identify a group of related values. In this document the word “parameter” is used as a synonym for “analysis parameter.”

Analysis Parameter Value-Level Metadata – Information that describes an analysis value within a given analysis parameter or set of analysis parameters.

Analysis Results Metadata – Information that describes a specified analysis result contained within a clinical study report or submission.

Analysis Timepoint – A row identifier used to classify values within an analysis parameter into temporal or conceptual groups used for analyses. These groupings may be observed, planned or derived. Example: The primary efficacy analysis was performed at the Week 2, Week 6, and Endpoint analysis timepoints.

Analysis Value – (1) The character (AVALC) or numeric (AVAL) value described by the analysis parameter. The analysis value may be present in the input data, a categorization of an input data value, or derived. Example: The analysis value of the parameter “Average Heart Rate (bpm)” was derived as the average of the three heart rate values measured at each visit. (2) In addition, values of certain functions are considered to be analysis values. Examples: baseline value (BASE), change from baseline (CHG).


Define File – As stated in the Case Report Tabulation Data Definition Specification[2], the 1999 FDA electronic submission (eSub) guidance and the electronic Common Technical Document (eCTD) documents specify that a document describing the content and structure of the included data should be provided within a submission. This document is known as the Data Definition Document (e.g., “define.pdf” in the 1999 guidance). The Data Definition Document provides a list of the datasets included in the submission along with a detailed description of the contents of each dataset (i.e., metadata). To increase the level of automation and improve the efficiency of the Regulatory Review process, define.xml can be used to provide the Data Definition Document in a machine-readable format. The formal name for this is the Case Report Tabulation Data Definition (CRT DD) specification. Both SDTM and ADaM datasets have their respective Define files.

Metadata – Information or data about data.

Record – A row in a dataset.

SDTM - Study Data Tabulation Model – A document written by the CDISC Submission Data Standards (SDS) team that describes the general conceptual model for representing clinical study data that are submitted to regulatory authorities. The SDTM provides a general framework for describing the organization of information collected for clinical trials and submitted to regulatory authorities



Free online SAS training sites