Nanopore RNA Sequencing Protocol

From Neurobiology.Dev

! WARNING

This protocol is currently a work in progress and will be repeatedly updated as I troubleshoot the pipeline and refine it. Therefore, take it on an "as is" basis and use at your own risk. Once I feel that the overall pipeline and analysis is working as intended in a future revision, I will remove this warning message. Also keep in mind that I tried to keep the majority of this pipeline applicable to all cases, but you may need to redefine your sample IDs and file locations as necessary at the start of the pipeline.

This pipeline is the basis for Nanoswift, an application that will automatically perform all of the work and analyses you see here (except, of course, for the wet lab portion) and upload the results. If you have access to Nanoswift, you may use it instead of the Sequencing (which includes alignment and formatting) and m6A Detection sections below.

Also, this protocol is written with the intention that you are on a Linux-based machine, Ubuntu in particular. Certain things may be different for you, such as installing dependencies, if you are not on a Ubuntu machine. If you are trying to run the pipeline from Windows, I recommend that you use the Windows Subsystem for Linux (WSL). MacOS users should be able to follow along very closely, as I will use Conda for a lot of the command-line application installs, but some dependencies will need to be installed through Homebrew and some file paths may be different. Keep in mind that most of these command-line applications are written for the x86 architecture, and so if you are on a Mac with an Apple Silicon ARM processor, you will need to run Terminal through Rosetta 2. This can be achieved by right-clicking Terminal, selecting Get Info, and ticking the Open using Rosetta option, and can be checked with the uname -m command in the shell.

The m6a detection method used in this protocol has changed due to the development of newer methods, from EpiNano to m6ANet. We will use m6anet, but I have also included the old guide for using EpiNano at the end of the article for reference.

Finally, basecalling with Guppy has changed in recent years, and newer versions of Guppy come in CPU or GPU flavors. The GPU versions will require an NVIDIA GPU with a compute capability of 6.1 or better, which can be cross referenced with the list of CUDA compute capabilities here. In my experience, a standard basecall run with RNA takes about 1.5 days with the CPU Guppy, vs. 10 minutes with the GPU Guppy (using an NVIDIA 3090 Ti and a modern CPU with a minimum of 20 cores clocked at 2.5 GHz+). Therefore, use the GPU version if you can, but install the CPU version of Guppy and use that instead if you need to.

Defining Files

In an effort to make this pipeline as generally applicable as possible, I thought it best to start by defining where everything is on your computer first so that you can just call these shorthands in the Terminal later. Note: This will also allow you to simply copy and paste the code in code blocks below, without having to change anything in the code itself. The locations we will need to define are as follows:

  • The location of your Guppy installation and the bin folder at root/ont-guppy/bin. We will call in Terminal with $GUPPY.
  • The location of where you want to store the Guppy output as a log text file, if desired (in case you need to refer to it at some later point). We will call this with $GLOGS.
  • The location of where you will store your reference transcriptome (or genome) files. This will be called with $REF.
  • The locations of your raw nanopore .fast5 data, where you want to store the basecalled .fastq data, and where you want to store the aligned .sam, .bam, m6ANet output data. We will define these as $NRAW, $NBASE, and $NALI, respectively.
  • The location of the root m6ANet folder. We will call this with $M6AO.

Note that for my installation, I will put all of these in a folder labeled /Research within my home directory. If you do the same, you can call this base directory with the string /home/$USER/Research (Linux only; it depends on your operating system), regardless of what your unique username actually is. In addition, at the start of each run, I will define the name of my sample (currently by flow cell ID), which will be the same name as the folder that contains my raw .fast5 reads in my Nanopore raw data folder. This string (SAMPLEID) will be used to fill in file names and folder names as we go along, so you shouldn’t have to edit any of the code as you do more samples. We will do the same for the reference transcriptome file.

! WARNING

If you do additional runs and re-run this pipeline, you will need to change the SAMPLEID and execute the following code block each time before running the pipeline. Otherwise, you will overwrite the data from your last run! Additionally, you will need to redefine these variables each time you open a new Terminal window. If you do not have any of these software installed yet, I recommend coming back to this section and running this code after you have the appropriate software installed.

Shell File Paths

Tip

You can easily find out what your current working directory is in the Terminal by typing echo $PWD and hitting execute. Similarly, you can define your current directory as a variable by setting your variable equal to $PWD. PWD stands for print working directory and is a shortcut that will benefit you a lot as you navigate and define folder directories in the shell.

Bash

SAMPLEID="FAR91556" \
GREFERENCEID="GRCh38.p14.rna.fna" \
CHR="chr19" \
GUPPYVER="6.4.2" \
GUPPY="/home/$USER/Research/ont-guppy-${GUPPYVER}/bin" \
GLOGS="/home/$USER/Research/logs/guppy" \
REF="/home/$USER/Research/Ref" \
MM2="/home/$USER/Research/minimap2" \
NRAW="/home/$USER/Research/Data/Nanopore/Raw" \
NBASE="/home/$USER/Research/Data/Nanopore/Basecalled" \
NALI="/home/$USER/Research/Data/Nanopore/Aligned" \
M6AO="/home/$USER/Research/Data/Nanopore/m6ANet_results" \
EPIOUT="/home/$USER/Research/Data/Nanopore/EpiNano" \
EPI="/home/$USER/Research/EpiNano"

R File Paths

R

SAMPLEID="FAR91556"
GREFERENCEID="GRCh38.p14.rna.fna"
CHR="chr19"
OUTPUT_PATH=paste("/home/tj/Research/Data/Nanopore/Aligned", SAMPLEID, "", sep = "/")
M6ANET_PATH=paste("/home/tj/Research/Data/Nanopore/m6ANet_results", SAMPLEID, "", sep = "/")

Note that at any time, you can check these in Terminal using the echo command. For example, if I wanted to check what my current SAMPLEID was, I would type echo "${SAMPLEID}" and execute. Also, notice that here we are only defining one sample to be analyzed, which is all we need for m6ANet or EpiNano-SVM. EpiNano-Error, however, requires two samples as input if you use it. For that analysis, I will leave defining the samples to be compared at the start of the EpiNano-Error section.

Introduction

Hello, and welcome to the mRNA m6A modification detection guide and protocol. This protocol is a fully comprehensive guide designed to help you get a Linux (or compatible shell) computer up and running from scratch for m6A mRNA modification detection using direct Nanopore sequencing. The initial goal of this project was to detect m6A mRNA modifications in glioma samples, the coveted glioma mRNA m6A Methylator Phenotype (or “G-RAMP”), analogous to epigenetic modifications at CpG sites in glioma (glioma CpG Island Methylator Phenotype, or “G-CIMP”). However, this protocol can be used to detect any m6A mRNA modifications in a sample, with a few minor modifications. With all of this in mind, I have written this protocol in as a generic way as possible, describing everything I can along the way, so that hopefully anyone reading this can replicate what I’ve done without any R knowledge or computer programming experience. Some of the code may be intimidating at times, but I will try to explain each syntax as I go along so that you can understand what each line is doing as you move through the code.

This protocol is separated into six major sections: Introduction, Requirements (and Installations, if necessary), Running Samples (wet lab portion), Sequencing, m6A Detection (via two different methods), and Final Analysis. Each of these sections utilize different skills and/or software for processing samples and data (for example, sequencing and alignment will be handled via Guppy and minimap2, while m6A detection will be handled via m6anet), which will be outlined at the start of the protocol. Where applicable, I will include warning boxes to help you avoid running into errors, and should never be glossed over when doing a run. Other bits of information that are not as paramount to a successful run will be included in block quotes. At the end of the protocol, I will also include an Appendix section, which will contain technical terms that will be used throughout the guide and an Additional Information section containing useful information about the nanopore system itself.

Finally, a big shoutout to Bryan Kevan and Sean Pianka, who laid down the ground work for this project, Albert Lai for his support and encouragement, Luca Cozzuto and the Goeke lab for their help in troubleshooting at challenging steps of getting the pipeline up to speed, and the latter for the development of m6anet. Without them, this project would not have been possible.

Without further adieu, let’s get to it!

Requirements

Note

If you already have a system up and running with the necessary software and hardware, you may skip ahead to the Running Samples or Sequencing sections for processing data. Also, I have kept in the EpiNano listed requirements here for reference, but you should largely ignore these if you’re using m6ANet instead, which I highly recommend.

In order to acquire Nanopore data and properly analyze it, we need to ensure that our pipeline has all the necessary hardware and software packages installed on our computer before we can begin analyzing samples with the pipeline. Here is a list of things you will need to proceed further:

Hardware

  • A computer with a strong CPU/GPU running a Unix-based system (either Linux Ubuntu 18+, macOS 10.11+ El Capitan, or WSL). For this guide, we will assume you are running Linux with a CUDA enabled GPU, but you should be able to follow along on Mac as well (just know that some of the paths may be different to your files, you may need to download slightly different packages, and your system may process files slower). You can also use Windows via WSL, but I will not be covering how to set that up in this guide. If you wish to do that, install WSL on Windows as described here first and then follow the guide as if you were on a Linux machine.
  • 30 GB minimum of RAM (although ideally 64+, since 30 GB will be needed on top of the available RAM for the OS to basecall with Guppy). You can go lower in RAM, but I generally don’t recommend it.
  • A MinION Mk1B Nanopore.
  • A flow cell.
  • An EXP-FLP002 Flow Cell Priming Kit.
  • A SQK-RNA002 Direct RNA Sequencing Kit.

Additional reagents may be required for the wet lab portion for RNA extraction and preparing the RNA library, but I will cover that in more detail in the Running Samples section below.

Software

†Guppy 6.4.2 is used here since it is the most recent algorithm version. EpiNano-SVM’s pretrained models were performed with Guppy 3.1.5, but that is no longer compatible with newly acquired .fast5 data. Additionally, Guppy 3.1.5 does not have GPU support, which makes processing data take much longer. I will keep the EpiNano-SVM code in here, as well as how to install Guppy 3.1.5, but you should use Guppy 6.4.2 and m6ANet instead.

Linux Base

  • Bash 3.2+.
  • Cmake.
  • Gfortran.
  • Libidn11 32-bit libraries (if using old Guppy versions on a 64-bit machine outside of a 32-bit container).
  • pyfaid.

R Packages

Note that we will install all of these below if you do not have them. For those specified to require a specific version for EpiNano, we will cover those in the section dedicated to EpiNano below. If you are detecting m6A modifications using m6ANet, you don’t need to worry about the EpiNano requirements. The m6ANet requirements should be installed automatically.

Getting Reference Transcriptome

! WARNING

A reference transcriptome is required for using m6ANet, but you may choose to use the genome if you are using EpiNano.

We will also need to download an appropriate reference transcriptome to map our reads to. I prefer to use the GRCh38.p14 version, but you can use any you like. Just keep in mind that different reference assemblies may refer to transcripts or chromosomes using different IDs, which will change what you need to enter in the ${CHR} (genome reference only) definition at the start of the protocol. Also, you can choose your own directory to place the reference transcriptome into, but just know that this path should also be updated in the ${REF} shortcut in the Defining Files section above.

Note

If the wget command is not available already on your system, you can install it with sudo apt-get install wget.

Bash

cd "/home/$USER/Research/Ref"
wget "https://ftp.ncbi.nlm.nih.gov/genomes/all/annotation_releases/9606/110/GCF_000001405.40_GRCh38.p14/GCF_000001405.40_GRCh38.p14_rna.fna.gz"
gzip -d GCF_000001405.40_GRCh38.p14_rna.fna.gz
mv GCF_000001405.40_GRCh38.p14_rna.fna GRCh38.p14.rna.fna

Note that here, I also renamed the transcriptome after extracting it for simplicity and ease of reference. A full list of all available genomes and transcriptomes can be accessed using the NIH FTP, including older or more recent versions if you wish. You may also consider getting a reference genome / transcriptome from Ensembl or Gencode.

Installations

Conda

Most of the rest of the software (like samtools) is more easily installed using Conda rather than directly from GitHub. Therefore, before we do anything else, we’re going to make sure Conda is installed on our workstation computer. If you suspect Conda is already installed on the system, run the conda -V command in the shell to see if it returns anything. You could, in theory, install all of the required software without Conda, but I highly discourage it due to how much we will need to install and how simplified this process is using Conda.

To install, first go to the Miniconda documentation page and download the shell script appropriate for your system (note the Python version requirements). Then, drop the script in your user root folder and execute the following commands in Terminal (in sequential order):

Note

Make sure you are in your root folder and you edit the name of the shell script below to match yours before executing the bash command below! Additionally, if you do not know how to access Terminal, on Linux it can be pulled up with the keys ctrl + alt + T pressed simultaneously.

Bash

bash Miniconda3-py39_4.12.0-Linux-x86_64.sh

conda config --add channels defaults
conda config --add channels bioconda
conda config --add channels conda-forge

In case you an unfamiliar with it, Terminal is an application on both Linux and Mac machines that gives you access to the shell. On Linux, it can be pulled up if you press the keys ctrl + alt + T simultaneously. You can run commands in here, which is usually for editing and moving files, changing permissions, installing software, or executing scripts.

Now you can install software via Conda using the conda install command in Terminal.

EpiNano

EpiNano is an algorithm written in python that is used to identify RNA modifications present in direct RNA sequencing reads, using the .bam files that are produced from Guppy and Minimap2. It extracts a set of ‘features’ from the direct RNA sequencing reads, which will be used to predict whether the ‘error’ is caused by the presence of an RNA modification. Note that EpiNano can be used to compare two samples (one containing a methylase knockdown or knockout) in a pairwise fashion, which they refer to as EpiNano-Error, or a single sample can be compared to a pre-trained model, referred to as EpiNano-SVM. Unfortunately, the models for EpiNano-SVM were trained on an old version of Guppy, which is no longer supported, and so we will use m6ANet for our m6A detection. I left in all the code required to get it up and running in case there is a reason for you to use it, and so I left this portion of the protocol in. If you plan on using only m6ANet , please skip this section.

Pre-requisites

EpiNano, unfortunately, relies upon a series of tools and software packages, both inside and outside of R. Therefore, we will need to check to ensure all of these are installed prior to getting EpiNano, and install any that we do not have using either Conda or install.packages() (depending on the package). Many of the packages required are older versions of those commonly used, but some of the newer versions do work with EpiNano. Therefore, I am going to make a Conda environment that is designed to be used specifically for EpiNano, and then switch to that environment prior to the install. That way, we can install the older packages within an EpiNano “specific” environment that can be loaded and used separately from our base Conda environment.

Bash

conda create --name epinano
conda activate --stack epinano

The text in parentheses next to your name in Terminal should now swap to (epinano). To return to your base, simply type conda activate --stack base and execute.

Note that at any time, you can see a list of installed Conda packages along with their versions via the following command:

Bash

conda list

If you just made a new stack named epinano, it should be empty. Let’s go ahead and now start installing packages. I like to start with scikit-learn, since it will install a lot of the correct dependencies for the other packages. To install the right version, add a double equals sign after the name to specify the version number, such as conda install scikit-learn==0.20.2. It may take a while to find the package this way.

! WARNING

EpiNano 1.2 does NOT work with the latest versions of python, scikit-learn, etc. Therefore, you will want to install the version of each package as you see here, which can be done with conda install package. As packages install, pay attention to which packages might be upgraded or downgraded as you go along. If you do not, you might run into errors when trying to run EpiNano scripts if a package was changed without your knowledge!

EpiNano Conda Packages
Package Version Notes
biopython 1.76
dask 2.5.2
h5py 2.8.0
java openjdk 1.8.0 This should already be installed via a previous step.
minimap2 2.14-r886 This should already be installed via a previous step.
nanopolish 0.12.4
numpy 1.15.4
pandas 0.23.4
pysam 0.15.3+
python 3.6.7 Note: Latest version of python doesn't work with scikit-learn 0.20.2!
sam2tsv Included with the EpiNano repo at EpiNano/misc/.
samtools 0.1.19 This should already be installed via a previous step.
scikit-learn 0.20.2 Note: Epinano_Predict.py does not work with the latest version. You must install this one for EpiNano.

Now let’s check the R packages. Boot up R in the terminal by typing R, and execute the following in the console to generate a list of the currently installed packages. If you do not have R, you can install it using Conda, or following the instructions provided here.

R

as.data.frame(installed.packages()[ , c(1, 3:4)])

Cross reference the list that prints with the following (again, sorted in alphabetical order here for you), and install any R packages that you do not have using the install.packages() command. I recommend starting with the car package, since it will install a lot of the others in the list automatically for you. I also didn’t have an issue installing the latest packages of each listed here, so you likely don’t need to install a specific version for EpiNano to run.

! WARNING

Some of these packages may have issues installing on Linux if certain commands are unavailable to R. For example, you may need to also install curl or gfortran in order to get the packages tidyverse and car to install. Pay attention to the output in the console and read the directions for the next steps if any fail (which will be apparent to you if you see the line Installation of package had non-zero exit status printed anywhere). After all the installations are done, you should recheck the list of installed packages again (see note following the table below).

EpiNano R Packages
R Package Version Notes
car 3.0-3
dplyr 1.0.1
forcats 0.4.0
ggplot2 3.1.1
ggrepel 0.8.1
optparse 1.6.6
outliers 0.14
purrr 0.3.2
readr 1.3.1
reshape2 1.4.3
stringr 1.4.0
tibble 3.0.3
tidyr 0.8.3
tidyverse 1.2.1

You should check that these actually installed after finishing by executing the as.data.frame(installed.packages()[ , c(1, 3:4)]) command once again.

Installing EpiNano

Now that all the pre-requisites are checked, we can go ahead and install EpiNano itself. For simplicity, I will keep mine in the ~/Research directory, so that all of the stuff I use for the nanopore will be kept in one place. You can place it wherever you like, since we will define (or have defined) the file path to it in the console.

Bash

cd ~/Research
git clone "https://github.com/novoalab/EpiNano.git"

EpiNano should now be installed. Note that there is a ReadMe available for EpiNano available here which goes over the requirements for it and how to execute it from the shell (Note: this readme should also be found as a file in your EpiNano folder after you copy the repo). It also describes some of the arguments that you will include when you execute it later.

Preparing Reference for EpiNano

One final thing that we want to do: we need to generate the appropriate files required to be able to run EpiNano later. This can be done by navigating to the folder containing your genome assembly (mine is at ~/Research/Ref) and running a few lines of code (if you have files ending in .fa.fai and .fa.dict already in that folder for your assembly, you can skip this step). If you do not have a genome reference assembly yet, you may grab one from the NIH available here.

! WARNING

The command faidx and picard may not run if you don’t have the appropriate software installed. You’ll know if it is installed or not when you try to execute it. If you do not have either of these installed, you can install faidx with the command sudo apt install python3-pyfaidx (Linux). Picard will need to be downloaded from the Picard github here as well (select the picard.jar file and place it into your root folder).

Bash

sudo apt install python3-pyfaidx

Next, we need to make the appropriate sequence libraries. This can be done as follows. Keep in mind that your paths may be different than the ones listed here!

Bash

cd ~/Research/Ref
faidx GRCh38.p13.genome.fa
cd ~/Research/
java -jar picard.jar CreateSequenceDictionary \
      -R ~/MOP2/anno/GRCh38.p13.genome.fa \
      -O ~/MOP2/anno/GRCh38.p13.genome.fa.dict

Tip

The picard.jar file will need to be in the current working directory for the above code to work. If it isn’t found, make sure you place it in your Terminal working directory before attempting the code again, or switch your Terminal directory to the location of your picard.jar file with the cd command. Alternatively, you can make a shell shortcut to picard.jar by specifying the path.

Guppy

We’re going to install Guppy directly from Oxford Nanopore Technologies, hereinthereafter simply ONT. Since EpiNano models were basecalled with Guppy 3.1.5, you will want to install and use the same version for EpiNano-SVM, but note that this version has some requirements and limitations (see the below warning note). Additionally, Guppy 3.1.5 is incredibly slow since it does not utilize a CUDA GPU, and so your analyses will be slower with Guppy 3.1.5. For this protocol, I will install the latest Guppy (6.4.2) and use m6ANet for m6A detection.

! WARNING

CRITICALLY IMPORTANT: Guppy 3.1.5, the version for which the default models for EpiNano-SVM were based off of, utilizes old 32-bit libraries which are unavailable and no longer supported on 64-bit Linux. Therefore, if you plan to use it, you need to also copy these libraries to your /usr/lib folder for it to work. These library files are available here. Additionally, Guppy 3.1.5 is longer compatible with newly acquired .fast5 data using MinKNOW 21.10+. I will use a newer version of Guppy and m6ANet as a result, but I kept the code on how to use EpiNano-SVM (and EpiNano-Error for that matter) below in case you’re running older data through Guppy 3.1.5, downgraded your MinKNOW software, or found newer RNA models.

Bash

GUPPYVER="6.4.2"
wget https://mirror.oxfordnanoportal.com/software/analysis/ont-guppy_${GUPPYVER}_linux64.tar.gz
tar -xf ont-guppy_${GUPPYVER}_linux64.tar.gz

Minimap2

Next up is Minimap2, which is a pairwise sequence alignment program that can align your processed reads to the transcriptome (or genome). Note that I will install it here using Conda:

Bash

conda install minimap2

You can also install it from GitHub like so, but know that you will need to do some additional work to allow you to call Minimap2 from any directory without Conda.

Bash

git clone https://github.com/lh3/minimap2
cd minimap2 && make

Samtools

Samtools is a suite of programs that can be used in Linux and Mac to further process high-throughput DNA / RNA sequencing data. It’s name is a reference to the .SAM file, which stands for “Sequence Alignment Map format”, a precursor to the binary version of this file (the .BAM file). We will use Samtools to modify our aligned sequencing data prior to m6A modification detection, so you should have it pre-installed before trying to analyze any of your data.

Samtools can be installed via Conda:

Bash

conda install -c bioconda samtools

m6ANet

m6ANet is a new m6A detection method that uses the variance in electrical signal across multiple transcript reads to determine if a base modification is present at a given locus. It requires much fewer pre-requisite software packages than other methods (such as EpiNano), does not require a specific basecaller version, and is much more accurate than other contemporarily available detection methods (such as Tombo).

To install, we want to first make a Conda environment that is specific to m6ANet. When you install it, it will automatically install a few Conda packages (like pytorch) and you don’t want any conflicts with your existing packages.

Bash

conda create --name m6anet
conda activate --stack m6anet

Next, move into the default directory where you want to store the m6ANet folder. Then, pull m6ANet from GitHub and install via the following (alternatively, you can do this using pip by executing pip install m6anet):

Bash

git clone "https://github.com/GoekeLab/m6anet.git"
cd m6anet
python setup.py install

You should now have m6ANet installed and ready to go. As with all of the other installations, make sure you pay close attention to the console to see if it throws an error during the installation. You may need to manually install or update other packages, like openssl, if it returns an error.

RNA Library Preparation and Loading

This section will cover the wet lab portion of the sequencing protocol, including RNA library preparation and sample loading. This protocol is adapted from the ONT Direct RNA Sequencing (SQK-RNA002) protocol available from Oxford Nanopore here.

RNA Library Preparation

Materials and Equipment
Type Items
Materials
  • 50 ng of poly(A)-tailed RNA or 500 ng of total RNA in 9 μL. Note: For my best run, it was 333 ng in 9 μL of pure mRNA.
  • RT Adapter (RTA, Blue Cap).
  • RNA CS (RCS, Yellow Cap).
  • RNA Adapter (RMX, Green Cap).
  • Wash Buffer (WSB, Orange Cap).
  • Elution Buffer (ELB, Black Cap).
Consumables
  • NEBNext® Quick Ligation Reaction Buffer (NEB, B6058).
  • T4 DNA Ligase 2M U/mL (NEB, M0202T/M).
  • 0.2 mL thin-walled PCR tubes.
  • Nuclease-free water (e.g. ThermoFisher, AM9937).
  • Agencourt RNAClean XP beads (Beckman Coulter™, A63987).
  • Freshly prepared 70% ethanol in nuclease-free water.
  • 1.5 mL Eppendorf DNA LoBind tubes.
  • SuperScript III Reverse Transcriptase (Thermo Fisher Scientific, 18080044).
  • 10 mM dNTP solution (e.g. NEB N0447).
  • Qubit dsDNA HS Assay Kit (ThermoFisher, cat # Q32851).
Equipment
  • Magnetic separator, suitable for 1.5 mL Eppendorf tubes.
  • Hula mixer (gentle rotator mixer).
  • Termal cycler.
Optional Equipment
  • Qubit fluorometer (or equivalent for QC check).

! WARNING

You need to test your mRNA purity before proceeding. This can be done using the Nanodrop. You should have a decent concentration with 260/230 and 260/280 ratios of 2.0 or better. A low 260/230 ratio indicates organics in your sample, which can damage the flow cell pores, whereas a low 260/280 ratio indicates proteins, which can clog them. You may want to dilute your input sample so that you're loading your ideal amount in 9 μL of sample, which will also help dilute and contaminants. More info on interpreting Nanodrop results can be found here.

! WARNING

Regarding samples that have been frozen: I highly recommend that you pipette your sample 40+ times using an appropriate pipette to draw the full volume of the solution. You should also remeasure the concentration of your sample on the nanodrop, rather than relying on the concentration you obtained prior to freezing. I have had sample library preparations that were sub-par because the concentration dropped following a freeze/thaw.

  1. Prepare the RNA in nuclease-free water.
    • Transfer 50 ng† of poly(A)-tailed RNA or 500 ng of total RNA into a 1.5 mL Eppendorf DNA LoBind tube.
    • Adjust† the volume to 9 μL with nuclease-free water.
    • Mix thoroughly by flicking the tube to avoid unwanted shearing.
    • Spin down briefly in a microfuge.

†Note: For my best run, I diluted the sample and loaded 9 μL of pure mRNA directly. This was around 333 ng total in 9 μL (~37 ng/μL).

! WARNING

Only poly(A)-tailed RNA will eventually be read by the nanopore system. Therefore, if you are interested in non-poly(A)-tailed RNA (such as long non-coding RNA), you will need to poly(A)-tail it separately and purify it prior to the run. Additionally, the old protocol called for 500 ng of poly(A)-tailed RNA instead of 50 ng (it is unclear at the present on why this was changed). My best run varied from both of these amounts. Finally, according to ONT, there is no difference in using total or mRNA for human samples, however, they acknowledge that this is not the case for other species (such as yeast) and that some users have reported better results with purified mRNA across species.

  1. In a 0.2 mL thin-walled PCR tube, mix the reagents in the following order:
Prepping Sample for Adapter Ligation
Reagent Volume
NEBNext Quick Ligation Reaction Buffer (see below warning) 3.0 μL
RNA Sample 9.0 μL
RNA CS (RCS, Yellow Cap), 110 nM 0.5 μL
RT Adapter (RTA, Blue Cap) 1.0 μL
T4 DNA Ligase 1.5 μL
Total 15 μL

! WARNING

The NEBNext Quick Ligation Reaction Buffer may have a little precipitate. Allow the mixture to come to room temperature and pipette the buffer up and down several times to break up the precipitate, followed by vortexing the tube for several seconds to ensure the reagent is thoroughly mixed.

  1. Mix by pipetting and spin down.
  2. Incubate the reaction for 10 minutes at room temperature.
  3. Mix the following reagents together to make the reverse transcription master mix:
Reverse Transcription Master Mix
Reagent Volume
Nuclease-free water 9.0 μL
10 mM dNTPs 2.0 μL
5x first-strand buffer 8.0 μL
0.1 M DTT 4.0 μL
Total 23.0 μL
  1. Add the master mix to the 0.2 mL PCR tube containing the RT adapter-ligated RNA from the "RT Adapter ligation" step. Mix by pipetting.
  2. Add 2 μL of SuperScript III Reverse Transcriptase to the reaction and mix by pipetting.
  3. Place the tube in a thermal cycler and incubate at 50°C for 50 minutes, then 70°C for 10 minutes, and bring the sample to 4°C before proceeding to the next step.

Note

This can be found on the thermal cycler near Tie's bench as the program RT Ligation Nanopore. This is also the point where you can take a break, since this step will take approximately 1 hour and 6 minutes to complete.

  1. Transfer the sample to a clean 1.5 mL Eppendorf DNA LoBind tube.
  2. Resuspend the stock of Agencourt RNAClean XP beads by vortexing.
  3. Add 72 μL of resuspended Agencourt RNAClean XP beads to the reverse transcription reaction and mix by pipetting.
  4. Incubate on a Hula mixer (rotator mixer) for 5 minutes at room temperature.
  5. Prepare 200 μL of fresh 70% ethanol in nuclease-free water (i.e., mix 140 μL pure ethanol with 60 μL PCR water in a clean Eppendorf tube).
  6. Spin down and pellet on a magnet. Keep the tube on the magnet, and pipette off the supernatant (use a p100 if possible to avoid pulling in RNA beads).

Note

For the spin down, I used 2,500g for 1 minute.

  1. Keep the tube on magnet, and wash the beads with 150 μL of freshly prepared 70% ethanol without disturbing the pellet as described below.
  2. Tip

    Rotate the tube very fast to avoid the pellet from smearing. You want it to migrate directly across the tube through the ethanol, but otherwise remain intact.

    • Keeping the magnetic rack on the benchtop, rotate the bead-containing tube by 180°. Wait for the beads to migrate towards the magnet and form a pellet. Wait 2.5 minutes.
    • Rotate the tube 180° again (back to the starting position), and wait for the beads to pellet. Wait 2.5 minutes.
  3. Remove the 70% ethanol using a pipette and discard.
  4. Spin down and place the tube back on the magnet until the eluate is clear and colourless. Keep the tubes on the magnet and pipette off any residual ethanol.

Note

For the spin down, I used 2,500g for 1 minute.

  1. Remove the tube from the magnetic rack and resuspend pellet (gentle pipetting) in 20 μL nuclease-free water. Incubate for 5 minutes at room temperature.
  2. Pellet the beads on a magnet until the eluate is clear and colourless.
  3. Remove and retain 20 μL of eluate into a clean 1.5 mL Eppendorf DNA LoBind tube.
  4. In the same 1.5 mL Eppendorf DNA LoBind tube, mix the reagents in the following order:
RNA Adapter Mix
Reagent Volume
NEBNext Quick Ligation Reaction Buffer (see below warning) 8.0 μL
RNA Adapter (RMX, Green Cap) 6.0 μL
Nuclease-free water 3.0 μL
T4 DNA Ligase 3.0 μL
Total (including all reagents) 40 μL

! WARNING

The NEBNext Quick Ligation Reaction Buffer may have a little precipitate. Allow the mixture to come to room temperature and pipette the buffer up and down several times to break up the precipitate, followed by vortexing the tube for several seconds to ensure the reagent is thoroughly mixed.

  1. Mix by pipetting.
  2. Incubate the reaction for 10 minutes at room temperature.
  3. Resuspend the stock of Agencourt RNAClean XP beads by vortexing.
  4. Add 16 μL of resuspended Agencourt RNAClean XP beads to the reaction and mix by pipetting.

Tip

Check to ensure that the Elution Buffer is thawing at this point. In my experience, even on ice it tends to remain frozen.

  1. Incubate on a Hula mixer (rotator mixer) for 5 minutes at room temperature.
  2. Spin down the sample and pellet on a magnet. Keep the tube on the magnet, and pipette off the supernatant.

Note

For the spin down, I used 3,000g for 1 minute (note the change!).

Tip

Start thawing the Flush Buffer, Flush Tether, and RNA Running Buffer at room temperature in preparation for flow cell priming and loading. If you are loading using the Flongle reagents, also set the Sequencing Buffer, Flongle Flush Buffer, and Loading Beads II out to get to room temperature.

  1. Add 150 μL of the Wash Buffer (WSB) to the beads. Close the tube lid and resuspend the beads by flicking the tube. Return the tube to the magnetic rack, allow the beads to pellet and pipette off the supernatant.
  2. Repeat the previous step.

! WARNING

Agitating the beads results in a more efficient removal of free adapter, compared to adding the wash buffer and immediately aspirating.

Tip

Make sure the Elution Buffer is completely thawed at this point.

  1. Remove the tube from the magnetic rack and resuspend pellet in 21 μL Elution Buffer by the gently flicking the tube and pipetting. Incubate for 10 minutes at room temperature.
  2. Pellet the beads on a magnet until the eluate is clear and colourless.
  3. Repeat the above two steps to increase your yield using the same 21 μL of Elution Buffer. Mix by pipetting and incubate for 10 minutes prior to pelleting on magnet.
  4. Remove and retain 21 μL of eluate into a clean 1.5 ml Eppendorf DNA LoBind tube.

Quantify 1 μL of reverse-transcribed and adapted RNA using the Qubit fluorometer DNA HS assay - recovery aim ~20 ng. If you have omitted the reverse transcription step, please use the Qubit RNA HS Assay Kit instead. However, please note that the kit will measure all RNA present, including any non-adapted RNA that has been carried through in the RNAClean XP bead clean-up. The reported quantity of RNA may therefore not fully represent the amount of sequenceable RNA.

Note that you can view the concentration of your library on the Nanodrop and may or may not get a reading. For a good run, I recorded a slight "hill" peak around 260 nm and around 2.6 ng/μL final concentration. Since your library is double stranded, use the DNA setting on the nanodrop. If you use RNA, you will get an inaccurate reading.

Note that for the loading step, you will want to load the following amounts of RNA for a good sequencing run:

RNA Loading Amounts
Flow Cell Amount of mRNA (in fmol) Amount in ng (if N50 = 1,400 bases)
Flongle 3-20 fmol; 10-15 fmol ideal ~ 6.751 ng (my best run loaded 2.6 ng/μL in 7 μL, for 18.2 ng total)
Standard MinION 44.44 fmol 20 ng

You can also calculate your own loading amounts using the NEBio RNA mass calculator if your RNA is of a different length.

Loading the Flow Cell

Now that the library is prepared, it is time to load it onto our MinION (SpotON) or Flongle flow cell. For this portion, I will describe how to do the loading for either flow cell as separate sections. Please follow only which one you will be using, making note of how much mRNA library should be loaded from the table at the end of the previous section.

SpotON Flow Cell

Below is a list of materials and reagents needed for the loading process

Flow Cell Loading Materials
Type Items
Materials
  • Prepared RNA library (see previous step).
  • RNA Running Buffer (RRB, Red Cap).
  • Flow Cell Priming Kit (EXP-FLP002).
Consumables
  • MinION Mk1B.
  • SpotON Flow Cell.
  • Nuclease-free water (e.g., ThermoFisher, AM9937).
  • 1.5 mL Eppendorf DNA LoBind tubes.
  1. Thaw the RNA Running Buffer (RRB), Flush Tether (FLT) and one tube of Flush Buffer (FB) at room temperature. This should be done already if you followed the tips from the previous section.
  2. Mix the RNA Running Buffer (RRB), Flush Buffer (FB) and Flush Tether (FLT) tubes thoroughly by vortexing and spin down at room temperature.
  3. To prepare the flow cell priming mix, add 30 μL of thawed and mixed Flush Tether (FLT) directly to the tube of thawed and mixed Flush Buffer (FB), and mix by vortexing at room temperature. This may already be done from a previous run.
  4. Open the MinION device lid and slide the flow cell under the clip. Press down firmly on the flow cell to ensure correct thermal and electrical contact.
  5. (Optional) On the MinKNOW software, run a flow cell check to determine if the flow cell is below warranty.
  6. Slide the priming port cover clockwise to open the priming port.

! WARNING

Take care when drawing back buffer from the flow cell. Do not remove more than 20-30 μL, and make sure that the array of pores are covered by buffer at all times. Introducing air bubbles into the array can irreversibly damage pores.

  1. After opening the priming port, check for a small air bubble under the cover. Draw back a small volume to remove any bubbles:
    1. Set a P1000 pipette to 200 μL.
    2. Insert the tip into the priming port.
    3. Turn the wheel until the dial shows 220-230 μL, to draw back 20-30 μL, or until you can see a small volume of buffer entering the pipette tip. Visually check that there is continuous buffer from the priming port across the sensor array.
  2. Load 800 μL of the priming mix into the flow cell via the priming port, avoiding the introduction of air bubbles. Wait for five minutes. During this time, prepare the library for loading by following the steps below.

! WARNING

Thoroughly mix the contents of the RRB tube by vortexing or pipetting, and spin down briefly.

  1. Take 20 μL of the prepared RNA library and mix it with 17.5 μL of nuclease-free water.
  2. In a new tube, prepare the library for loading as follows:
RNA Sample Preparation
Reagent Volume per flow cell
RNA Running Buffer (RRB, Red Cap) 37.5 μL
RNA library in nuclease-free water 37.5 μL
Total 75 μL
  1. Complete the flow cell priming:
    1. Gently lift the SpotON sample port cover to make the SpotON sample port accessible.
    2. Load 200 μL of the priming mix into the flow cell priming port (not the SpotON sample port), avoiding the introduction of air bubbles.
  2. Mix the prepared library gently by pipetting up and down just prior to loading.
  3. Add 75 μL of sample to the Flow Cell via the SpotON sample port in a dropwise fashion. Ensure each drop flows into the port before adding the next.
  4. Gently replace the SpotON sample port cover, making sure the bung enters the SpotON port, close the priming port and replace the MinION device lid.

Begin data acquisition and basecalling in the MinKNOW software.

Flongle Flow Cell

Below is a list of materials and reagents needed for the loading process

Flow Cell Loading Materials
Type Items
Materials
  • Prepared RNA library (see previous step).
  • Flongle Sequencing Expansion (EXP-FSE001).
  • Flow Cell Priming Kit (EXP-FLP002).
Consumables
  • MinION Mk1B.
  • Flongle Adapter.
  • Flongle Flow Cell.
  • Nuclease-free water (e.g., ThermoFisher, AM9937).
  • 1.5 mL Eppendorf DNA LoBind tubes.
  1. Thaw the Sequencing Buffer (SB), Loading Beads II (LBII), Flow Cell Tether (FCT, found in Priming Kit), and Flush Buffer (FB, use the one from the Flongle kit) at room temperature. This should already be done if you followed the tips from the previous section.
  2. Mix the SB, LBII, FCT, and FB by vortexing and spin down at room temperature.
  3. Prepare the priming mix as follows:
Priming Mix
Reagent Volume
Flush Buffer 117 μL
Flow Cell Tether 3 μL
Total 120 μL
  1. Place the Flongle Flow Cell into the adapter in the MinION. Peel back the seal from the Flongle flow cell carefully until the sample port is exposed. Tape down the adhesive onto the lid of the MinION to keep it held back.
  2. Using a 200 μL pipette, draw 100 μL of your priming mix into the tip. Ensure that no air is in the bottom of the tip past the solution.
  3. Place the tip of the pipette securely into the sample port. Turn the dial of the pipette counter clockwise a time or two and you should see a small amount of yellow-green fluid come into the tip. This helps to ensure there are no air bubbles present.
  4. Once confirmed, slowly dispense the priming fluid into the flow cell by slowly turning the dial of the pipette clockwise (towards 0). Do not push down on the plunger to eject the fluid. You should see some fluid being to enter the waste port.
  5. Remove the pipette tip just before the fluid reaches the bottom.
  6. In a new 1.5 μL tube, add the reagents below in the order they are listed to make the RNA sample solution:

! WARNING

The Loading Beads II tend to settle quickly, so you will need to vortex it again before drawing it to make the solution.

RNA Sample Preparation
Reagent Volume
Sequencing Buffer (SB) 15 μL
Loading Beads II (LBII) 10 μL
3-20 fmol mRNA Library 5 μL
Total 30 μL
  1. Mix the solution by gently pipetting up and down 10-20 times.
  2. Draw the entire volume into the pipette. Make sure there is no air at the tip of the pipette.
  3. Insert the tip of the pipette into the sample port and slowly dispense the library into the flow cell by slowly turning the dial of the pipette clockwise. Do not push down on the plunger to eject the fluid.
  4. Remove the pipette tip just before you finish adding all of the solution to avoid the introduction of air bubbles.
  5. Using a clean pipette tip, dropwise add the remaining priming solution to top off the sample port tip.
  6. Seal the Flongle flow cell by attaching the adhesive tape back over the top of the flow cell. Make sure the back of the tape covers the waste ports on the left and right sides of the Flongle, and seal with ONE stroke over the top. Close the MinION lid.

Begin data acquisition and basecalling in the MinKNOW software.

! WARNING

VERY IMPORTANT: It is highly advised that you start Sequencing on your flow cell before you prime the flow cell or load your library. This will allow you to see the actual pore availability prior to loading your sample and whether the flow cell is in decent shape. If there is an issue during sequencing, this will also allow you to easily determine whether the problem is due to the flow cell or due to your sample preparation/loading. If the flow cell does not have a large number of "available" pores at the start of the run, DO NOT LOAD YOUR SAMPLE and contact ONT for a replacement flow cell.

In addition, on Flongles you must set the active channel selection (MUX Scans) interval to longer than your experiment, i.e., to 24 hours or more. This is because MUX Scans can damage Flongle pores for some unknown reason. Make sure you set the interval to longer than the run, rather than disable active channel selection, because I have found it will still continually scan pores with active channel selection disabled.

Sequencing

Next up, we need to sequence our raw data obtained from the flow cell and MinION device. To do so, we will use the standalone command-line version of Guppy. Note that your file paths should already be defined, as indicated by the section included at the start of the article, and that this should be done each time you open a new Terminal window.

Basecalling (Guppy)

Navigate to the folder with guppy using the cd command (for example, mine is at ~/Research/ont-guppy-6.4.2/bin, so I can navigate there using cd ~/Research/ont-guppy-6.4.2/bin, or substituting the path with $GUPPY) and execute the following. Note that the last line of code includes a path to store the log of the Guppy run, which will require the $GLOGS folder to already have been created.

! WARNING

The line -x auto \ is only valid for newer versions of Guppy that supports CUDA GPUs. If you are basecalling with an old version of Guppy, like 3.1.5, or you are on a machine that does not have a CUDA GPU (like a Mac), you’ll want to execute this without this line. You should also remove the line --disable_qscore_filtering with older versions, as this was a newer Guppy feature.

Bash

$GUPPY/guppy_basecaller \
--input_path $NRAW/${SAMPLEID} \
--save_path $NBASE/${SAMPLEID} \
--flowcell FLO-MIN106 \
--kit SQK-RNA002 \
--disable_qscore_filtering \
-x auto \
> $GLOGS/${SAMPLEID}_guppy${GUPPYVER}_$(date +"%Y%m%d%H%M%S").txt

Note that the lines containing --flowcell and --kit can be replaced with a configuration (e.g. --config rna_r9.4.1_70bps_hac.cfg). -x auto specifies that you want to run the basecaller using the default GPU (remove this line if you want to do CPU, or replace auto with cuda:X, where X is the GPU identifier you want to use). The last line just exports the output as a text file for logging in case you ever need to reference it later, with the ID of your sample and the current date and time stamped in by the system. You can exclude this if you wish.

Alignment (Minimap2)

Next let’s do the alignment. The first thing I want to do is merge all the fastq files into one. I don’t think you need this step, but I wanted to avoid errors with trying to process them in sequence and/or having to use a for loop.

Bash

cat $NBASE/${SAMPLEID}/*.fastq > $NBASE/${SAMPLEID}/${SAMPLEID}_master.fastq
mkdir $NALI/${SAMPLEID}

Now, lets use Minimap2 to start the alignment (if Minimap2 isn’t installed via Conda, you need to change directories first with $MM2/minimap2 and then replace minimap2 with ./minimap2). We will export this as a .sam file first, and then use Samtools to format it further into a binary file (.bam). For m6ANet, note that we need to map it to the transcriptome, so your ${GREFERENCEID} should be defined accordingly above.

Bash

minimap2 -ax map-ont -uf --secondary=no \
$REF/${GREFERENCEID} \
$NBASE/${SAMPLEID}/${SAMPLEID}_master.fastq > $NALI/${SAMPLEID}/${SAMPLEID}_taligned_unsorted.sam

Note

I used _taligned here because I was using the transcriptome as a reference. You can change this to whatever you wish, for example _galigned if using the genome, just make sure you use the updated name later on when you call the file.

Keep in mind that minimap2 here is taking a few arguments, which is required for Nanopore mRNA reads. -ax specifies that you want to do a “long read alignment” using CIGAR. map-ont specifies that the input is long, noisy reads (~10% error rate) from an Oxford Nanopore device. -uf specifies that you want to use the transcript strand for finding canonical splicing sites GT-AG. --secondary=no specifies that you do not want to output secondary alignments. Previously, with EpiNano, I also aligned data to the genome using the argument -ax splice -uf -k14, which is similar but 1) it specifies that you want to use splice alignment mode (genome alignment) and 2) specifies that you want 14 bases loaded into memory at a time to process in a mini-batch.

You can remove these arguments or add new ones in this line as you wish, but only do so if you know exactly what it is you want Minimap2 to do differently. More information about Minimap2 arguments can be found on the Minimap2 documentation.

Formatting (Samtools)

Next we need to convert the exported .sam file to binary (.bam), which is required for some of the steps we’re going to perform down the road for m6A detection. Then, we will need to sort the .bam file (in other words, organize the mapped reads by chromosome and position), and then index it by generating a .bam.bai file.

Bash

cd $NALI/${SAMPLEID}
samtools view -bS ${SAMPLEID}_taligned_unsorted.sam > ${SAMPLEID}_taligned_unsorted.bam
samtools sort ${SAMPLEID}_taligned_unsorted.bam -o ${SAMPLEID}_taligned.bam
samtools index ${SAMPLEID}_taligned.bam ${SAMPLEID}_taligned.bam.bai

Isolate Chromosome

Note

This step is ONLY for alignments that have been done to the genome and for processing with EpiNano. If you are using m6ANet, you’ll want to skip this portion.

This will speed up the EpiNano processing step substantially, since it will not be analyzing all of your data at once. Note that we defined the chromosome we wanted to isolate above at the start of the protocol, with ${CHR}.

Bash

samtools view -b ${SAMPLEID}_aligned.bam ${CHR} > ${SAMPLEID}_${CHR}.bam
samtools index ${SAMPLEID}_${CHR}.bam ${SAMPLEID}_${CHR}.bam.bai

Check Read Count

Samtools comes with the ability to check the total number of reads in a .bam file via the command view -c. Therefore, at this stage you should count the total number of reads in both the master aligned file and (if aligned to the genome) the individual chromosome you isolated. This can be done via the following:

Bash

samtools view -c ${SAMPLEID}_aligned.bam
samtools view -c ${SAMPLEID}_${CHR}.bam

Or, if mapped to the transcriptome:

Bash

samtools view -c ${SAMPLEID}_taligned.bam

For reference, the FAM95931 sample (identified here by flow cell ID) we ran had about 1.9 million reads total and 106,000 reads across chromosome 19. This was using a standard MinION flow cell, not a flongle, which should have about 120-200k reads.

m6A Detection

m6ANet

! WARNING

Before we get started, I highly recommend that you take a look at your output from the previous steps in the Integrative Genomics Viewer (IGV), which is available here. This will allow you to visualize a gene of interest and ensure that you actually have mapped reads at this stage in the pipeline. Otherwise, you’ll be just wasting your time trying to extract methylation status on 0 reads!

Note: I had issues running the setup install for m6ANet over an existing Conda installation. Likely there are some package version incompatibilities. I highly recommend running the setup and executing m6ANet from its own Conda stack, after installing only Python 3.8. This is covered in the Installations section above.

Now that we have basecalled, mapped, and sorted RNA reads, we now want to try and detect m6A modifications. In the past, we have used various other methods such as EpiNano and Tombo, but a more recent and powerful method has emerged called m6ANet. The advantage of m6ANet is that it uses very few software requirements out of the box (python, Nanopolish, Pytorch, and Samtools), does not require a specific basecaller version (like EpiNano-SVM does), evaluates DRACH motifs instead of just RRACH motifs, and has much greater accuracy than most other contemporarily available models. Therefore, we will use m6ANet for our detection.

Data Preparation

Before we can begin, however, we need to extract some data from our raw .fast5 files using Nanopolish and do some data formatting. First up, we need to index our raw reads using Nanopolish, which can be done via the following:

Bash

cd $NBASE
nanopolish index -d $NRAW/${SAMPLEID} ${SAMPLEID}_master.fastq

Note that this should be called from the same directory as your .fastq master file. You can include the Guppy sequencing summary output by adding in the line --sequencing-summary=sequencing_summary.txt after $NRAW/${SAMPLEID} to speed up the indexing process, but I recommend against it if you get an error. In my experience, Guppy tells Nanopolish where files are located through this process, which may or may not be accurate.

Next, we need to generate the eventalign output from Nanopolish, which aligns events from the raw data to the transcriptome for you. To do this, you need to indicate the location of your reference transcriptome file, your sorted and aligned .bam file, and your basecalled master .fastq file. The output of eventalign is very large with a good nanopore run (~23+ GB per chromosome of data), so I highly recommend considering mapping your reads to a transcriptome “subset” first and then running eventalign on that instead.

Bash

nanopolish eventalign \
-r ${SAMPLEID}_master.fastq \
-b $NALI/${SAMPLEID}_aligned.bam \
-g $GREF/${GREFERENCEID} \
--scale-events \
--signal-index \
--threads 50 > ${SAMPLEID}_eventalign.txt

Now we can do some m6ANet data prep and generate a few files:

Bash

conda activate m6anet

m6anet-dataprep \
--eventalign $NBASE/${SAMPLEID}_eventalign.txt \
--out_dir $M6AO/${SAMPLEID} \
--n_processes 4

The output of this will generate the following:

  • data.index: Indexing of data.json to allow faster access to the file.
  • data.json: json file containing the features to feed into m6ANet model for prediction.
  • data.log: Log file containing all the transcripts that have been successfully pre-processed.
  • data.readcount: File containing the number of reads for each DRACH positions in eventalign.txt document.
  • eventalign.index: Index file created during dataprep to allow faster access of the Nanopolish eventalign.txt data during this step.

Run Inference

Tip

M6ANet may run into issues if your shell open file limit is too low. The max number of open files can be viewed with the ulimit -n command. To change this, simply add a number following the command (e.g., ulimit -n 100000).

Finally, we can execute the final bit of code to generate the final output:

Bash

m6anet-run_inference \
--input_dir $M6AO \
--out_dir $M6AO \
--infer_mod_rate \
--n_processes 4

Note that the --input_dir here is the output folder from the previous step that contains your eventalign.index file, data.index file, etc. The --out_dir can be specified as something else, but I wanted to put the output from this last step back into the final folder. The output is a .gz file, which might need to be unzipped via the command line if you have trouble using the GUI to do so:

Bash

cd $M6AO
gunzip data.result.csv.gz
mv data.result.csv ${SAMPLEID}_m6anet_result.csv

R Analysis and Plots

Then in R, we can import these results using the read.csv function like so:

R

# Change name based upon what you saved it as in the previous step, if you renamed it based upon sample name.
m6ANet_result <- read.csv(file=paste0(M6ANET_PATH, "/data.result.csv"))

EpiNano

! WARNING

Before we get started, I highly recommend that you take a look at your output from the previous steps in the Integrative Genomics Viewer (IGV), which is available here. This will allow you to visualize a gene of interest on the chromosome of your choice and ensure that you actually have mapped reads at this stage in the pipeline. Otherwise, you’ll likely get an error when trying to run EpiNano as there wont be any reads in your input data.

Next up, we need to process the “error” data on these files using EpiNano in order to determine the likelihood of there being an m6A modification present within any RRACH motifs on the strand. To do so, we need to first activate our conda stack that contains the EpiNano packages that we plan to use. Then, we will change directories to the root EpiNano folder, and execute some code.

This first bit of code extracts the “error” basecalling data for each nucleotide and spits it out as a .csv file called ${SAMPLEID}.per.site.var.csv. We will use this to determine the likelihood of an m6A modification being present at a given site. Note: If you plan on using EpiNano-Error (i.e., comparing two samples), then you need to run this step and the next few on both sample conditions.

Bash

conda activate --stack epinano

python $EPI/Epinano_Variants.py -n 20 \
      -R $GREF/${GREFERENCEID} \
      -b $NALI/${SAMPLEID}/${SAMPLEID}_${CHR}.bam \
      -s $EPI/misc/sam2tsv.jar --type g

Keep in mind that the number in the line python Epinano_Variants.py -n 20 is specifying how many CPU cores to utilize for this process. Therefore, your number here may need to change depending upon what system you are using. The last line argument --type g tells EpiNano that your reference is a genome, rather than a transcriptome (the latter of which could be specified instead with --type t).

Now we have too ways of proceeding from here: EpiNano-Error or EpiNano-SVM. EpiNano-SVM is useful if you want to determine the likelihood of an m6A modification being present at an RRACH motif in a single sample (since you compare your data to a pre-trained model), but it requires Guppy 3.1.5. EpiNano-Error can be used with any basecalling algorithm, but requires you to compare modifications between samples, with one of those samples being a knock down or knock out control.

EpiNano-Error (Pair-wise)

If we have two samples, one that is unmodified and one that is modified (in Rscript Epinano_DiffErr.R ..., the ko.csv is the unmodified sample), we can compare them using the R script Epinano_DiffErr.R. This script fits a linear regression model between paired samples, then determines outliers that often are due to base modifications.

Bash

SAMPLEID_UNM="FAR91556" \
SAMPLEID_MOD="FAM95931" \

Rscript $EPI/Epinano_DiffErr.R \
-k $NALI/${SAMPLEID_UNM}/${SAMPLEID_UNM}_${CHR}.plus_strand.per.site.csv \
-w $NALI/${SAMPLEID_MOD}/${SAMPLEID_MOD}_${CHR}.plus_strand.per.site.csv \
-t 3 \
-o ${SAMPLEID_UNM}_vs_${SAMPLEID_MOD}_${CHR}  \
-c 30 -f sum_err -d 0.1 -p

In the above code, -t indicates the minimum z-score threshold (i.e., standard deviations from the mean) you would like to reach for a mod to be detected. -o indicates the name prefix of the output file you wish to generate from the run. -f indicates the feature (via column name) used to predict the modification. -d indicates the minimum deviance required of the selected feature between the two samples. -p is included here, which generates EpiNano plots, but you can omit that and run Epinano_Plot.R instead if you wish.

Lastly, I’ll want to move these files to the EpiNano output folder. We can do that with this block:

Bash

ETARGET="$EPIOUT/${SAMPLEID_UNM}_vs_${SAMPLEID_MOD}" \
mkdir $ETARGET

mv ${SAMPLEID_UNM}_vs_${SAMPLEID_MOD}_${CHR}.delta-sum_err.prediction.csv \
${SAMPLEID_UNM}_vs_${SAMPLEID_MOD}_${CHR}.linear-regression.prediction.csv \
${CHR}.${SAMPLEID_UNM}_vs_${SAMPLEID_MOD}_${CHR}.delta-sum_err.bar.pdf \
${CHR}.${SAMPLEID_UNM}_vs_${SAMPLEID_MOD}_${CHR}.linear-regression.scatter.pdf $ETARGET

We will now move forward and I will show you how to do the alternative and run single samples with EpiNano-SVM.

EpiNano-SVM (Single Sample)

! WARNING

EpiNano-SVM uses a pretrained RRACH model from Guppy 3.1.5. Therefore, if you use this model, you will need to also have basecalled your data using Guppy 3.1.5. If you are using a different basecaller algorithm, or Guppy of a different version, please do a pairwise comparison with EpiNano-Error as described above, insert m6A controls, or consider using m6ANet.

If we would like to extract the likelihood of m6A modifications using the pretrained models, we can do so by running the script Epinano_Predict.py and referencing our RRACH model. To do this, though, we must first divide our reads into kmers of 5 and isolate just the RRACH motifs.

Isolating into 5 kmers:

Bash

python $EPI/misc/Slide_Variants.py $NALI/${SAMPLEID}/${SAMPLEID}_${CHR}.plus_strand.per.site.csv 5
python $EPI/misc/Slide_Variants.py $NALI/${SAMPLEID}/${SAMPLEID}_${CHR}.minus_strand.per.site.csv 5

Filter for only RRACH

Bash

cd $NALI/${SAMPLEID}/
awk -F"," 'NR==1; NR > 1{if($1=="AAACA" || $1=="AAACT" || $1=="GAACT" || $1=="GGACA" || $1=="AGACT" || $1=="GGACT" || \
           $1=="AAACC" || $1=="AGACC" || $1=="GAACC" || $1=="GAACA" || $1=="AGACA" || $1=="GGACC") print}' \
      ${SAMPLEID}_${CHR}.plus_strand.per.site.5mer.csv > ${SAMPLEID}_${CHR}_plus_RRACH.csv

awk -F"," 'NR==1; NR > 1{if($1=="AAACA" || $1=="AAACT" || $1=="GAACT" || $1=="GGACA" || $1=="AGACT" || $1=="GGACT" || \
           $1=="AAACC" || $1=="AGACC" || $1=="GAACC" || $1=="GAACA" || $1=="AGACA" || $1=="GGACC") print}' \
      ${SAMPLEID}_${CHR}.minus_strand.per.site.5mer.csv > ${SAMPLEID}_${CHR}_minus_RRACH.csv

Now that we have that, we can go ahead and run Epinano_Predict.py. Note that the code below is duplicated, because we will run it also on the data table that contains mRNA reads mapped to the reverse strand.

Bash

python $EPI/Epinano_Predict.py \
      --model $EPI/models/rrach.q3.mis3.del3.linear.dump \
      --predict ${SAMPLEID}_${CHR}_plus_RRACH.csv \
      --out_prefix ${SAMPLEID}_${CHR}_plus \
      --columns 8,13,23
      
python $EPI/Epinano_Predict.py \
      --model $EPI/models/rrach.q3.mis3.del3.linear.dump \
      --predict ${SAMPLEID}_${CHR}_minus_RRACH.csv \
      --out_prefix ${SAMPLEID}_${CHR}_minus \
      --columns 8,13,23

So let’s break down what the above is doing. First, we are telling the console that we want to run the python script Epinano_Predict.py with the pre-trained model specified by --model, which will be used to detect m6A modifications. --predict specifies the table file that will be used for making predictions (i.e., your processed data), while --out_prefix specifies the prefix output file name. Finally, --columns specify the columns within the dataset that contain the features that will be used for the prediction of m6A sites.

The final output will be in the same folder as you ran the command (in this case, in the sorted_bam subfolder), and will be saved as your specified --out_prefix + .q3.mis3.del3.MODEL.rrach.q3.mis3.del3.linear.dump.csv if you used the same model as I did. The next thing we want to do is import this data into R for data analysis and further visualization.

Bash

# Load a few packages needed.
suppressMessages (library(tidyverse))
suppressMessages (library(stringr))

# Specify the input file in the R working directory. You can check the working directory with getwd().
# Note: You could also specify the path to the output file location and point directly to it there too.
plusstrandfile = paste(paste0(OUTPUT_PATH, SAMPLEID), CHR, "plus.q3.mis3.del3.MODEL.rrach.q3.mis3.del3.linear.dump.csv", sep = "_")
minusstrandfile = paste(paste0(OUTPUT_PATH, SAMPLEID), CHR, "minus.q3.mis3.del3.MODEL.rrach.q3.mis3.del3.linear.dump.csv", sep = "_")

# Read the csv input file and separate necessary columns.
epi_res_plus <- read.csv (plusstrandfile, header=T)[,c("Window","Ref","Strand","ProbM","prediction")]
epi_res_minus <- read.csv (minusstrandfile, header=T)[,c("Window","Ref","Strand","ProbM","prediction")]
epi_res <- rbind(epi_res_plus, epi_res_minus)
  # Split the "Window" into two integers.
  split <- data.frame (str_split_fixed (epi_res$Window, '-', 2))
  # Grab the split integer columns.
  split$first <- as.integer (as.character(split$X1)) +  2
  split$middle <- as.integer (as.character(split$X2)) +  2
  # Add the integer columns to the data frame.
  epi_res$Start <- split$first
  epi_res$End <- split$middle
  # Remove "Window" column after split. Left with "Ref" (chromosome), "Position" (start), "Strand", "ProbM", and "prediction".
  epi_res<- epi_res[,c("Ref", "Start", "End", "Strand", "ProbM", "prediction")]
  colnames(epi_res) <- c("Ref", "Start", "End", "Strand", "m6A_Prob", "m6A_Pred")

# Assign the epinano output a name based on sample ID and chromosome.
assign(paste(SAMPLEID, CHR, "epinano_result", sep = "_"), epi_res)

This will import the data and isolate the columns for chromosome, Start and End positions on the chromosome (with regard to GRCh38, our reference genome used), the Strand, the probability of an m6A modification, and the m6A EpiNano Prediction: either listed as “mod” (for “modified”) or “unm” (for “unmodified”).


Probing Genes

Now we want to be able to visualize the data, preferably between two samples. This next code block can be executed directly in R, all you have to do is change the first set of values to indicate which gene you want to probe and your samples you want to include.

R

# Define your parameters. Note that your sample IDs are the same as above.
GENE="ATF5"
SAMPLE1_ID="FAR91556" # Usually WT
SAMPLE2_ID="FAM95931" # Usually Mut

# Code to run
Plotting Results (ATF5)

Here we can plot the results for the ATF5 gene. This will be modified in a future iteration.

R

suppressMessages (library(reshape2))
suppressMessages (library(ggplot2))
suppressMessages (library(ggrepel))
suppressMessages (library(tidyverse))
suppressMessages (library(stringr))

# Isolate ATF5
WT122021_nano_ATF5 <- subset(FAR91556_chr19_epinano_result, Start >= 49928403)
WT122021_nano_ATF5 <- subset(WT122021_nano_ATF5, End <= 49934438)
IDHMUT_nano_ATF5 <- subset(FAM95931_chr19_epinano_result, Start >= 49928403)
IDHMUT_nano_ATF5 <- subset(IDHMUT_nano_ATF5, End <= 49934438)
#WT_mod <- subset(WT122021_nano_ATF5, m6A_Prob >= 0.05)
#WT_unm <- subset(WT122021_nano_ATF5, m6A_Prob < 0.05)

# Note: Some of these data were generated view the MotifFinder script.
#49928702-49933935
# ATF5 Gene, Chr19:49929205-49933935
merge <- ggplot (WT122021_nano_ATF5) +
  ggtitle ("Merge") +
  # Underlying Strand
  geom_segment(aes(x=49928403, xend=49934438, y=0.125, yend=0.125), color="#383838", size=4) +
  # Exon 1 49,928,890 - 49,929,022
  geom_segment(aes(x=49928890, xend=49929022, y=0.125, yend=0.125), color="#858585", size=6) +
  # Exon 2 49,929,223 - 49,929,421
  geom_segment(aes(x=49929223, xend=49929421, y=0.125, yend=0.125), color="#858585", size=6) +
  # Exon 3 49,930,681 - 49,931,079
  geom_segment(aes(x=49930681, xend=49931079, y=0.125, yend=0.125), color="#858585", size=6) +
  # Exon 4 49,932,271 - 49,934,086
  geom_segment(aes(x=49932271, xend=49934086, y=0.125, yend=0.125), color="#858585", size=6) +
  # Location of RRACH sites in ATF5. This was ascertained using the Motif Finder function.
  #geom_linerange(data=ATF5_RRACH, aes(x=Hg38Position, ymin=0, ymax=1), color="#d9fbcb", size=0.4) +
  #geom_linerange(data=ATF5_MAZF, aes(x=Hg38Position, ymin=0, ymax=1), color="#476ad0", size=0.4) +
  # WT Dots
  geom_point(data=WT122021_nano_ATF5, aes(x=Start, y=m6A_Prob),shape = 21, colour = "black", fill = "#959595", size=2, stroke = 1.0) +
  # IDH Mut Dots
  geom_point(data=IDHMUT_nano_ATF5, aes(x=Start, y=m6A_Prob),shape = 21, colour = "black", fill = "#dd1818", size=2, stroke = 1.0) +
  # Instead of entering in the chromosome, paste it to the label from the data.
  xlab (paste0("Position on ", WT122021_nano_ATF5[1,1])) +
  ylab ("m6A Prob.") +
  theme_bw ()+
  theme (axis.text.x = element_text(face="bold", color="black",size=11),
         axis.text.y = element_text(face="bold", color="black", size=11),
         plot.title = element_text(color="black", size=24, face="bold.italic", hjust = 0.5),
         axis.title.x = element_text(color="black", size=15, face="bold"),
         axis.title.y = element_text(color="black", size=15, face="bold"),
         panel.background = element_blank(),
         legend.position = "none",
         axis.line = element_line(colour = "black", size=0.5))
#geom_text_repel (data=mod, aes(x=Position, y=ProbM, label=Position), color="red", box.padding=3, point.padding=3, segment.size  = 0.6, segment.color = "green")

Final export on one graph:

R

suppressMessages(library(gridExtra))
grid.arrange(wt, idh, merge, nrow = 2)

Troubleshooting

Below is some general information that is helpful during the sequencing run.

  • Temperature of the MinION should be stable (a horizontal line). If the temperature of your MinION is fluctuating during the sequencing run, that indicates that your MinION is having difficulty keeping a consistent temperature and may be defective. Check to ensure that the fans on the MinION itself are coming on, otherwise contact ONT for support and/or a replacement.
  • Large amount of pores in the Inactive state. It has been advised from David Eccles (see this post here) that a large amount of inactive pores in random spots indicates a defective flow cell (example here). Issues with sample preparation and the introduction of air bubbles can cause pores to be inactive, however, this is more likely to occur in distinct regions of the flow cell. It is advised that you start a sequencing run without adding any flush buffer or sample to see how many pores are "available" at the start of your run, then load as necessary. You should see a sea of green pores at the start with no issues (example here).
  • Sequencing RNA will always have a decent number of pores sequencing adapter. Per ONT here: "For RNA in particular, the expanded channels view may show a large proportion of pores sequencing Adapter. This happens because RNA strands are usually shorter than DNA, and the adapter takes up a larger proportion of the strand. Additionally, the RNA sequencing chemistry is optimised for sequencing RNA, whereas the adapter is DNA, and is processed slower. As long as the 'basic' pore activity plot view shows the majority of pores in "Sequencing", a high proportion of Adapter should not be a problem."
  • According to Kanhav Khanna, an ONT tech, total RNA and mRNA perform the same for human but not for other species. In my discussions with him, some individuals have reported better results with mRNA (for instance, when studying RNA from yeast), but this hasn't been the case with human RNA. This appears to reflect my runs thus far.
  • For the Flongle, aim to load 3-20 fmol of RNA; 10-15 fmol ideally. This can be calculated using the NEBio RNA mass calculator, or the formula on that page. Typically, the average RNA length (N50) is around 1,400 bases, so substitute that into the formula and 10 fmol to determine what amount you should load in ng.
  • "Wildflower" Pattern and Flow Cell Quality. Some flow cells appear to have a "wildflower pattern" as it is known on the ONT community forums, since the flow cell has many pores in different states (Active Feedback, Inactive, Sequencing, Adapter, Zero, etc.). You may find a discussion about this on the forums here. As noted by a user, "The good flow cells seem to have a high number of pores at initial check (~1600) whereas flow cells just above the warranty tend to fall off quickly. I saw it with flongles too, those with >80 pores were great, those starting around ~50 died quickly. It seems to be a quality control thing." You should start "sequencing" on your flow cell always to truly check the flow cell's status prior to sample loading.
  • Quick Pore Decay can be due to a Number of Factors. Some of these include: large amounts of fragmented RNA/DNA in the sample (you can check this by mapping the control RCS RNA in the Direct RNA Sequencing kit and looking for fragmentation), contaminants present in your sample (detergents, proteins, etc.), poor flow cell quality (flow cells that are old and have been sitting for more than a month, or have low pore availability even if above warranty; see "wildflower" comment above), overloading the flow cell, and/or damaging the pores upon sample loading.
Nanopore Pore Statuses
Pore Status Description
Sequencing Indicates that the pore is currently sequencing. This is the ideal state. Can be either "adapter" sequencing or "strand" sequencing. You can figure out which it is by clicking the "show detailed" box.
Pore Available This means that the pore is available for sequencing, but no strand is currently being sequenced. A large portion of pores in this state usually indicates that you have loaded a small amount of library.
Adapter The pore is sequencing the unligated sequencing adapter only. Reads will initially be classified as adapter until the DNA/RNA strand starts translocating through the pore and MinKNOW is able to reclassify the read. A large portion of adapters sequencing relative to actual sample RNA means that your library preparation was pore.
No Pore No pore was detected in the channel.
Unavailable The channel appears to show a pore that is currently unavailable for sequencing.
Unclassified Pore status unknown.
Saturated The channel has switched off due to current levels exceeding hardware limitations.
Out of range-high Current is positive (between 10 and 9999 pA) and unavailable for sequencing.
Out of range-low Current is negative (between -5 and -9999 pA) and unavailable for sequencing.
Zero Pore currently unavailable for sequencing and the current level is between -5 and 10 pA. According to ONT specialist Kanhav Khanna, this is usually due to osmotic imbalance caused by an air bubble or some detergent in the sample. Look for "swaths" or patches of pores in the Zero state, which may indicate an air bubble in that location.
Multiple Multiple pores detected. Unavailable for sequencing.
Active Feedback The channel is reversing the current flow to eject the analyte (DNA/RNA).

Additional Information

One last thing I wanted to include in this protocol is a list of useful information I have found regarding running mRNA samples through the nanopore. This includes references to the ONT documentation (which may require a login to access the original source) as well as publications. Reference back to it as necessary.

  • Poly(A) Tail Required for Sequencing: According to ONT, a poly(A) tail is required for the preparation of the RNA sequencing library. Some RNA molecules, such as long-non-coding RNAs (lncRNAs), rRNAs, tRNAs, and some of your controls (i.e. G. Luciferase and C. Luciferase RNAs) will therefore not be read. It is important, then, to add a poly(A) tail to these molecules enzymatically in vitro prior to the generation of the RNA library using an E. coli poly(A) polymerase (NEB Cat No.: M0276L). Details about this procedure can be found in the ONT Documentation, which also shows a few graphs suggesting optimum incubation time (0.5-1.5 min) at 37ºC (ONT Docs: RNA Polyadenylation).
  • Poly(A) Tail Length Bias: ONT has noted in their documentation that there may be a yield bias for mRNAs that have longer poly(A) tails in yeast, but it seems that this may not be the case for humans. Please consult the documentation for more (ONT Docs: Poly(A) Enrichment).
  • RNA Contaminants: Various chemicals used in the extraction procedure, including Phenols, Ethanol, Isopropanol, EDTA, NaCl, etc. can affect your RNA. Details of these effects can be found in the ONT Documentation, but the bottom line is that you should avoid contamination during library preparation at all costs (ONT Docs: RNA Contaminants). Additionally, contaminants in your RNA sample may also block the pores in your flow cell, leading to a lot of pores being placed in recovery (blue). NOTE: RNA contaminants, in my experience, and RNA quality greatly affect pore decay. Please see the "RNA Sample Quality and Throughput" point below for more.
  • RNA Read Direction 3’->5’: In the RNA sequencing protocol, ONT notes the following: “Please note that, unlike DNA, RNA is translocated through the nanopore in the 3’-5’ direction. However, the basecalling algorithms automatically flip the data, and the reads are displayed 5’-3’.” Useful to keep in mind.
  • RNA Stability in Storage: ONT describes in their documentation the stability of RNA over time. If stored properly, RNA should remain relatively stable in the proper buffers at -20ºC for 200+ days (ONT Docs: RNA Stability).
  • RNA Stability during Sequencing: RNA will degrade during the sample run over time. Workman et al. found that RNA sequences degrade over the course of a 36 hour run, but this effect was minimal (~5%) in mitochondrial control RNAs over this period, suggesting that a run over the course of 24 hours should exhibit negligible degradation (Workman et al. 2019).
  • RNA Sample Quality and Throughput: It is advised that the RNA samples be evaluated for quality via an RNA Integrity Number (RIN) (7+/10) prior to sequencing using an Agilent 2100 Bioanalyzer. This equipment can be pretty pricey, though. Your final RNA library to be sequenced via nanopore should be around 20 ng/uL for a good output. I have found that contaminants and RNA quality greatly affect throughput and pore decay. To avoid this, you should do two things: 1) dilute the input mRNA (before library prep) to around 300 ng / 9 µL and load 9 µL directly. 2) Check the RNA quality via nanodrop and make sure the interpreted results indicate a good RNA sample.
  • M6ANet Requires a Minimum of 20 Reads: According to the author here, m6ANet will not generate any inferences for mapped transcripts with fewer than 20 reads. This is a limitation of the software.
  • M6ANet Mod Probability: According to the author here, the m6ANet mod probability represents the probability that the modification at that site would be picked up using m6ACE.
  • M6ANet Mod Ratio: Again, according to the author here, the m6ANet mod ratio represents the ratio of m6A modifications found to be modified 'using' the m6ANet mod probability. Therefore, mod ratio and mod probability should be positively correlated.
  • RNA Read Errors by Base: RNA nanopore reads have higher error rates than for DNA nanopore reads. Additionally, not all basecalling errors are the same. For instance, the nanopore system has a higher error rate confusing C-to-U (3.62%) and U-to-C (2.23%) than G-for-C (0.38%) and C-for-G (0.47%) with Albacore (Workman et al. 2019).
  • RNA Read Truncation: In the Workman et al. study, it was also found that there were a number of truncated reads in their mitochondrial poly(A) transcripts, which were used as a control (since they are abundant, vary in length from 349-2,379 nucleotides, and are a single exon). They hypothesize that some possible non-biological causes of this include: 1) the last handful of nucleotides are not read when the pore translocation enzyme detaches the strand near the end, which causes the strand to rapidly move through the pore, 2) ionic current signal artifacts due to enzyme stalls during RNA translocation, or 3) RNA strand breaks (Workman et al. 2019).
  • RNA m6A Controls: The Workman et al. study also used an m6A synthetic oligomer (FLuc) as a control for m6A detection. Very useful for you. It is described in the Oligomer Ligation section of the Methods in their paper (Workman et al. 2019).
  • Wash Kits do not contain DNase: It appears that the flow cell wash kits do not contain DNase, per some discussions that took place in the comments here. Therefore, it is not likely that your washes will recover flow cell pores following direct RNA sequencing. Perhaps try adding in some RNase?

Appendix

  • Alignment: A process by which a given DNA or RNA sequence is matched with a reference genome / transcriptome, and therefore given a gene name.
  • Bam: A type of DNA or RNA sequencing file containing your reads after they have been mapped to the genome. It is a binary version of the earlier .SAM file, which is where it gets its name.
  • Bam.bai: An index file with the same prefix name as a .bam file. This file acts like an external table of contents, which allows algorithms and software to be able to jump to specfic sections of the .bam file without having to read through all the sequences.
  • Basecalling: A term used to refer to the process of obtaining direct measurements of ionic current as DNA/RNA is fed through a nanopore, and then using that information to obtain DNA/RNA nucleotide “reads”. Basecalling is achieved by running the raw Fast5 files through the Guppy software.
  • Conda: A collection of tools and runtime environment for installing software on a home machine.
  • CUDA: Stands for “Compute Unified Device Architecture”, which allows GPU resources to be used for general processing. Developed by and for NVIDIA GPUs.
  • Docker: A Linux container whereby you can run Linux code and commands in a virtual environment. I originally used this with an earlier version of this protocol, but it may not be required anymore. Alternative to singularity.
  • Fast5: A type of raw file obtained from sequencing DNA or RNA molecules. This can be converted into a Fastq file using the Guppy software provided by Oxford Nanopore.
  • Fastq: A type of raw file obtained from sequencing DNA or RNA molecules and houses the sequenced genetic material. Fastq files are often a processed step up from Fast5 files, since they contain some metadata about the sequenced material.
  • Flow cell: A term used for the sheet that contains the nanopores that sequence DNA/RNA data, along with their electrodes and sensor chip.
  • Guppy: Guppy is a basecalling algorithm provided by Oxford Nanopore Technologies, which reads the fast5 or fastq files obtained from the Oxford Nanopore (such as “MinION”), and generates the DNA/RNA bases.
  • MinION / GridION: Two different hardware enclosures that house ONT flow cells while sequencing is occurring and relays that information to a computer.
  • Nanopore: Microscopic protein pores embedded in an electrically-resistant polymer membrane and used to process DNA/mRNA strands.
  • Nuclease-free Water: Water that has been purified to not be contaminated by non-sample nucleases. This is important for gene sequencing and PCR protocols, to ensure that the material you are working with is only from your sample.
  • ONT: A reference to “Oxford Nanopore Technologies”, the manufacturer of the Nanopore we use in the lab. You will see this in a lot of folders that house files from the company, such as “ont-guppy”, which is used to sequence raw nanopore data.
  • Python: A type of programming language.
  • R: Programming language commonly used by scientists to analyze data.
  • Reads: Term used to refer to sequenced genetic material (DNA or RNA).
  • Root Folder: The parent folder location that houses most of your files. For the purposes of these guides, we are considering the root folder at /home/username/ (Linux) or /Users/username (Mac). Denoted by “root” or ~.
  • .SAM: A type of file format that holds processed sequencing data. Stands for “Sequence Alignment Map format”.
  • Shell Script: A series of code that can be executed at once via the shell (i.e. in Terminal).
  • Singularity: A Linux container whereby you can run Linux code and commands in a virtual environment. Alternative to docker.
  • Terminal: An application on both Linux and Mac machines that gives you access to the shell whereby you can execute commands.
  • XCode: Integrative Development Environment and collection of programming tools provided by Apple, Inc. for developing software.