Analyze Acute Lymphoblastic Leukemia Maintenance Therapy

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
library(bibtex)
library(bookdown)

refs <- read.bib("references.bib")
keys <- names(refs)

Introduction

Acute Lymphoblastic Leukemia (ALL)

ALL treatment is broadly divided into 2 phases - Intensive Phase and Maintenance Phase. The intensive phase of treatment is further divided into 4 sub-phases -- induction, consolidation, interim maintenance and delayed intensification [@das2022protocol].

Maintenance therapy (MT), the longest phase of ALL treatment consists of \~2 years (96 weeks or 8 cycles - 12 weeks per cycle) [@das2022protocol]. Patients are advised to visit hospital every alternate week (every two weeks) for consultation and on a weekly basis in case of toxicities (neutropenia, thrombocytopenia or any other). Overall, a patient should ideally have a minimum of 48 visits during MT. During each visit, patient's blood report is examined for the following parameters - absolute neutrophil count (ANC), platelet count (PLT) and hemoglobin (HB) to adjust (or dose titrations) the drugs: 6-mercaptopurine (6MP) and Methotrexate (MTX) that are prescribed on weekly basis.


Package

ALL studies, across the globe, have shown that delivering optimal MT is crucial to achieve better treatment outcomes [@schmiegelow2014mercaptopurine]. Delivering optimal MT is ensured by prescribing maximum tolerated 6MP and MTX doses that are adjusted patient's hospital visit. In view of this, the package was created to analyse and visualize the ALL MT data (ANC/PLT/HB/6MP/MTX)[^1]. The use of package would assist physicians to evaluate MT for a given patient or a cohort at any center. Although, the package was developed considering the ICiCLe-ALL-14 protocol [@das2022protocol] as default, it can be used to analyze data from centers with different MT protocols. In case of different protocol, the user will need to alter the defined parameters specific to protocol as function arguments.

[^1]: The work was initiated as part of Tushar Mungle's PhD at IIT Kharagpur [@mungle2020modelling] and then continued at TTCRC, Tata Medical Center, Kolkata.

Using this package the user may:

  1. Convert maintenance sheets (Tata Medical Center Kolkata, India format or user dependent) into a cleaner, single csv with longitudinal data for each patient.

  2. Analyze MT

    • At an individual patient level

      • To track patient's MT progression during or after therapy [@mungle2020modelling].

      • To track patient's cycle-by-cycle MT progression during or after the therapy using summary measure (SM) weighted mean (6MP*MTX) vs weighted mean ANC parameters in a scatterplot.

    • At cohort level

      • SM plot to analyze MT for a given cohort defined by the user. SM is evaluated for each patient and plotted together to represent the entire cohort [@mungle2020modelling].

      • Compare SM for two different cohort defined by the user to evaluate MT practice. Cohort comparisons can include clinical interventions, year-wise practice evolution, patients treated by two different set of physicians, or as user see it fit [@mungle2020modelling].

  3. Evaluate real time dosing decisions (stop, reduce or increase) by the physicians during MT based on MT dosing guidelines for the individual patient or cohort [@mungle2020modelling].

  4. Evaluate hematological toxicities - neutropenia, thrombocytopenia and anemia during MT for the individual patient or cohort.

  5. Evaluate/plot median time to first 6MP dose increase for the individual patient or cohort [@mungle2020modelling].

# library(allMT)

Data

  1. The data recording sheet used by TMC can be downloaded/copied as

    ```r

    Uncomment below line before running the snippet

    library(allMT)

    pat_data <- system.file("extdata/tmc_data/", "UPN_916.xls", package = "allMT") dest_path <- getwd() # user may choose a different destination file.copy(pat_data, dest_path) ```

  2. To use functions of the package, the data needs to be in a specific format as described in below example. Sample data[^2] for 3 individual patient is available as UPN_914, UPN_915, and UPN_916 as rda with the library for viewing. Additionally, UPN_914, UPN_915, UPN_916, UPN_917 and UPN_918 are present under the folder "/extdata/processed_data/" as csv format to run any examples.

    Data can be checked or saved as

    ```r

    Below code should work for any user independent of OS

    pat_data <- system.file("extdata/processed_data/", "UPN_916.csv", package = "allMT")

    pat_df <- utils::read.csv(pat_data, header = TRUE, sep = ",")

    # head(pat_df)

    ```

[^2]: Ethics approval statement: The anonymized clinical data set refers to patients treated on the ICiCLe-ALL-14 treatment protocol at the Tata Medical Center Kolkata (institutional review board approval EC/TMC/12/13 for the treatment protocol). Funding support for the ICiCLe-ALL-14 clinical study (Clinical Trials Registry-India reference CTRI/2015/12/006434) was provided by the National Cancer Grid (2016/001; 2016-) and the Indian Council of Medical Research (79/159/2015/NCD-III; 2017-19).


Functions

Convert Data

The output of both the functions will result in standard patient csv files (as described Data section) saved in a folder defined by the user.

Analyze MT Data

At individual patient level

At cohort level

Evaluate Physicians' Dosing Decisions

Evaluate Hematological Toxicities

[Note:]{.underline} Depending upon value provided for the argument 'input_files_path' as a

  1. path to a file for single patient csv - resulting output will be analysis for single patient
  2. path to a folder (cohort) with multiple csv - resulting output will analysis be carried for the cohort of patients' csv files present in the folder

Time to First-Dose-Increase


References



Try the allMT package in your browser

Any scripts or data that you put into this service are public.

allMT documentation built on April 21, 2023, 1:08 a.m.