Skip to main content

Integrating informatics tools and portable sequencing technology for rapid detection of resistance to anti-tuberculous drugs

Abstract

Background

Mycobacterium tuberculosis resistance to anti-tuberculosis drugs is a major threat to global public health. Whole genome sequencing (WGS) is rapidly gaining traction as a diagnostic tool for clinical tuberculosis settings. To support this informatically, previous work led to the development of the widely used TBProfiler webtool, which predicts resistance to 14 drugs from WGS data. However, for accurate and rapid high throughput of samples in clinical or epidemiological settings, there is a need for a stand-alone tool and the ability to analyse data across multiple WGS platforms, including Oxford Nanopore MinION.

Results

We present a new command line version of the TBProfiler webserver, which includes hetero-resistance calling and will facilitate the batch processing of samples. The TBProfiler database has been expanded to incorporate 178 new markers across 16 anti-tuberculosis drugs. The predictive performance of the mutation library has been assessed using > 17,000 clinical isolates with WGS and laboratory-based drug susceptibility testing (DST) data. An integrated MinION analysis pipeline was assessed by performing WGS on 34 replicates across 3 multi-drug resistant isolates with known resistance mutations. TBProfiler accuracy varied by individual drug. Assuming DST as the gold standard, sensitivities for detecting multi-drug-resistant TB (MDR-TB) and extensively drug-resistant TB (XDR-TB) were 94% (95%CI 93–95%) and 83% (95%CI 79–87%) with specificities of 98% (95%CI 98–99%) and 96% (95%CI 95–97%) respectively. Using MinION data, only one resistance mutation was missed by TBProfiler, involving an insertion in the tlyA gene coding for capreomycin resistance. When compared to alternative platforms (e.g. Mykrobe predictor TB, the CRyPTIC library), TBProfiler demonstrated superior predictive performance across first- and second-line drugs.

Conclusions

The new version of TBProfiler can rapidly and accurately predict anti-TB drug resistance profiles across large numbers of samples with WGS data. The computing architecture allows for the ability to modify the core bioinformatic pipelines and outputs, including the analysis of WGS data sourced from portable technologies. TBProfiler has the potential to be integrated into the point of care and WGS diagnostic environments, including in resource-poor settings.

Background

Tuberculosis disease (TB), caused by Mycobacterium tuberculosis, is the world’s major cause of death from an infectious agent [1]. The emergence of multi-drug-resistant tuberculosis (MDR-TB) is leading to difficulties in disease control. MDR-TB is resistance to at least rifampicin and isoniazid, and extensive drug resistance (XDR-TB) is the additional resistance to the fluoroquinolones and injectable drugs (amikacin, kanamycin and capreomycin) used to treat MDR-TB. Phenotypic methods of determining susceptibility to anti-tuberculosis drugs (DSTs) can take weeks and require culturing of M. tuberculosis. Drug resistance in M. tuberculosis is almost exclusively due to mutations (including single nucleotide polymorphisms (SNPs), insertions and deletions (indels)) in genes coding for drug targets or converting enzymes. Putative compensatory mechanisms have been described to overcome fitness impairment that arises during the accumulation of resistance-conferring mutations [2].

Molecular characterisation of resistance from the M. tuberculosis circular genome (size 4.4 Mb) offers a rapid alternative to traditional culture-based methods. Commercial PCR-based tests and line probe assays are available for a limited number of drugs but, with the exception of rifampicin, they have low sensitivity for detecting all possible molecular targets for resistance [3]. Due to the multiplicity of drugs used in the treatment of TB, determining the full resistance profile for a patient suspected of having drug-resistant disease requires the analysis of many genetic loci. Further, new mutations are being uncovered using genome-wide association and convergent evolution studies and revealing an important role for indels and copy number variants in drug resistance [4]. Whole genome sequencing (WGS) offers an attractive option as it simultaneously examines all loci and provides information regarding both small and large changes in the genome [3], allowing for the prediction of resistance and potentially susceptibility [5]. Third-generation portable sequencing technologies, such as Oxford Nanopore MinION [6], offer opportunities to roll out WGS as a diagnostic in the less well-resourced settings found in countries where TB is endemic. However, this requires efficient and automated informatic platforms to enable the data to be analysed without necessarily needing a trained genomics expert. For acceptance as a diagnostic tool to guide treatment of drug-resistant TB, the sequencing platforms and analytical tools employed must be robust and reliable.

Previously we released the TBProfiler webserver that allowed researchers to upload raw sequence data to retrieve a report with information on lineage and resistance across 14 anti-TB drugs. To date, this tool has been used to profile tens of thousands of isolates to produce high-quality reports and has been shown to outperform other software [7] and established diagnostic tools [3]. The underlying mutation library consists of 1193 polymorphisms across 32 targets conferring resistance to the 14 anti-tuberculous drugs. As our understanding of the molecular mechanisms of resistance is improving, such libraries of mutations need to be regularly updated. Further, there is a need to characterise genomic hetero-resistance in candidate loci, where both sensitive and resistance alleles of the same mutation are present in a sample. It has been shown that identifying hetero-resistance can lead to better predictions of the drug resistance phenotypes (e.g. XDR-TB [8]). More generally, whilst the web interface greatly simplifies the process of analysing raw sequence data, it may not be convenient for all settings. For example, a stand-alone tool may be useful in areas where internet access is slow or not available, or parallel profiling of hundreds of strains is required.

In this study, we update the TBProfiler library to include mutations for two further drugs used in the treatment of drug-resistant TB, cycloserine and delamanid. To improve the tool’s utility, a command line implementation has been developed, with hetero-resistance characterisation, and the capacity for processing of large-scale data, potentially from multiple WGS platforms (e.g. Illumina, MinION). The performance of the TBProfiler pipeline is compared to DST outcomes across > 17k M. tuberculosis strains from over 50 countries with Illumina WGS data, as well as on a subset that has undergone cutting edge MinION WGS.

Implementation

Resistance mutation library

New mutations were added to an existing robust TBProfiler library [3], with inclusion based on evidence from recent publications [4, 9, 10]. In total, 178 new mutations were added to the library across 16 drugs, including for cycloserine and delamanid, not present in the previous version of the library. This library is hosted on GitHub (https://github.com/jodyphelan/tbdb), and details on variants included can also be found in supplementary materials (Additional file 1: Data S1). GitHub hosting allows for changes in the mutation library to be discussed, tracked and visualised. Different versions of the library can be maintained using Forks, allowing users to experiment with the library without affecting the main project. These changes can then be merged into the main repository after the changes are reviewed. Multiple users/developers can contribute towards the library.

In silico profiling of M. tuberculosis resistance phenotypes

A new TBProfiler tool for in silico prediction of drug resistance and strain lineage linked to the mutation library was developed using the Python computing language and well-established bioinformatic tools such as trimmomatic, BWA/bowtie2 and SAMtools. The new pipeline can be customised (Additional file 2: Figure S1), but in its default mode, reads are trimmed using trimmomatic (parameters: LEADING:3 TRAILING:3 SLIDINGWINDOW:4:20 MINLEN:36) then mapped to the H37Rv reference (AL123456) using bowtie2 (parameters: default). Variants are called using BCFtools mpileup (parameters: -ABq0 -Q0 -a DP, AD) and BCFtools call (parameters: -mg 10) and annotated using BCFtools csq (parameters: -p m) and is parallelised with GNU parallel [11]. Variants are annotated with BCFtools csq, which handles multiple variants in the same codon jointly. Annotated variants are compared to the TBProfiler library database. The TBProfiler pipeline calculates the proportion of the reads supporting each allele and reports this information, which can serve as a proxy for phenotypic hetero-resistance. Deletion calling is performed using Delly software [12]. The TBProfiler pipeline is available on GitHub (from https://github.com/jodyphelan/TBProfiler) and is easily installed through the bioconda channel [13]. A full set of new features can be found in supplementary materials (see Additional file 2: Table S1). TBProfiler report outputs are written in json, txt and pdf formats, with options to collate data into multi-sample reports (Additional file 2: Figure S3). The collated data can be graphically viewed on top of a phylogenetic tree using iTOL. Config files can be generated and uploaded to iTOL to visualise drug resistance types, lineage and individual drug resistance predictions.

Sequencing data

A database of 17,239 strains for which DST and Illumina WGS raw data is published and publicly available was collated (see Additional file 2: Table S2-S4; Figure S2). In addition, M. tuberculosis isolates from three patients (por5–7; 11–12 replicates each) with known drug-resistant M. tuberculosis were cultured and DNA was extracted for Oxford Nanopore MinION sequencing. Sequencing libraries of the isolates were prepared from DNA extracts using the SQK-LWB001 Kit (Oxford Nanopore Technologies, Oxford). Briefly, 100 ng of DNA from each isolate was sheared at 6000 rpm in a g-tube (Covaris, Woburn, MA). The fragmented DNA was end-repaired and dA-tailed using NEBNext® Ultra™ II End Repair/dA-Tailing Module (New England BioLabs, Ipswich, MA) following the manufacturer’s protocol. End-prepped DNA was purified using AM-Pure XP beads (Beckman Coulter, Brea, CA) at 0.4× concentration, washed twice with 70% ethanol and eluted in nuclease-free water. Purified end-prepped DNA was incubated with Barcode Adaptor (BCA) from the SQK-LWB001 kit and NEB Blunt/TA Ligase Master Mix (New England BioLabs, Ipswich, MA) for 20 min at room temperature. The BCA-ligated DNA was once again purified using AMPure XP beads at 0.4× concentration, washed twice with 70% ethanol and eluted in nuclease-free water. Ten nanogrammes of DNA from each prep was amplified using a unique set of barcode primers provided with the SQK-LWB001 kit. The PCR conditions are summarised in the supplementary materials (see Additional file 2: Table S5). The PCR products were separately purified using AMPure XP beads at 0.4× concentration, washed twice with 70% ethanol and eluted in 10 μl of 10 mM Tris-HCl pH 8.0 with 50 mM NaCl. The barcoded libraries were pooled together to a total of 200 fmol in an equimolar ratio in 10 μl of 10 mM Tris-HCl pH 8.0 with 50 mM NaCl. The pooled library was incubated with 1 μl of RPD adapter (provided in the SQK-LWB001 kit) and incubated for 5 min at room temperature. The libraries were then loaded onto FLO-MIN106 (R9.4) flow cells following standard ONT protocols. Base calling was performed using Oxford Nanopore’s Albacore software using default parameters. The strains have previously been characterised both phenotypically using DST and genotypically using Illumina MiSeq and Sanger sequencing [14].

The performance of the TBProfiler tool

To test the performance of the library, the WGS raw data for the 17,239 strains were processed through the new TBProfiler pipeline. The predictions from the tool were compared to the DST data (assumed to be the gold standard) and used to calculate the sensitivity and specificity of the library. The fastQ files from the MinION sequencing were also processed by TBProfiler (using parameters -m minION). Similarly, the predictive ability was compared to those from an alternative tool, Mykrobe-predictor TB tool [8], which was implemented using its command-line version (v0.5.6-0-gbd7923a-dirty; parameters: --expected_error_rate 0.15). The predictive ability for the CRyPTIC library [5] was calculated by transforming the published mutation list to a compatible library for TBProfiler, which was then run with default parameters.

Results

The existing TBProfiler mutation library was updated to include 178 new mutations, 4 new targets and 2 new drugs. The overall number of unique mutations in the library is 1296 (see Table 1 for a summary). The TBProfiler pipeline was run across the ~ 17 k strains for which DST and high quality WGS data was available. These strains represent all lineages, with the majority in lineages 1 (10.9%), 2 (21.6%), 3 (16.7%) and 4 (49.5%), and the remaining isolates belonging to lineages 5, 6, 7 and Mycobacterium bovis (1.2%). The majority of strains (64.2%) were pan-susceptible, while 22.3% were MDR-TB and 2.0% were XDR-TB, and the remaining 11.5% were non -MDR-TB or -XDR-TB with resistance to at least one drug (termed “drug resistant”) (Additional file 2: Table S2). Drug susceptibility phenotypes for 16 drugs were collated and vary in their degree of completeness across the dataset. The most complete DSTs were available for the first line treatments such as rifampicin (N = 17,040; 98.8%) and isoniazid (N = 16,955; 98.4%), with the lowest for the second-line treatments (e.g. cycloserine, N = 402, 2.3%) (Additional file 2: Table S3).

Table 1 Summary of mutations included in the curated whole genome drug resistance TBProfiler library

Genotypic hetero-resistance was present in 28 of the 32 drug targets (Additional file 2: Table S6), including Rv0678, which reflects the observed complex nature of resistance acquisition [15]. The predictive ability of TBProfiler across all 16 drugs was calculated by comparing the inferred resistance calls against the reported DST result (Table 2). The sensitivity ranged from 95.9% (rifampicin) to 23.8% (para-aminosalicylic acid (PAS)). The sensitivities for first-line treatments such as rifampicin, isoniazid and ethambutol were high (> 90%), but lower for pyrazinamide (87.6%). The low sensitivity for pyrazinamide could potentially be attributed to the high number of rare variants in the pncA gene, where almost half (292/624) of variants were unique to single isolates. These rare variants may influence resistance levels. Additionally, to calculate the performance of our approach, we assumed phenotypic DST to be the gold standard. However, incorrect DST data could explain some false results. For example, M. bovis is intrinsically resistant to pyrazinamide, but 30% of isolates obtained from the public domain for this study were classed as sensitive to pyrazinamide. Ethionamide sensitivity was estimated at 89.5%, while the specificity was 67.4%. The high number of false positives for ethionamide may be influenced by the level of resistance conferred by inhA promoter mutations. These levels may be close to, but under the critical concentration, and the subsequent DST result will not reflect this.

Table 2 Accuracy of the TBProfiler library

Sensitivity to the second-line injectables ranged between 84.7% for capreomycin and 92.0% for kanamycin. The sensitivity for fluoroquinolones was high and ranged from 86.0% for moxifloxacin to 90.6% for ciprofloxacin. The variants conferring resistance to the individual drugs in the fluoroquinolone class do not differ in our library, and the differences in sensitivity are attributable to the variability in DST across the drugs. The overall sensitivity for the fluoroquinolones class reported by TBProfiler was 89.1%. Sensitivities for PAS (23.8%) and cycloserine (43.0%) were low, indicating difficulties either with unknown molecular mechanisms or with DST. The predictive value for assigning MDR-TB and XDR-TB to isolates was high, with sensitivities at 94.1% and 83.4% respectively. Additionally, 96.5% of pan-susceptible isolates with complete phenotypic data for the first-line drugs were correctly predicted. The specificity of the library was greater than 90% for all comparisons apart from ethionamide (Table 2). The sensitivities of Mykrobe-Profiler TB and the library published by the CRyPTIC consortium were lower than those from TBProfiler, and specificities broadly similar (Additional file 2: Table S7).

To assess the ability of TBProfiler to perform in silico profiling using MinION data, 34 replicates underwent WGS across one MDR-TB (por5) and two XDR-TB (por6 and por7) isolates (Table 3). The median read depth after mapping was 53-fold coverage (range: 25–141) and led to on average 96.4% of the genome being covered by at least 10 reads. Across the 34 isolates and 10 drugs, there was high concordance between drug resistance mutations inferred by TBProfiler from the analysis of MinION and alternative Illumina and Sanger sequencing data (328/340, 94.5%). Identical mutations were identified across each set of replicates, indicating the high reproducibility of the variant calling pipeline. The discrepancies between the MinION and Illumina data were found in por7 replicates (n = 12), where the Illumina data revealed a frameshift insertion (751T>TTG) in the tlyA gene associated with capreomycin resistance. This insertion could not be called using the MinION data, due to known issues regarding indel characterisation. Allele counts from the reads mapping to position 751 in the tlyA gene revealed that the resistance mutation was in a minority. Mykrobe-predictor TB was also assessed for its ability to correctly call variants in drug resistance candidates. Greater discrepancies were observed using this pipeline, with discordant results across six drugs (Table 3).

Table 3 The in-silico profiling results for isolates sequenced using MinION

Discussion

Advances in WGS technology have expanded a role for genome analysis in the clinical laboratory. Determining resistance to anti-tuberculosis drugs by WGS has been demonstrated as feasible and is being implemented in some specialist centres [5] where it has been found to be a cost effective option [16]. We have previously shown the robustness of variant calling tools to detect SNPs, small indels and large deletions from WGS data [14]. As WGS is adopted more widely as a diagnostic tool, there is a need for robust and reliable software tools to process the vast amounts of data generated. Additionally, the growing application of third generation sequencing platforms, such as the Oxford Nanopore MinION, has driven the need to integrate analysis options for these technologies into profiling tools to support their use in a more automated format than available currently. To aid the implementation of WGS for detecting resistance to anti-tuberculosis drugs in current clinical use, the TBProfiler tool has been completely rewritten to enable the rapid processing of raw sequence data using a command line interface. Flexible and editable multi-sample reports with outputs to annotate phylogenetic trees can assist with epidemiological and clinical interpretation. Additionally, evidence of hetero-resistance is now reported based on the frequency of resistant alleles in the sequence reads. However, the absence of evidence in the sequences does not rule out phenotypic hetero-resistance due to culture methods applied for obtaining DNA for sequencing. Together with the new pipeline, we provided an updated library and report a high sensitivity and specificity for MDR-TB and XDR-TB. Additionally, the tool allows for the flexible use of different libraries such as those provided by ReSeqTB [17].

TBProfiler includes options to analyse data from the MinION platform, which can have a high error rate, and therefore requires different tools and parameters. The MinION technology promises expanded access to WGS, due to its portability and ability to sequence directly from sputum samples [18]. As rapid sequencing from metagenomic samples to detect M. tuberculosis and profile resistance becomes a reality, tools to process this data are required. We demonstrated the successful application of the TBProfiler MinION pipeline across 34 replicates covering 3 drug-resistant isolates, which have been also undergone Illumina and Sanger sequencing. In particular, we found a high concordance between replicates and across technologies, with the only difference being an insertion in the tlyA gene, which suggests that it is important to go beyond SNPs for resistance prediction. More generally, as our knowledge of resistance mechanisms grows, prediction software must allow for the flexibility and customisation of resistance databases. There is a constant need to update, re-evaluate and improve mutation libraries in response to new evidence. However, a number of published mutation libraries are no longer maintained and remain static versions of evidence at the time. To circumvent this limitation, we have hosted the library on a repository that facilitates user input.

In summary, WGS has the potential to improve the resolution and timeliness of TB diagnosis, and in combination with robust DST, can lead to new insights into drug resistance mechanisms. The upgraded TBProfiler tool allows for the flexible and rapid analysis of WGS data from Illumina and MinION platforms to predict drug resistance and strain type profiles with high accuracy.

Conclusions

We have shown that online and stand-alone versions of TBProfiler can be used to reliably profile M. tuberculosis drug resistance from WGS. This pipeline can be applied to data from multiple sequencing platforms and can support informatically the application of WGS as a diagnostic for TB clinical management, either in combination with culture or ultimately directly from patient samples.

Availability and requirements

Project name: TBProfiler

Project home page: https://github.com/jodyphelan/TBProfiler

Operating system(s): Linux, OSX

Programming language: Python

Other requirements: Conda

Licence: GPL-3.0

Any restrictions to use by non-academics: None.

Availability of data and materials

All raw sequence MinION data is available from the EBI short read archive (accession number PRJEB29732), and the Illumina project accession numbers are presented in Additional file 2: Table S4.

Abbreviations

DST:

Drug susceptibility testing

Indels:

Insertions and deletions

MDR-TB:

Multi-drug-resistant TB

PAS:

Para-aminosalicylic acid

SNP:

Single nucleotide polymorphism

TB:

Tuberculosis

WGS:

Whole genome sequencing

XDR-TB:

Extensively drug-resistant TB

References

  1. World Health Organisation. Global Tuberculosis Report 2015. 2015.

    Google Scholar 

  2. de Vos M, Müller B, Borrell S, Black PA, van Helden PD, Warren RM, et al. Putative compensatory mutations in the rpoC gene of rifampin-resistant Mycobacterium tuberculosis are associated with ongoing transmission. Antimicrob Agents Chemother. 2013;57:827–32.

    Article  Google Scholar 

  3. Coll F, McNerney R, Preston MD, Guerra-Assunção JA, Warry A, Hill-Cawthorne G, et al. Rapid determination of anti-tuberculosis drug resistance from whole-genome sequences. Genome Med. 2015;7:51. https://doi.org/10.1186/s13073-015-0164-0.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  4. Coll F, Phelan J, Hill-Cawthorne GA, Nair MB, Mallard K, Ali S, et al. Genome-wide analysis of multi- and extensively drug-resistant Mycobacterium tuberculosis. Nat Genet. 2018;50:307–16. https://doi.org/10.1038/s41588-017-0029-0.

    Article  PubMed  Google Scholar 

  5. The CRyPTIC Consortium and the 100 000 Genomes Project. Prediction of susceptibility to first-line tuberculosis drugs by DNA sequencing. N Engl J Med. 2018;379:1403–15. https://doi.org/10.1056/NEJMoa1800474.

    Article  Google Scholar 

  6. Jain M, Olsen HE, Paten B, Akeson M. The Oxford Nanopore MinION: delivery of nanopore sequencing to the genomics community. Genome Biol. 2016;17:239. https://doi.org/10.1186/s13059-016-1103-0.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  7. Schleusener V, Köser CU, Beckert P, Niemann S, Feuerriegel S. Mycobacterium tuberculosis resistance prediction and lineage classification from genome sequencing: comparison of automated analysis tools. Sci Rep. 2017;7:46327. https://doi.org/10.1038/srep46327.

    Article  CAS  PubMed  Google Scholar 

  8. Bradley P, Gordon NC, Walker TM, Dunn L, Heys S, Huang B, et al. Rapid antibiotic-resistance predictions from genome sequence data for Staphylococcus aureus and Mycobacterium tuberculosis. Nat Commun. 2015;6:10063. https://doi.org/10.1038/ncomms10063.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  9. Bloemberg GV, Keller PM, Stucki D, Stuckia D, Trauner A, Borrell S, et al. Acquired resistance to bedaquiline and delamanid in therapy for tuberculosis. N Engl J Med. 2015;373:1986–8. https://doi.org/10.1056/NEJMc1505196.

    Article  PubMed  PubMed Central  Google Scholar 

  10. Hoffmann H, Kohl TA, Hofmann-Thiel S, Merker M, Beckert P, Jaton K, et al. Delamanid and bedaquiline resistance in Mycobacterium tuberculosis ancestral Beijing genotype causing extensively drug-resistant tuberculosis in a Tibetan refugee. Am J Respir Crit Care Med. 2016;193:337–40. https://doi.org/10.1164/rccm.201502-0372LE.

    Article  CAS  PubMed  Google Scholar 

  11. Tange O. GNU Parallel 2018; 2018. https://doi.org/10.5281/ZENODO.1146014.

    Book  Google Scholar 

  12. Rausch T, Zichner T, Schlattl A, Stütz AM, Benes V, Korbel JO. DELLY: structural variant discovery by integrated paired-end and split-read analysis. Bioinformatics. 2012;28:i333–9.

    Article  CAS  Google Scholar 

  13. Grüning B, Dale R, Sjödin A, Chapman BA, Rowe J, Tomkins-Tinch CH, et al. Bioconda: sustainable and comprehensive software distribution for the life sciences. Nat Methods. 2018;15:475–6. https://doi.org/10.1038/s41592-018-0046-7.

    Article  CAS  PubMed  Google Scholar 

  14. Phelan J, O’Sullivan DM, Machado D, Ramos J, Whale AS, O’Grady J, et al. The variability and reproducibility of whole genome sequencing technology for detecting resistance to anti-tuberculous drugs. Genome Med. 2016;8:132.

    Article  Google Scholar 

  15. Zimenkov DV, Nosova EY, Kulagina EV, Antonova OV, Arslanbaeva LR, Isakova AI, et al. Examination of bedaquiline- and linezolid-resistant Mycobacterium tuberculosis isolates from the Moscow region. J Antimicrob Chemother. 2017;72:1901–6. https://doi.org/10.1093/jac/dkx094.

    Article  CAS  PubMed  Google Scholar 

  16. McNerney R, Zignol M, Clark TG. Use of whole genome sequencing in surveillance of drug resistant tuberculosis. Expert Rev Anti-Infect Ther. 2018;16:433–42. https://doi.org/10.1080/14787210.2018.1472577.

    Article  CAS  PubMed  Google Scholar 

  17. Ezewudo M, Borens A, Chiner-Oms Á, Miotto P, Chindelevitch L, Starks AM, et al. Integrating standardized whole genome sequence analysis with a global Mycobacterium tuberculosis antibiotic resistance knowledgebase. Sci Rep. 2018;8:15382. https://doi.org/10.1038/s41598-018-33731-1.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  18. Charalampous T, Richardson H, Kay GL, Baldan R, Jeanes C, Rae D, et al. Rapid diagnosis of lower respiratory infection using nanopore-based. Clin Metagenomics bioRxiv. 2018:387548. https://doi.org/10.1101/387548.

Download references

Acknowledgements

We thank Oxford Nanopore for facilitating sequencing. Sequence analysis was performed on the MRC UK funded eMedlab computing resource. We thank Dr. Francesc Coll for advice and discussions.

Funding

This work was supported by the UK National Measurement System and the European Metrology Programme for Innovation and Research (EMPIR) joint research project [HLT07] “AntiMicroResist” which has received funding from the EMPIR programme co-financed by the Participating States and the European Union’s Horizon 2020 research and innovation programme. JP Is supported by a Newton Institutional Links Grant (British Council. 261868591). TGC is funded by the Medical Research Council UK (Grant no. MR/M01360X/1, MR/N010469/1, MR/R025576/1, and MR/R020973/1) and BBSRC (Grant no. BB/R013063/1). SC is funded by Medical Research Council UK grants (MR/M01360X/1, MR/R025576/1, and MR/R020973/1). DM is supported by Fundação para a Ciência e a Tecnologia, Portugal (Grant no SFRH/BPD/100688/2014). JO’G is supported by the UK Antimicrobial Resistance Cross Council Initiative (MR/N013956/1) and Rosetrees Trust (A749). DM, JR and MV are thankful for the support of Grant GHTMUID/Multi/04413/2013 from Fundação para a Ciência e a Tecnologia, Portugal. These funding bodies did not have a role in the design of the study and collection, analysis, and interpretation of data and in writing the manuscript.

Author information

Authors and Affiliations

Authors

Contributions

JP, DMO’S, JFH and TGC conceived and designed the study; DMO’S, DM and JR performed laboratory experiments and curation of metadata for sequencing; DMO’S, DM, JR, YEAO, SC, JO’G, RM, MH, MV and JFH contributed biological samples, sequencing or phenotypic data; JP performed the statistical analysis under the guidance of SC and TGC; DMO’S and JFH led the sequencing efforts; JP and TGC wrote the first draft of the manuscript; and the finalised manuscript contained contributions from all authors. The final manuscript was read and approved by all authors.

Corresponding author

Correspondence to Taane G. Clark.

Ethics declarations

Ethics approval and consent to participate

Not applicable.

Consent for publication

Not applicable.

Competing interests

The authors declare that they have no competing interests. There is no competing interest for authors affiliated to LGC.

Publisher’s Note

Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Additional files

Additional file 1:

Data S1. Mutations in the library (CSV 51 kb)

Additional file 2:

Table S1. New features in TBProfiler. Table S2. Distribution of drug resistance types by lineage. Table S3. Number of tested isolates for each drug. Table S4. ENA project codes of isolates used in the study. Table S5. Raw sequence data and mapping statistics for the three MinION sequenced isolates. Table S6. Number of Homozygous and Heterozygous calls per target. Table S7. Predictive performance of the different libraries. Figure S1. Schematic highlighting the main steps in the TBProfiler pipeline. Figure S2. Map showing the geographic origin and the resistance types of isolates used in this study. Figure S3. Example of the report output for an isolate. (PDF 1169 kb)

Rights and permissions

Open Access This article is distributed under the terms of the Creative Commons Attribution 4.0 International License (http://creativecommons.org/licenses/by/4.0/), which permits unrestricted use, distribution, and reproduction in any medium, provided you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons license, and indicate if changes were made. The Creative Commons Public Domain Dedication waiver (http://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Phelan, J., O’Sullivan, D.M., Machado, D. et al. Integrating informatics tools and portable sequencing technology for rapid detection of resistance to anti-tuberculous drugs. Genome Med 11, 41 (2019). https://doi.org/10.1186/s13073-019-0650-x

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s13073-019-0650-x

Keywords