├── License.md
├── README.md
├── docs
├── index.html
├── javascripts
│ └── scale.fix.js
└── stylesheets
│ ├── pygment_trac.css
│ └── styles.css
├── etc
├── Lymphocyte_Percentage.png
├── TILAb_Score.png
├── TILAb_Score_train.png
├── TILAb_Score_valid.png
├── flow_diagram.png
└── results.png
├── models
└── MobileNet.hdf5
├── results
├── TILAb_Score_train.png
└── TILAb_Score_valid.png
├── src
├── inference.py
├── survival_analysis.r
├── survival_utils.r
├── til_quantification.py
└── training.py
└── survival_data
└── README.md
/License.md:
--------------------------------------------------------------------------------
1 | TILAb score quantify the aboundance of Tumour Infiltrating Lymphocytes (TIL) in a Whole Slide Image.
2 |
3 | Copyright (C) 2019 TIA-Lab
4 |
5 | This program is free software: you can redistribute it and/or modify
6 | it under the terms of the GNU General Public License as published by
7 | the Free Software Foundation, either version 3 of the License, or
8 | any later version.
9 |
10 | This program is distributed in the hope that it will be useful,
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | GNU General Public License for more details.
14 |
15 | You should have received a copy of the GNU General Public License
16 | along with this program. If not, see
A measure to quantify TIL abundance in Histology Images
20 |View the Project on GitHub TIA-Lab/TILAb-Score
21 |Introduction29 |
Dataset30 |
Method31 |
Results32 |
Citation33 | 34 |
The paper has been published in Nature Scientific Reports journal.
39 | 40 |Tumour Infiltrating Lymphocytes (TILs) are the lymphocytes that found within or in the vicinity of tumour. Numerous studies have reported the correlation of TIL density with improved overall survival (OS) and longer disease-free survival (DFS). TILAb-Score is a pronostic biomarker which quantify the TIL abundance based on lymphocytes to tumour ratio and their colocalization.
42 | 43 |The dataset consists of 70 cases including 60 OSCC and 10 control cases. These cases are collected from the patients in Shaukat Khanum Memorial Cancer Hospital & Research Centre (SKMT) Lahore, Pakistan. The malignent cases were splitted into two equal sized subsets, one for modelling and the other for test. For the classification of biologically significant regions, more than half million regions (belonging to different classes such as tumour, lymphocytes, and stroma) were marked by an expert pathologist in all WSIs of the modelling cohort. The annotations were then used for training and validation of the proposed method.
45 |Please contact Prof. Nasir Rajpoot (n.m.rajpoot@warwick.ac.uk) for dataset related queries.
46 |Whole slide images are multi-gigapixel images and cannot be used directly for image analysis tasks particularly training a deep learning based classifier. Therefore, we divide the WSIs into small regions (patches) for processing. A deep learning based classifier is applied on the patches to identify whether the patch contains tumour, lymphocytes or other histological primitives. However, the regions where the lymphocytes are infiltrating the tumour may not be confined within a patch. Besides, there is considerable variation in the size of TIL regions, making the quantification of TILs a non-trivial task. We address this issue by adopting the widely accepted definition of TILs, i.e., lymphocytes that lie in the neighbourhood of tumour areas. The patch labels predicted as lymphocytes or tumour are then used to compute a statistical measure of co-localization, which is further incorporated into the computation of the TILAb score of lymphocytic infiltration.
48 |
49 |
50 |
The prognostic significance of TILAb score for DFS is investigated using Kaplan-Meier (KM) curves. Kaplan-Meier curves in following figures show that the proposed TILAb score is significantly associated with long term (low risk) DFS of OSCC patients (p = 0.0039). However, the lymphocytic percentage in a WSI without any correlation with tumour does not show any statistical significance.
53 |
54 |
55 |
@article{shaban2019novel, 59 | title={A novel Digital Score for Abundance of Tumour Infiltrating Lymphocytes predicts Disease free Survival in oral Squamous cell carcinoma}, 60 | author={Shaban, Muhammad and Khurram, Syed Ali and Fraz, Muhammad Moazam and Alsubaie, Najah and Masood, Iqra and Mushtaq, Sajid and Hassan, Mariam and Loya, Asif and Rajpoot, Nasir M}, 61 | journal={Scientific reports}, 62 | volume={9}, 63 | number={1}, 64 | pages={1--13}, 65 | year={2019}, 66 | publisher={Nature Publishing Group} 67 | }68 | 69 |