Portable Microhaplotype Object (PMO)
  • Home
  • Format Info
    • Development of Format
    • PMO fields overview
    • PMO Examples
    • Format Overview For Developers
  • Tools Installation
    • pmotools-python installation
  • pmotools-python usages
    • Command line interface

    • pmotools-runner.py
    • Command line interface to pmotools-python with pmotools-runner.py
    • Extracting out of PMO
    • Extracting allele tables using pmotools-python
    • Subset PMO
    • Subsetting from a PMO using pmotools-python
    • Getting sub info from PMO
    • Getting basic info out of PMO using pmotools-python
    • Getting panel info out of PMO using pmotools-python
    • Handling Multiple PMOs
    • Handling multiple PMOs pmotools-python

    • Python interface
    • Getting basic info out of a PMO
    • Creating a PMO File
  • Resources
    • References

Contents

  • Example data format
    • From Pf7+ data for the same panel above

PMO Examples

Example data format

Example created from a study from Mozambique(Tessema et al. 2022)

https://academic.oup.com/jid/article/225/7/1227/5897005

moz2018_PMO.json.gz

From Pf7+ data for the same panel above

Global data microhaplotypes were constructed by PathWeaver for the same targeted amplicon panel above. This includes approximately 1900 samples.

PathWeaverHeome1_PMO.json.gz

References

Tessema, Sofonias K, Nicholas J Hathaway, Noam B Teyssier, Maxwell Murphy, Anna Chen, Ozkan Aydemir, Elias M Duarte, et al. 2022. “Sensitive, Highly Multiplexed Sequencing of Microhaplotypes from the Plasmodium Falciparum Heterozygome.” J. Infect. Dis. 225 (April): 1227–37.
Source Code
---
title: PMO Examples 
---

{{< fa file >}}

```{r setup, echo=FALSE}
source("../common.R")
```

<script src="https://code.jquery.com/jquery-2.2.2.min.js"></script>

<script>
$(document).ready(function() {
    document.querySelectorAll('.downloadLink').forEach(function(e) { e.setAttribute('download', e.text); });
    document.querySelectorAll('.downloadLink').forEach(function(e) { e.innerHTML = '<i class="fa fa-download"></i>  ' + e.text; });
});
</script>


# Example data format 

Example created from a study from Mozambique[@Tessema2022-fg] 

<https://academic.oup.com/jid/article/225/7/1227/5897005>

```{r}
#| results: asis
#| echo: false

cat(createDownloadLink("moz2018_PMO.json.gz"))

```

## From Pf7+ data for the same panel above 


Global data microhaplotypes were constructed by PathWeaver for the same targeted amplicon panel above. This includes approximately 1900 samples.  


```{r}
#| results: asis
#| echo: false

cat(createDownloadLink("PathWeaverHeome1_PMO.json.gz"))

```