Quickstart - Detection of differential RNA modifications

Download and extract the demo dataset from our S3 bucket:

wget http://s3.ap-southeast-1.amazonaws.com/all-public-data.store.genome.sg/xpore/demo.tar.gz
tar -xvf demo.tar.gz

After extraction, you will find:

demo
|-- Hek293T_config.yml  # configuration file
|-- data
    |-- HEK293T-METTL3-KO-rep1  # dataset dir
    |-- HEK293T-WT-rep1 # dataset dir

Each dataset under the data directory contains the following directories:

  • fast5 : Raw signal FAST5 files

  • fastq : Basecalled reads

  • bamtx : Transcriptome-aligned sequence

  • nanopolish: Eventalign files obtained from nanopolish eventalign

  1. Preprocess the data for each data set using xpore-dataprep. (This step will take approximately 5h for 1 million reads):

    # Within each dataset directory i.e. demo/data/HEK293T-METTL3-KO-rep1 and demo/data/HEK293T-WT-rep1, run
    xpore-dataprep \
    --eventalign nanopolish/eventalign.txt \
    --summary nanopolish/summary.txt \
    --out_dir dataprep \
    --genome
    

The output files are stored under dataprep in each dataset directory:

  • eventalign.index : Index file to access eventalign.txt, the output from nanopolish eventalign

  • data.json : Preprocessed data for xpore-diffmod

  • data.index : File index of data.json for random access per gene

  • data.readcount : Summary of readcounts per gene

  • data.log : Log file

Run xpore-dataprep -h to explore the full usage.

2. Prepare a .yml configuration file. With this YAML file, you can specify the information of your design experiment, the data directories, the output directory, and the method options. In the demo directory, there is an example configuration file Hek293T_config.yaml available that you can use as a starting template. Below is how it looks like:

notes: Pairwise comparison without replicates with default parameter setting.

data:
    KO:
        rep1: ./data/HEK293T-METTL3-KO-rep1/dataprep
    WT:
        rep1: ./data/HEK293T-WT-rep1/dataprep

out: ./out # output dir

method:
    prefiltering:
        method: t-test
        threshold: 0.1
    stopping_criteria: 0.0001

Note that if high accuracy is required, the prefiltering section should be removed and the processing time is accordingly longer. See the Configuration file page for details.

  1. Now that we have the data and the configuration file ready for modelling differential modifications using xpore-diffmod.

# At the demo directory where the configuration file is, run.
xpore-diffmod --config Hek293T_config.yml

The output files are generated within the out directory:

  • diffmod.table : Result table of differential RNA modification across all tested positions

  • diffmod.log : Log file

Run xpore-diffmod -h to explore the full usage.

We can rank the significantly differentially modified sites based on pval_HEK293T-KO_vs_HEK293T-WT. The results are shown below.:

id                position   kmer  diff_mod_rate_KO_vs_WT  pval_KO_vs_WT  z_score_KO_vs_WT  ...  sigma2_unmod  sigma2_mod  conf_mu_unmod  conf_mu_mod  mod_assignment        t-test
ENSG00000114125  141745412  GGACT               -0.823318  4.241373e-115        -22.803411  ...      5.925238   18.048687       0.968689     0.195429           lower  1.768910e-19
ENSG00000159111   47824212  GGACT               -0.828023   1.103790e-88        -19.965293  ...      2.686549   13.820089       0.644436     0.464059           lower  5.803242e-18
ENSG00000159111   47824138  GGGAC               -0.757891   1.898161e-73        -18.128515  ...      3.965195    9.877299       0.861480     0.359984           lower  9.708552e-08
ENSG00000159111   47824137  GGACA               -0.604056   7.614675e-24        -10.068479  ...      7.164075    4.257725       0.553929     0.353160           lower  2.294337e-10
ENSG00000114125  141745249  GGACT               -0.514980   2.779122e-19         -8.977134  ...      5.215243   20.598471       0.954968     0.347174           lower  1.304111e-06

Notes: We can consider only one modification type per k-mer by finding the majority mod_assignment of each k-mer. For example, the majority of the modification means of GGACT (mu_mod) is lower than the non-modification counterpart (mu_unmod). This can be achieved by simply running groupby on the kmer and mod_assignment columns in Python. We can then remove those positions with the mod_assigment not in line with the majority in order to restrict ourselves with one modification type per kmer in the analysis. You can find more details in our paper.