squigualiser


Namesquigualiser JSON
Version 0.6.1 PyPI version JSON
download
home_pagehttps://github.com/hiruna72/squigualiser
SummaryVisualise ONT raw signals
upload_time2024-03-12 10:23:40
maintainerHiruna Samarakoon
docs_urlNone
authorHiruna Samarakoon
requires_python>=3.8
licenseMIT
keywords nanopore slow5 signal
VCS
bugtrack_url
requirements bokeh numpy pyslow5 readpaf pyfaidx pyfastx pysam matplotlib seaborn selenium
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # squigualiser

squigualiser is a tool to Visualise nanopore raw signal-base alignment.
signals (**squig**gles) + vis**ualiser** = **squigualiser**

Google Chrome is the recommended web browser to visualise these plots.

Watch [the video](https://youtu.be/kClYH4KpOjk) to learn a few tricks to get the best out of the plots.

![PyPI Downloads](https://img.shields.io/pypi/dm/squigualiser?label=pypi%20downloads)
[![PyPI](https://img.shields.io/pypi/v/squigualiser.svg?style=flat)](https://pypi.python.org/pypi/squigualiser)
[![Snake CI](https://github.com/hiruna72/squigualiser/actions/workflows/snake.yml/badge.svg)](https://github.com/hiruna72/squigualiser/actions/workflows/snake.yml)
[![GitHub Downloads](https://img.shields.io/github/downloads/hiruna72/squigualiser/total?logo=GitHub)](https://github.com/hiruna72/squigualiser/releases)
<!---
[![BioConda Install](https://img.shields.io/conda/dn/bioconda/slow5tools.svg?style=flag&label=BioConda%20install)](https://anaconda.org/bioconda/slow5tools)
-->

Squigualiser preprint - https://www.biorxiv.org/content/10.1101/2024.02.19.581111v2

![image](docs/figures/different_aligments/method_eventalign.png)
* Figure - A [pileup view](#pileup-view) of DNA R10.4.1 signals that align to the region `chr1:92,783,745-92,783,946`.
* Click the [link](https://hiruna72.github.io/squigualiser/docs/figures/different_aligments/dna_r10.4.1_e8.2_400bps_sup.cfg_evligned_vs_sim.html) to open it on your browser.
* Go to Section [Examples](#examples) for more examples.

# Table of Contents
1. [Quickstart](#quickstart)
2. [Advanced Setup](#advanced-setup)
3. [Signal-to-read visualisation](#signal-to-read-visualisation)
   1. [Option 1 - Using f5c resquiggle](#option-1---f5c-resquiggle)
   2. [Option 2 - Using basecaller move table](#option-2---basecaller-move-table)
   3. [Option 3 - Using squigulator signal simulation](#option-3---squigulator-signal-simulation)
5. [Signal-to-reference visualisation](#signal-to-reference-visualisation)
   1. [Option 1 - Using f5c eventalign](#option-1-f5c-eventalign)
   2. [Option 2 - Using basecaller move table](#option-2---basecaller-move-table-1)
   3. [Option 3 - Using squigulator signal simulation](#option-3---squigulator-signal-simulation-1)
6. [Pileup view](#pileup-view)
7. [Plot multiple tracks](#plot-multiple-tracks)
8. [BED annotations](#bed-annotations)
9. [Squigualiser GUI](#Squigualiser-gui)
10. [Visualisation Enhancements](#Visualisation-Enhancements)
   1. [Base shift](#base-shift)
   2. [Signal scaling](#signal-scaling)
11. [Plot conventions](#plot-conventions)
12. [Calculate alignment statistics](#calculate-alignment-statistics)
13. [Notes](#notes)
14. [Examples](#examples)


## Quickstart

The easiest way to setup squigualiser would be to use precompiled binaries. Click on the arrow to expand the snippet of commands for your operating system.
<details open><summary>For Linux distributions</summary>
<div markdown=1>

```
wget https://github.com/hiruna72/squigualiser/releases/download/v0.3.0/squigualiser-v0.3.0-linux-x86-64-binaries.tar.gz -O squigualiser.tar.gz
tar xf squigualiser.tar.gz
cd squigualiser
./squigualiser --help
```

</div>
</details>
<details><summary>For macOS (Apple Silicon) distributions</summary>
<div markdown=1>
   
```
curl -L https://github.com/hiruna72/squigualiser/releases/download/v0.3.0/squigualiser-v0.3.0-macos-arm64-binaries.tar.gz -O squigualiser.tar.gz
tar xf squigualiser.tar.gz
cd squigualiser
./squigualiser --help
```

</div>
</details>

For a quick test run the following:
````
wget https://hiruna72.github.io/squigualiser/docs/sample_dataset.tar.gz
# or use curl
curl -L https://hiruna72.github.io/squigualiser/docs/sample_dataset.tar.gz -o sample_dataset.tar.gz

tar xf sample_dataset.tar.gz
./squigualiser plot_pileup -f ref.fasta -s reads.blow5 -a eventalign.bam -o dir_out --region chr1:92,778,040-92,782,120 --tag_name "test_0"
````

`export PATH=[path_to_squigualiser_dir]:$PATH` to execute `squigualiser` from any location.

You can take a look at [advanced setup](#advanced-setup) below for instructions on installing using pip, conda or source.


## Advanced setup

Click on the arrow to expand the relevant section.

<details close><summary>Using python environment</summary>
   
<div markdown=1>
    
````
python3.8 -m venv venv3
source venv3/bin/activate
pip install --upgrade pip
pip install squigualiser
squigualiser --help
````
Squigualiser has been tested with python 3.8.0, which should also work with anything higher. For installing relevant python versions, see the troubleshoot section below.
</div>
</details>

<details close><summary>Using source code</summary>
<div markdown=1>

````
git clone https://github.com/hiruna72/squigualiser.git
cd squigualiser
python3.8 -m venv venv3
source venv3/bin/activate
pip install --upgrade pip
pip install --upgrade setuptools wheel

export PYSLOW5_ZSTD=1 # if your slow5 file uses zstd compression and you have zstd installed, set
python setup.py install
squigualiser --help
````

</div>
</details>

<details><summary>Using conda environment</summary>
<div markdown=1>

````
git clone https://github.com/hiruna72/squigualiser.git
cd squigualiser
conda create -n squig python=3.8.0 -y
conda activate squig

export PYSLOW5_ZSTD=1 # if your slow5 file uses zstd compression and you have zstd installed, set

python setup.py install
squigualiser --help
````

</div>
</details>

<details><summary>Troubleshoot: python versions</summary>
<div markdown=1>

You can check your Python version by invoking `python3 --version`. If your native python3 meets this requirement of >=3.8, you can use that, or use a
specific version installed with deadsnakes below. If you install with deadsnakes, you will need to call that specific python, such as python3.8 or python3.9, in all the following commands until you create a virtual environment with venv. Then once activated, you can just use python3. To install a specific version of python, the deadsnakes ppa is a good place to start:

````
# This is an example for installing python3.8
# you can then call that specific python version
# > python3.8 -m pip --version
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt install python3.8 python3.8-dev python3.8-venv
````

</div>
</details>

<details><summary>Troubleshoot: Install zlib development libraries (and optionally zstd development libraries)</summary>
<div markdown=1>

The commands to zlib __development libraries__ on some popular distributions :
```sh
    On Debian/Ubuntu : sudo apt-get install zlib1g-dev
    On Fedora/CentOS : sudo dnf/yum install zlib-devel
    On OS X : brew install zlib
 ```

SLOW5 files compressed with *zstd* offer smaller file size and better performance compared to the default *zlib*. However, *zlib* runtime library is available by default on almost all distributions unlike *zstd* and thus files compressed with *zlib* will be more 'portable'. Enabling optional *zstd* support, requires __zstd 1.3 or higher development libraries__ installed on your system:
 ```sh
    On Debian/Ubuntu : sudo apt-get install libzstd1-dev # libzstd-dev on newer distributions if libzstd1-dev is unavailable
    On Fedora/CentOS : sudo yum libzstd-devel
    On OS X : brew install zstd
 ```

</div>
</details>

## Signal-to-read visualisation

This section explains how you can use squigualiser to visualise a raw signal alignment against its basecalled read. Click on the arrow to expand the revalent method.

#### Option 1 - f5c resquiggle
<details>
<summary>Steps for using f5c resquiggle signal-to-read alignment</summary>
<div markdown=1>

1. Install f5c [v1.3 or higher](https://github.com/hasindu2008/f5c/releases) as explained in [f5c documentation](https://github.com/hasindu2008/f5c/#quick-start).

2. Run f5c resquiggle

````
FASTQ=reads.fastq
SIGNAL_FILE=reads.blow5
ALIGNMENT=resquiggle.paf

f5c resquiggle -c ${FASTQ} ${SIGNAL_FILE} -o ${ALIGNMENT}
````
* Refer [Note(2)](#notes) for more information about `--kmer-model [KMER_MODEL]`, which is optional.
* Refer [Note(3)](#notes) for more information about RNA.

3. Plot signal-to-read alignment

````
OUTPUT_DIR=output_dir
squigualiser plot -f ${FASTQ} -s ${SIGNAL_FILE} -a ${ALIGNMENT} -o ${OUTPUT_DIR} # to plot a selected read ID, you can provide -r 'READ_ID'.
````

</div>
</details>


#### Option 2 - basecaller move table
<details><summary>steps for using move table generated by the basecaller</summary>
<div markdown=1>

1. Run basecaller ([slow5-dorado](https://github.com/hiruna72/slow5-dorado), [buttery-eel](https://github.com/Psy-Fer/buttery-eel) or ont-Guppy)

````
# buttery-eel (tested with v0.2.2)
buttery-eel -g [GUPPY exe path] --config [DNA model] -i [INPUT] -o [OUTPUT] --port 5558 --use_tcp -x "cuda:all" --moves_out
e.g buttery-eel -g [GUPPY exe path] --config dna_r10.4.1_e8.2_400bps_sup.cfg -i input_reads.blow5 -o basecalls.sam --port 5558 --use_tcp -x "cuda:all" --moves_out

# slow5-dorado (tested with v0.2.1)
slow5-dorado basecaller [DNA model] [INPUT] --emit-moves > [OUTPUT]
e.g. slow5-dorado basecaller dna_r10.4.1_e8.2_400bps_sup@v4.0.0 input_reads.blow5 --emit-moves > basecalls.sam

# ont-guppy (tested with v6.3.7)
guppy_basecaller -c [DNA model] -i [INPUT] --moves_out --bam_out --save_path [OUTPUT]
samtools merge pass/*.bam -o basecalls.bam # merge passed BAM files to create a single BAM file
````

2. Reformat move table ([more info about reform](docs/reform.md)).

````
# PAF output for plotting
ALIGNMENT=reform_output.paf
squigualiser reform --sig_move_offset 0 --kmer_length 1 -c --bam basecalls.sam -o ${ALIGNMENT}
````
* Refer [Note(4)](#notes) for more information on the PAF output.
* Refer [Note(5)](#notes) for a description about `sig_move_offset`.
* Refer [Note(6)](#notes) for handling a potential SAM/BAM error.

3. Plot signal-to-read alignment

````
FASTA_FILE=read.fasta
SIGNAL_FILE=read.blow5
OUTPUT_DIR=output_dir

# use samtools fasta command to create .fasta file from SAM/BAM file
samtools fasta basecalls.sam > ${FASTA_FILE}
# plot
squigualiser plot --file ${FASTA_FILE} --slow5 ${SIGNAL_FILE} --alignment ${ALIGNMENT} --output_dir ${OUTPUT_DIR}
````

</div>
</details>

#### Option 3 - Squigulator signal simulation

<details><summary>Steps for using Squigulator signal simulation software</summary>
<div markdown=1>

1. Setup squigulator v0.2.1 or higher as explained in the [documentation](https://github.com/hasindu2008/squigulator).

2. Simulate a signal (remember to provide -q and -c options).

````
REF=ref.fasta          #reference
READ=sim.fasta         #simulated reads
ALIGNMENT=sim.paf      #contains signal-to-read alignment
SIGNAL_FILE=sim.blow5  #simultated raw signal data

squigulator -x dna-r10-prom ${REF} -n 1 -o ${SIGNAL_FILE} -q ${READ} -c ${ALIGNMENT} # instead of dna-r10-prom, you can specify any other profile
````

3. Plot signal-to-read alignment.

````
OUTPUT_DIR=output_dir
squigualiser plot -f ${READ} -s ${SIGNAL_FILE} -a ${ALIGNMENT} -o ${OUTPUT_DIR} # to plot a selected read ID, you can provide -r 'READ_ID'.
````

</div>
</details>

## Signal-to-reference visualisation

This section explains how you can use squigualiser to visualise a raw signal alignment against a reference. Click on the arrow to expand the relevant method.

#### Option 1: f5c eventalign
<details><summary>Steps for using f5c eventalign</summary>
<div markdown=1>

1.  Install f5c [v1.3 or higher](https://github.com/hasindu2008/f5c/releases) as explained in [f5c documentation](https://github.com/hasindu2008/f5c/#quick-start).
2. Align reads to reference genome

````
REF=genome.fa #reference
MAP_BAM=mapped.bam
FASTQ=read.fastq
samtools fastq basecalls.sam > ${FASTQ} # if basecalls are in sam format

# For DNA
minimap2 -ax map-ont ${REF} ${FASTQ} -t8 --secondary=no | samtools sort - -o ${MAP_BAM} && samtools index ${MAP_BAM} 

# For RNA (reference must be the transcriptome)
minimap2 -ax splice -uf -k14 ${REF} ${FASTQ} -t8 --secondary=no | samtools sort - -o ${MAP_BAM} && samtools index ${MAP_BAM} 

````

3. create f5c index

````
SIGNAL=reads.blow5
f5c index ${FASTQ} --slow5 ${SIGNAL}
````
4. f5c eventalign

````
ALIGNMENT=eventalign.bam
f5c eventalign -b ${MAP_BAM} -r ${FASTQ} -g ${REF} --slow5 ${SIGNAL} -a -o eventalign.sam
samtools sort eventalign.sam -o ${ALIGNMENT}
samtools index ${ALIGNMENT}
````

5. Plot signal to reference alignment.

````
OUTPUT_DIR=output_dir
REGION=chr1:6811404-6811443
squigualiser plot -f ${REF} -s ${SIGNAL_FILE} -a ${ALIGNMENT} -o ${OUTPUT_DIR} --region ${REGION} --tag_name "eventalgin"
````

</div>
</details>

#### Option 2 - basecaller move table
<details><summary>Steps for using move table generated by the basecaller</summary>
<div markdown=1>

1. Run basecaller ([slow5-dorado](https://github.com/hiruna72/slow5-dorado), [buttery-eel](https://github.com/Psy-Fer/buttery-eel) or ont-Guppy)

````
# buttery-eel (tested with v0.2.2)
buttery-eel -g [GUPPY exe path] --config [DNA model] -i [INPUT] -o [OUTPUT] --port 5558 --use_tcp -x "cuda:all" --moves_out
e.g buttery-eel -g [GUPPY exe path] --config dna_r10.4.1_e8.2_400bps_sup.cfg -i input_reads.blow5 -o basecalls.sam --port 5558 --use_tcp -x "cuda:all" --moves_out

# slow5-dorado (tested with v0.2.1)
slow5-dorado basecaller [DNA model] [INPUT] --emit-moves > [OUTPUT]
e.g. slow5-dorado basecaller dna_r10.4.1_e8.2_400bps_sup@v4.0.0 input_reads.blow5 --emit-moves > basecalls.sam

# ont-guppy (tested with v6.3.7)
guppy_basecaller -c [DNA model] -i [INPUT] --moves_out --bam_out --save_path [OUTPUT]
samtools merge pass/*.bam -o basecalls.bam # merge passed BAM files to create a single BAM file
````

2. Reformat move table ([more info on reform](docs/reform.md)).

````
# PAF output for plotting
REFORMAT_PAF=reform_output.paf
squigualiser reform --sig_move_offset 0 --kmer_length 1 -c --bam basecalls.sam -o ${REFORMAT_PAF}

````
* Refer [Note(4)](#notes) for more information on the paf output.
* Refer [Note(5)](#notes) for a description about `sig_move_offset`.
* Refer [Note(6)](#notes) for handling a potential SAM/BAM error.

3. Align reads to reference genome

````
REF=genome.fa #reference
MAPP_SAM=map_output.sam

# For DNA
samtools fastq basecalls.sam | minimap2 -ax map-ont ${REF} -t8 --secondary=no -o ${MAPP_SAM} -

# For RNA (the reference must be the transcriptome)
samtools fastq basecalls.sam | minimap2 -ax splice -uf -k14 ${REF} -t8 --secondary=no -o ${MAPP_SAM} -

````

4. Realign reformatted move table to reference ([more info on realign](docs/realign.md)).

````
REALIGN_BAM=realign_output.bam
squigualiser realign --bam ${MAPP_SAM} --paf ${REFORMAT_PAF} -o ${REALIGN_BAM}
````

5. Plot signal-to-reference alignment

````
REGION=chr1:6811404-6811443
SIGNAL_FILE=read.blow5
OUTPUT_DIR=output_dir

# plot
squigualiser plot --file ${REF} --slow5 ${SIGNAL_FILE} --alignment ${REALIGN_BAM} --output_dir ${OUTPUT_DIR} --region ${REGION} --tag_name "optionA"

````

</div>
</details>

#### Option 3 - Squigulator signal simulation
<details><summary>Steps for using the signal simulation software (SAM output, recommended)</summary>
<div markdown=1>

1. Setup squigulator v0.2.1 or higher as explained in the [documentation](https://github.com/hasindu2008/squigulator).

2. Simulate a signal (remember to provide -a).
```
REF=ref.fasta #reference
READ=sim.fasta
ALIGNMENT=sorted_sim.bam
SIGNAL_FILE=sim.blow5
NUM_READS=50 #number of reads to simulate
squigulator -x dna-r10-prom ${REF} -o ${SIGNAL_FILE} -a sim.sam -n ${NUM_READS} && samtools sort sim.sam -o ${ALIGNMENT} && samtools index ${ALIGNMENT}
```

3. Plot signal-to-reference alignment.
````
OUTPUT_DIR=output_dir
REGION=chr1:6811404-6811443
squigualiser plot -f ${REF} -s ${SIGNAL_FILE} -a ${ALIGNMENT} -o ${OUTPUT_DIR} --region ${REGION} --tag_name "optionB"
````

</div>
</details>

<details><summary>Steps for using the signal simulation software (PAF output)</summary>
<div markdown=1>

2. Simulate a signal (remember to provide -c and --paf-ref).

````
REF=ref.fasta                 #reference
ALIGNMENT=sorted_sim.paf.gz   #sorted bgzip compressed PAF file containing signal to reference alignment
SIGNAL_FILE=sim.blow5         #simulated raw signals
NUM_READS=50                  #number of reads to simulate

For DNA
squigulator -x dna-r10-prom ${REF} -o ${SIGNAL_FILE} --paf-ref -c sim.paf -n ${NUM_READS}
sort -k6,6 -k8,8n sim.paf -o sorted_sim.paf
bgzip sorted_sim.paf
tabix -0 -b 8 -e 9 -s 6 ${ALIGNMENT}

For RNA
squigulator -x rna-r9-prom ${REF} -o ${SIGNAL_FILE} --paf-ref -c sim.paf -n ${NUM_READS}
sort -k6,6 -k9,9n sim.paf -o sorted_sim.paf
bgzip sorted_sim.paf
tabix -0 -b 9 -e 8 -s 6 ${ALIGNMENT}

````

</div>
</details>

## Pileup view
![image](docs/figures/pileup/igv.png)
![image](docs/figures/pileup/pileup_plot.png)

Similar to IGV pileup view now you can view the signal pileup view. To create a pileup view the following conditions should be met.
1. The plot is a signal-to-reference visualisation, not a signal-to-read.
2. A genomic region should be specified using the argument `--region`

First, create an alignment file by following the steps mentioned in [Signal-to-reference visualisation](#signal-to-reference-visualisation)

````
REGION=chr1:6811011-6811198
squigualiser plot_pileup -f ${REF} -s ${SIGNAL_FILE} -a ${ALIGNMENT} -o ${OUTPUT_DIR} --region ${REGION} --tag_name "pileup"
````

[Here](https://hiruna72.github.io/squigualiser/docs/figures/pileup/pileup_testcase-20.1.html) is an example DNA pileup plot created using the [testcase 20.1](test/test_plot_pileup.sh).
[Here](https://hiruna72.github.io/squigualiser/docs/figures/pileup/pileup_testcase-43.1.html) is an example RNA pileup plot created using the [testcase 43.1](test/test_plot_pileup.sh).

## Plot multiple tracks
<details><summary>For in depth analysis the user can visualize multiple pileup plots in the same web page.</summary>
<div markdown=1>

![image](docs/figures/plot_tracks/plot_tracks.png)

* The command `plot_tracks` only supports pileup views and takes a `command_file.txt` file as the input.
* The input file describes the number of commands, the dimension of each track, and the pileup commands.
* The following input `command_file.txt` file describes two pileup tracks with 900 and 200 heights for the first and second track respectively.
* Setting `plot_heights=*` in the `command_file.txt` or providing the argument `--auto_height` will automatically adjust the track height depending on the number of plots in each track.
* Note that the only difference between the two commands is that the second command has the additional `--plot_reverse` argument to plot reverse mapped reads. And `-o` or `--output_dir` argument is not necessary (ignored).

````
num_commands=2
plot_heights=900,200
squigualiser plot_pileup --region chr1:6,811,011-6,811,198 -f genome/hg38noAlt.fa -s reads.blow5 -a eventalign.bam --tag_name "forward_mapped"
squigualiser plot_pileup --region chr1:6,811,011-6,811,198 -f genome/hg38noAlt.fa -s reads.blow5 -a eventalign.bam --tag_name "reverse_mapped" --plot_reverse
````

Then use the `plot_tracks` command as below (remember to provide `-o`),

````
COMMAND_FILE="command_file.txt"
squigualiser plot_tracks --shared_x -f ${COMMAND_FILE} -o output_dir
````

### Plot multiple tracks examples
1. Forward and reverse mapped reads in separate tracks [link](https://hiruna72.github.io/squigualiser/docs/figures/plot_tracks/plot_tracks_testcase-30.3.html).
2. Different alignment methods (f5c eventalign and squigualiser's realign) for RNA data in separate tracks [link](https://hiruna72.github.io/squigualiser/docs/figures/plot_tracks/plot_tracks_testcase-30.3.html).
3. Real and simulated variants in separate tracks [link](https://hiruna72.github.io/squigualiser/docs/figures/variants/chr22/dna_r10.4.1_e8.2_400bps_sup.cfg_evligned_vs_sim.html).


</div>
</details>

## BED annotations
Plots support BED file annotations. Use argument `--bed [BED FILE]` to provide the bed file to the plot command.

[Here](https://hiruna72.github.io/squigualiser/docs/figures/pileup/pileup_testcase-43.1.html) is an example RNA pileup plot created using the [testcase 43.1](test/test_plot_pileup.sh) that supports bed annotations.

## Squigualiser GUI
<details><summary>For GUI lovers, plots can be generated using a web application running on localhost (http://localhost:8000/home)</summary>
<div markdown=1>

![image](docs/figures/squigualiser_website.png)


````
python src/server.py
````

</div>
</details>

## Visualisation Enhancements

### Base shift
User can shift the base sequence to the left by `n` number of bases by providing the argument `--base_shift -n` to `plot` and `plot_pileup` commands. This is helpful to correct the signal level to the base. A negative `n` value will shift the base sequence to the left.
However, the user is adviced to use `--profile` (documented [here](docs/profiles.md)) which automatically sets the `--base_shift`.
For more information please refer [base_shift and eventalignment](docs/base_shift_and_eventalignment.md) and [base_shift and reverse mapped reads](docs/base_shift_of_reverse_mapped_reads.md).

### Signal scaling
The commands `plot` and `plot_pileup` can take the argument `--sig_scale`. Provide the argument `--sig_scale znorm` to zscore normalize, `--sig_scale medmad` to median MAD normalize, and `--sig_scale scaledpA` to scale the raw signal to the pore model.


## Plot Conventions
![image](docs/figures/plot_description/plot_description.png)
* **A** is a descriptive tag name to identify the plot.
* **B** indicates whether the positive or negative strand was used as the reference to align the signals. For RNA this will be `RNA 3'->5'`. Squigualiser only supports RNA reads mapped to the transcriptome.
* **C** always indicates the region using the positive strand coordinates, regardless of the forward and reverse mapped plots.
* **D** indicates the true sequencing direction of the signals.


## Calculate alignment statistics
Calculate basic statistics of signal-to-read/reference alignments.
Check [here](docs/commands.md/#metric) for the command.
Check [here](docs/different_alignments.md) for an example.

## Notes

1. If your FASTQ file is a multi-line file (not to confuse with multi-read), then install [seqtk](https://github.com/lh3/seqtk) and use `seqtk seq -l0 in.fastq > out.fastq`  to convert multi-line FASTQ to 4-line FASTQ.
2. The optional argument `--kmer-model KMER_MODEL` can be used to specify a custom k-mer model if you wish.
3. To plot RNA signal-to-read alignment use the alignment file created using `f5c resquiggle --rna -c ${FASTQ} ${SIGNAL_FILE} -o ${ALIGNMENT}`. Also, provide the argument `--rna` to the visualising command. Currently, there exists no RNA kmer model for r10.4.1 chemistry.
4. The input alignment format accepted by `squigualiser plot` is explained [here](https://hasindu2008.github.io/f5c/docs/output#resquiggle). This standard format made plotting a lot easier.
5. The argument `sig_move_offset` is the number of moves `n` to skip in the signal to correct the start of the alignment. This will not skip bases in the fastq sequence. For example, to align the first move with the first kmer `--sig_move_offset 0` should be passed. To align from the second move onwards, `--sig_move_offset 1` should be used.
6. Pysam does not allow reading SAM/BAM files without a `@SQ` line in the header. Hence, `squigualiser reform` script might error out with `NotImplementedError: can not iterate over samfile without header`. Add a fake `@SQ` header line with a zero length reference as follows,
   ```
   echo -e fake_reference'\t'0 > fake_reference.fa.fai
   samtools view out.sam -h -t fake_reference.fa.fai -o sq_added_out.sam
   ```
7. Squigulator's signal simulation is a good way to understand the nature of the alignments. Please refer to the documentation about [real_vs_simulated_signal](docs/real_vs_simulated_signal.md).
8. For a explanation of the Guppy move table explanation see please refer [here](docs/move_table.md).


## Examples

![image](docs/figures/preview.png)

1. The first read is a signal-to-read alignment using guppy_v.6.3.7 move table annotation ([link](https://hiruna72.github.io/squigualiser/docs/figures/sig_to_read/testcase-1.1.html)).
2. The second read is a signal-to-read alignment using f5c resquiggle output ([link](https://hiruna72.github.io/squigualiser/docs/figures/sig_to_read/testcase-2.1.html)).
3. The third read is a signal-to-read alignment using the squigulator's simulated output ([link](https://hiruna72.github.io/squigualiser/docs/figures/sig_to_read/testcase-1.11.html)).
4. The fourth read (RNA) is a signal-to-read alignment using f5c resquiggle output ([link](https://hiruna72.github.io/squigualiser/docs/figures/sig_to_read/testcase-3.2.html)).

* [This](https://hiruna72.github.io/squigualiser/docs/figures/sig_to_reference/testcase-8.1.html) signal-to-reference alignment aligns a signal to the region `chr1:4270161-4271160`.
* [This](https://hiruna72.github.io/squigualiser/docs/figures/sig_to_reference/testcase-8.2.html) is the same plot with a fixed base width.

These examples were generated using the testcases - `1.1, 2.1, 1.11,` and `3.2` respectively in [test_plot_signal_to_read.sh](test/test_plot_signal_to_read.sh).

Please refer to the example [pipelines](docs/pipeline_basic.md) to learn how to integrate squigualiser into your analysis.

## Acknowledgement
Some code snippets have been taken from [blue-crab](https://github.com/Psy-Fer/blue-crab), [buttery-eel](https://github.com/Psy-Fer/buttery-eel), [readfish](https://github.com/LooseLab/readfish) and [bonito](https://github.com/nanoporetech/bonito)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/hiruna72/squigualiser",
    "name": "squigualiser",
    "maintainer": "Hiruna Samarakoon",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "h.samarakoon@garvan.org.au",
    "keywords": "nanopore,slow5,signal",
    "author": "Hiruna Samarakoon",
    "author_email": "h.samarakoon@garvan.org.au",
    "download_url": "https://files.pythonhosted.org/packages/b9/39/c370eaffe9a54f42c5a8455866e5d2e040de0dda08d254f07b10b391f733/squigualiser-0.6.1.tar.gz",
    "platform": null,
    "description": "# squigualiser\n\nsquigualiser is a tool to Visualise nanopore raw signal-base alignment.\nsignals (**squig**gles) + vis**ualiser** = **squigualiser**\n\nGoogle Chrome is the recommended web browser to visualise these plots.\n\nWatch [the video](https://youtu.be/kClYH4KpOjk) to learn a few tricks to get the best out of the plots.\n\n![PyPI Downloads](https://img.shields.io/pypi/dm/squigualiser?label=pypi%20downloads)\n[![PyPI](https://img.shields.io/pypi/v/squigualiser.svg?style=flat)](https://pypi.python.org/pypi/squigualiser)\n[![Snake CI](https://github.com/hiruna72/squigualiser/actions/workflows/snake.yml/badge.svg)](https://github.com/hiruna72/squigualiser/actions/workflows/snake.yml)\n[![GitHub Downloads](https://img.shields.io/github/downloads/hiruna72/squigualiser/total?logo=GitHub)](https://github.com/hiruna72/squigualiser/releases)\n<!---\n[![BioConda Install](https://img.shields.io/conda/dn/bioconda/slow5tools.svg?style=flag&label=BioConda%20install)](https://anaconda.org/bioconda/slow5tools)\n-->\n\nSquigualiser preprint - https://www.biorxiv.org/content/10.1101/2024.02.19.581111v2\n\n![image](docs/figures/different_aligments/method_eventalign.png)\n* Figure - A [pileup view](#pileup-view) of DNA R10.4.1 signals that align to the region `chr1:92,783,745-92,783,946`.\n* Click the [link](https://hiruna72.github.io/squigualiser/docs/figures/different_aligments/dna_r10.4.1_e8.2_400bps_sup.cfg_evligned_vs_sim.html) to open it on your browser.\n* Go to Section [Examples](#examples) for more examples.\n\n# Table of Contents\n1. [Quickstart](#quickstart)\n2. [Advanced Setup](#advanced-setup)\n3. [Signal-to-read visualisation](#signal-to-read-visualisation)\n   1. [Option 1 - Using f5c resquiggle](#option-1---f5c-resquiggle)\n   2. [Option 2 - Using basecaller move table](#option-2---basecaller-move-table)\n   3. [Option 3 - Using squigulator signal simulation](#option-3---squigulator-signal-simulation)\n5. [Signal-to-reference visualisation](#signal-to-reference-visualisation)\n   1. [Option 1 - Using f5c eventalign](#option-1-f5c-eventalign)\n   2. [Option 2 - Using basecaller move table](#option-2---basecaller-move-table-1)\n   3. [Option 3 - Using squigulator signal simulation](#option-3---squigulator-signal-simulation-1)\n6. [Pileup view](#pileup-view)\n7. [Plot multiple tracks](#plot-multiple-tracks)\n8. [BED annotations](#bed-annotations)\n9. [Squigualiser GUI](#Squigualiser-gui)\n10. [Visualisation Enhancements](#Visualisation-Enhancements)\n   1. [Base shift](#base-shift)\n   2. [Signal scaling](#signal-scaling)\n11. [Plot conventions](#plot-conventions)\n12. [Calculate alignment statistics](#calculate-alignment-statistics)\n13. [Notes](#notes)\n14. [Examples](#examples)\n\n\n## Quickstart\n\nThe easiest way to setup squigualiser would be to use precompiled binaries. Click on the arrow to expand the snippet of commands for your operating system.\n<details open><summary>For Linux distributions</summary>\n<div markdown=1>\n\n```\nwget https://github.com/hiruna72/squigualiser/releases/download/v0.3.0/squigualiser-v0.3.0-linux-x86-64-binaries.tar.gz -O squigualiser.tar.gz\ntar xf squigualiser.tar.gz\ncd squigualiser\n./squigualiser --help\n```\n\n</div>\n</details>\n<details><summary>For macOS (Apple Silicon) distributions</summary>\n<div markdown=1>\n   \n```\ncurl -L https://github.com/hiruna72/squigualiser/releases/download/v0.3.0/squigualiser-v0.3.0-macos-arm64-binaries.tar.gz -O squigualiser.tar.gz\ntar xf squigualiser.tar.gz\ncd squigualiser\n./squigualiser --help\n```\n\n</div>\n</details>\n\nFor a quick test run the following:\n````\nwget https://hiruna72.github.io/squigualiser/docs/sample_dataset.tar.gz\n# or use curl\ncurl -L https://hiruna72.github.io/squigualiser/docs/sample_dataset.tar.gz -o sample_dataset.tar.gz\n\ntar xf sample_dataset.tar.gz\n./squigualiser plot_pileup -f ref.fasta -s reads.blow5 -a eventalign.bam -o dir_out --region chr1:92,778,040-92,782,120 --tag_name \"test_0\"\n````\n\n`export PATH=[path_to_squigualiser_dir]:$PATH` to execute `squigualiser` from any location.\n\nYou can take a look at [advanced setup](#advanced-setup) below for instructions on installing using pip, conda or source.\n\n\n## Advanced setup\n\nClick on the arrow to expand the relevant section.\n\n<details close><summary>Using python environment</summary>\n   \n<div markdown=1>\n    \n````\npython3.8 -m venv venv3\nsource venv3/bin/activate\npip install --upgrade pip\npip install squigualiser\nsquigualiser --help\n````\nSquigualiser has been tested with python 3.8.0, which should also work with anything higher. For installing relevant python versions, see the troubleshoot section below.\n</div>\n</details>\n\n<details close><summary>Using source code</summary>\n<div markdown=1>\n\n````\ngit clone https://github.com/hiruna72/squigualiser.git\ncd squigualiser\npython3.8 -m venv venv3\nsource venv3/bin/activate\npip install --upgrade pip\npip install --upgrade setuptools wheel\n\nexport PYSLOW5_ZSTD=1 # if your slow5 file uses zstd compression and you have zstd installed, set\npython setup.py install\nsquigualiser --help\n````\n\n</div>\n</details>\n\n<details><summary>Using conda environment</summary>\n<div markdown=1>\n\n````\ngit clone https://github.com/hiruna72/squigualiser.git\ncd squigualiser\nconda create -n squig python=3.8.0 -y\nconda activate squig\n\nexport PYSLOW5_ZSTD=1 # if your slow5 file uses zstd compression and you have zstd installed, set\n\npython setup.py install\nsquigualiser --help\n````\n\n</div>\n</details>\n\n<details><summary>Troubleshoot: python versions</summary>\n<div markdown=1>\n\nYou can check your Python version by invoking `python3 --version`. If your native python3 meets this requirement of >=3.8, you can use that, or use a\nspecific version installed with deadsnakes below. If you install with deadsnakes, you will need to call that specific python, such as python3.8 or python3.9, in all the following commands until you create a virtual environment with venv. Then once activated, you can just use python3. To install a specific version of python, the deadsnakes ppa is a good place to start:\n\n````\n# This is an example for installing python3.8\n# you can then call that specific python version\n# > python3.8 -m pip --version\nsudo add-apt-repository ppa:deadsnakes/ppa\nsudo apt-get update\nsudo apt install python3.8 python3.8-dev python3.8-venv\n````\n\n</div>\n</details>\n\n<details><summary>Troubleshoot: Install zlib development libraries (and optionally zstd development libraries)</summary>\n<div markdown=1>\n\nThe commands to zlib __development libraries__ on some popular distributions :\n```sh\n    On Debian/Ubuntu : sudo apt-get install zlib1g-dev\n    On Fedora/CentOS : sudo dnf/yum install zlib-devel\n    On OS X : brew install zlib\n ```\n\nSLOW5 files compressed with *zstd* offer smaller file size and better performance compared to the default *zlib*. However, *zlib* runtime library is available by default on almost all distributions unlike *zstd* and thus files compressed with *zlib* will be more 'portable'. Enabling optional *zstd* support, requires __zstd 1.3 or higher development libraries__ installed on your system:\n ```sh\n    On Debian/Ubuntu : sudo apt-get install libzstd1-dev # libzstd-dev on newer distributions if libzstd1-dev is unavailable\n    On Fedora/CentOS : sudo yum libzstd-devel\n    On OS X : brew install zstd\n ```\n\n</div>\n</details>\n\n## Signal-to-read visualisation\n\nThis section explains how you can use squigualiser to visualise a raw signal alignment against its basecalled read. Click on the arrow to expand the revalent method.\n\n#### Option 1 - f5c resquiggle\n<details>\n<summary>Steps for using f5c resquiggle signal-to-read alignment</summary>\n<div markdown=1>\n\n1. Install f5c [v1.3 or higher](https://github.com/hasindu2008/f5c/releases) as explained in [f5c documentation](https://github.com/hasindu2008/f5c/#quick-start).\n\n2. Run f5c resquiggle\n\n````\nFASTQ=reads.fastq\nSIGNAL_FILE=reads.blow5\nALIGNMENT=resquiggle.paf\n\nf5c resquiggle -c ${FASTQ} ${SIGNAL_FILE} -o ${ALIGNMENT}\n````\n* Refer [Note(2)](#notes) for more information about `--kmer-model [KMER_MODEL]`, which is optional.\n* Refer [Note(3)](#notes) for more information about RNA.\n\n3. Plot signal-to-read alignment\n\n````\nOUTPUT_DIR=output_dir\nsquigualiser plot -f ${FASTQ} -s ${SIGNAL_FILE} -a ${ALIGNMENT} -o ${OUTPUT_DIR} # to plot a selected read ID, you can provide -r 'READ_ID'.\n````\n\n</div>\n</details>\n\n\n#### Option 2 - basecaller move table\n<details><summary>steps for using move table generated by the basecaller</summary>\n<div markdown=1>\n\n1. Run basecaller ([slow5-dorado](https://github.com/hiruna72/slow5-dorado), [buttery-eel](https://github.com/Psy-Fer/buttery-eel) or ont-Guppy)\n\n````\n# buttery-eel (tested with v0.2.2)\nbuttery-eel -g [GUPPY exe path] --config [DNA model] -i [INPUT] -o [OUTPUT] --port 5558 --use_tcp -x \"cuda:all\" --moves_out\ne.g buttery-eel -g [GUPPY exe path] --config dna_r10.4.1_e8.2_400bps_sup.cfg -i input_reads.blow5 -o basecalls.sam --port 5558 --use_tcp -x \"cuda:all\" --moves_out\n\n# slow5-dorado (tested with v0.2.1)\nslow5-dorado basecaller [DNA model] [INPUT] --emit-moves > [OUTPUT]\ne.g. slow5-dorado basecaller dna_r10.4.1_e8.2_400bps_sup@v4.0.0 input_reads.blow5 --emit-moves > basecalls.sam\n\n# ont-guppy (tested with v6.3.7)\nguppy_basecaller -c [DNA model] -i [INPUT] --moves_out --bam_out --save_path [OUTPUT]\nsamtools merge pass/*.bam -o basecalls.bam # merge passed BAM files to create a single BAM file\n````\n\n2. Reformat move table ([more info about reform](docs/reform.md)).\n\n````\n# PAF output for plotting\nALIGNMENT=reform_output.paf\nsquigualiser reform --sig_move_offset 0 --kmer_length 1 -c --bam basecalls.sam -o ${ALIGNMENT}\n````\n* Refer [Note(4)](#notes) for more information on the PAF output.\n* Refer [Note(5)](#notes) for a description about `sig_move_offset`.\n* Refer [Note(6)](#notes) for handling a potential SAM/BAM error.\n\n3. Plot signal-to-read alignment\n\n````\nFASTA_FILE=read.fasta\nSIGNAL_FILE=read.blow5\nOUTPUT_DIR=output_dir\n\n# use samtools fasta command to create .fasta file from SAM/BAM file\nsamtools fasta basecalls.sam > ${FASTA_FILE}\n# plot\nsquigualiser plot --file ${FASTA_FILE} --slow5 ${SIGNAL_FILE} --alignment ${ALIGNMENT} --output_dir ${OUTPUT_DIR}\n````\n\n</div>\n</details>\n\n#### Option 3 - Squigulator signal simulation\n\n<details><summary>Steps for using Squigulator signal simulation software</summary>\n<div markdown=1>\n\n1. Setup squigulator v0.2.1 or higher as explained in the [documentation](https://github.com/hasindu2008/squigulator).\n\n2. Simulate a signal (remember to provide -q and -c options).\n\n````\nREF=ref.fasta          #reference\nREAD=sim.fasta         #simulated reads\nALIGNMENT=sim.paf      #contains signal-to-read alignment\nSIGNAL_FILE=sim.blow5  #simultated raw signal data\n\nsquigulator -x dna-r10-prom ${REF} -n 1 -o ${SIGNAL_FILE} -q ${READ} -c ${ALIGNMENT} # instead of dna-r10-prom, you can specify any other profile\n````\n\n3. Plot signal-to-read alignment.\n\n````\nOUTPUT_DIR=output_dir\nsquigualiser plot -f ${READ} -s ${SIGNAL_FILE} -a ${ALIGNMENT} -o ${OUTPUT_DIR} # to plot a selected read ID, you can provide -r 'READ_ID'.\n````\n\n</div>\n</details>\n\n## Signal-to-reference visualisation\n\nThis section explains how you can use squigualiser to visualise a raw signal alignment against a reference. Click on the arrow to expand the relevant method.\n\n#### Option 1: f5c eventalign\n<details><summary>Steps for using f5c eventalign</summary>\n<div markdown=1>\n\n1.  Install f5c [v1.3 or higher](https://github.com/hasindu2008/f5c/releases) as explained in [f5c documentation](https://github.com/hasindu2008/f5c/#quick-start).\n2. Align reads to reference genome\n\n````\nREF=genome.fa #reference\nMAP_BAM=mapped.bam\nFASTQ=read.fastq\nsamtools fastq basecalls.sam > ${FASTQ} # if basecalls are in sam format\n\n# For DNA\nminimap2 -ax map-ont ${REF} ${FASTQ} -t8 --secondary=no | samtools sort - -o ${MAP_BAM} && samtools index ${MAP_BAM} \n\n# For RNA (reference must be the transcriptome)\nminimap2 -ax splice -uf -k14 ${REF} ${FASTQ} -t8 --secondary=no | samtools sort - -o ${MAP_BAM} && samtools index ${MAP_BAM} \n\n````\n\n3. create f5c index\n\n````\nSIGNAL=reads.blow5\nf5c index ${FASTQ} --slow5 ${SIGNAL}\n````\n4. f5c eventalign\n\n````\nALIGNMENT=eventalign.bam\nf5c eventalign -b ${MAP_BAM} -r ${FASTQ} -g ${REF} --slow5 ${SIGNAL} -a -o eventalign.sam\nsamtools sort eventalign.sam -o ${ALIGNMENT}\nsamtools index ${ALIGNMENT}\n````\n\n5. Plot signal to reference alignment.\n\n````\nOUTPUT_DIR=output_dir\nREGION=chr1:6811404-6811443\nsquigualiser plot -f ${REF} -s ${SIGNAL_FILE} -a ${ALIGNMENT} -o ${OUTPUT_DIR} --region ${REGION} --tag_name \"eventalgin\"\n````\n\n</div>\n</details>\n\n#### Option 2 - basecaller move table\n<details><summary>Steps for using move table generated by the basecaller</summary>\n<div markdown=1>\n\n1. Run basecaller ([slow5-dorado](https://github.com/hiruna72/slow5-dorado), [buttery-eel](https://github.com/Psy-Fer/buttery-eel) or ont-Guppy)\n\n````\n# buttery-eel (tested with v0.2.2)\nbuttery-eel -g [GUPPY exe path] --config [DNA model] -i [INPUT] -o [OUTPUT] --port 5558 --use_tcp -x \"cuda:all\" --moves_out\ne.g buttery-eel -g [GUPPY exe path] --config dna_r10.4.1_e8.2_400bps_sup.cfg -i input_reads.blow5 -o basecalls.sam --port 5558 --use_tcp -x \"cuda:all\" --moves_out\n\n# slow5-dorado (tested with v0.2.1)\nslow5-dorado basecaller [DNA model] [INPUT] --emit-moves > [OUTPUT]\ne.g. slow5-dorado basecaller dna_r10.4.1_e8.2_400bps_sup@v4.0.0 input_reads.blow5 --emit-moves > basecalls.sam\n\n# ont-guppy (tested with v6.3.7)\nguppy_basecaller -c [DNA model] -i [INPUT] --moves_out --bam_out --save_path [OUTPUT]\nsamtools merge pass/*.bam -o basecalls.bam # merge passed BAM files to create a single BAM file\n````\n\n2. Reformat move table ([more info on reform](docs/reform.md)).\n\n````\n# PAF output for plotting\nREFORMAT_PAF=reform_output.paf\nsquigualiser reform --sig_move_offset 0 --kmer_length 1 -c --bam basecalls.sam -o ${REFORMAT_PAF}\n\n````\n* Refer [Note(4)](#notes) for more information on the paf output.\n* Refer [Note(5)](#notes) for a description about `sig_move_offset`.\n* Refer [Note(6)](#notes) for handling a potential SAM/BAM error.\n\n3. Align reads to reference genome\n\n````\nREF=genome.fa #reference\nMAPP_SAM=map_output.sam\n\n# For DNA\nsamtools fastq basecalls.sam | minimap2 -ax map-ont ${REF} -t8 --secondary=no -o ${MAPP_SAM} -\n\n# For RNA (the reference must be the transcriptome)\nsamtools fastq basecalls.sam | minimap2 -ax splice -uf -k14 ${REF} -t8 --secondary=no -o ${MAPP_SAM} -\n\n````\n\n4. Realign reformatted move table to reference ([more info on realign](docs/realign.md)).\n\n````\nREALIGN_BAM=realign_output.bam\nsquigualiser realign --bam ${MAPP_SAM} --paf ${REFORMAT_PAF} -o ${REALIGN_BAM}\n````\n\n5. Plot signal-to-reference alignment\n\n````\nREGION=chr1:6811404-6811443\nSIGNAL_FILE=read.blow5\nOUTPUT_DIR=output_dir\n\n# plot\nsquigualiser plot --file ${REF} --slow5 ${SIGNAL_FILE} --alignment ${REALIGN_BAM} --output_dir ${OUTPUT_DIR} --region ${REGION} --tag_name \"optionA\"\n\n````\n\n</div>\n</details>\n\n#### Option 3 - Squigulator signal simulation\n<details><summary>Steps for using the signal simulation software (SAM output, recommended)</summary>\n<div markdown=1>\n\n1. Setup squigulator v0.2.1 or higher as explained in the [documentation](https://github.com/hasindu2008/squigulator).\n\n2. Simulate a signal (remember to provide -a).\n```\nREF=ref.fasta #reference\nREAD=sim.fasta\nALIGNMENT=sorted_sim.bam\nSIGNAL_FILE=sim.blow5\nNUM_READS=50 #number of reads to simulate\nsquigulator -x dna-r10-prom ${REF} -o ${SIGNAL_FILE} -a sim.sam -n ${NUM_READS} && samtools sort sim.sam -o ${ALIGNMENT} && samtools index ${ALIGNMENT}\n```\n\n3. Plot signal-to-reference alignment.\n````\nOUTPUT_DIR=output_dir\nREGION=chr1:6811404-6811443\nsquigualiser plot -f ${REF} -s ${SIGNAL_FILE} -a ${ALIGNMENT} -o ${OUTPUT_DIR} --region ${REGION} --tag_name \"optionB\"\n````\n\n</div>\n</details>\n\n<details><summary>Steps for using the signal simulation software (PAF output)</summary>\n<div markdown=1>\n\n2. Simulate a signal (remember to provide -c and --paf-ref).\n\n````\nREF=ref.fasta                 #reference\nALIGNMENT=sorted_sim.paf.gz   #sorted bgzip compressed PAF file containing signal to reference alignment\nSIGNAL_FILE=sim.blow5         #simulated raw signals\nNUM_READS=50                  #number of reads to simulate\n\nFor DNA\nsquigulator -x dna-r10-prom ${REF} -o ${SIGNAL_FILE} --paf-ref -c sim.paf -n ${NUM_READS}\nsort -k6,6 -k8,8n sim.paf -o sorted_sim.paf\nbgzip sorted_sim.paf\ntabix -0 -b 8 -e 9 -s 6 ${ALIGNMENT}\n\nFor RNA\nsquigulator -x rna-r9-prom ${REF} -o ${SIGNAL_FILE} --paf-ref -c sim.paf -n ${NUM_READS}\nsort -k6,6 -k9,9n sim.paf -o sorted_sim.paf\nbgzip sorted_sim.paf\ntabix -0 -b 9 -e 8 -s 6 ${ALIGNMENT}\n\n````\n\n</div>\n</details>\n\n## Pileup view\n![image](docs/figures/pileup/igv.png)\n![image](docs/figures/pileup/pileup_plot.png)\n\nSimilar to IGV pileup view now you can view the signal pileup view. To create a pileup view the following conditions should be met.\n1. The plot is a signal-to-reference visualisation, not a signal-to-read.\n2. A genomic region should be specified using the argument `--region`\n\nFirst, create an alignment file by following the steps mentioned in [Signal-to-reference visualisation](#signal-to-reference-visualisation)\n\n````\nREGION=chr1:6811011-6811198\nsquigualiser plot_pileup -f ${REF} -s ${SIGNAL_FILE} -a ${ALIGNMENT} -o ${OUTPUT_DIR} --region ${REGION} --tag_name \"pileup\"\n````\n\n[Here](https://hiruna72.github.io/squigualiser/docs/figures/pileup/pileup_testcase-20.1.html) is an example DNA pileup plot created using the [testcase 20.1](test/test_plot_pileup.sh).\n[Here](https://hiruna72.github.io/squigualiser/docs/figures/pileup/pileup_testcase-43.1.html) is an example RNA pileup plot created using the [testcase 43.1](test/test_plot_pileup.sh).\n\n## Plot multiple tracks\n<details><summary>For in depth analysis the user can visualize multiple pileup plots in the same web page.</summary>\n<div markdown=1>\n\n![image](docs/figures/plot_tracks/plot_tracks.png)\n\n* The command `plot_tracks` only supports pileup views and takes a `command_file.txt` file as the input.\n* The input file describes the number of commands, the dimension of each track, and the pileup commands.\n* The following input `command_file.txt` file describes two pileup tracks with 900 and 200 heights for the first and second track respectively.\n* Setting `plot_heights=*` in the `command_file.txt` or providing the argument `--auto_height` will automatically adjust the track height depending on the number of plots in each track.\n* Note that the only difference between the two commands is that the second command has the additional `--plot_reverse` argument to plot reverse mapped reads. And `-o` or `--output_dir` argument is not necessary (ignored).\n\n````\nnum_commands=2\nplot_heights=900,200\nsquigualiser plot_pileup --region chr1:6,811,011-6,811,198 -f genome/hg38noAlt.fa -s reads.blow5 -a eventalign.bam --tag_name \"forward_mapped\"\nsquigualiser plot_pileup --region chr1:6,811,011-6,811,198 -f genome/hg38noAlt.fa -s reads.blow5 -a eventalign.bam --tag_name \"reverse_mapped\" --plot_reverse\n````\n\nThen use the `plot_tracks` command as below (remember to provide `-o`),\n\n````\nCOMMAND_FILE=\"command_file.txt\"\nsquigualiser plot_tracks --shared_x -f ${COMMAND_FILE} -o output_dir\n````\n\n### Plot multiple tracks examples\n1. Forward and reverse mapped reads in separate tracks [link](https://hiruna72.github.io/squigualiser/docs/figures/plot_tracks/plot_tracks_testcase-30.3.html).\n2. Different alignment methods (f5c eventalign and squigualiser's realign) for RNA data in separate tracks [link](https://hiruna72.github.io/squigualiser/docs/figures/plot_tracks/plot_tracks_testcase-30.3.html).\n3. Real and simulated variants in separate tracks [link](https://hiruna72.github.io/squigualiser/docs/figures/variants/chr22/dna_r10.4.1_e8.2_400bps_sup.cfg_evligned_vs_sim.html).\n\n\n</div>\n</details>\n\n## BED annotations\nPlots support BED file annotations. Use argument `--bed [BED FILE]` to provide the bed file to the plot command.\n\n[Here](https://hiruna72.github.io/squigualiser/docs/figures/pileup/pileup_testcase-43.1.html) is an example RNA pileup plot created using the [testcase 43.1](test/test_plot_pileup.sh) that supports bed annotations.\n\n## Squigualiser GUI\n<details><summary>For GUI lovers, plots can be generated using a web application running on localhost (http://localhost:8000/home)</summary>\n<div markdown=1>\n\n![image](docs/figures/squigualiser_website.png)\n\n\n````\npython src/server.py\n````\n\n</div>\n</details>\n\n## Visualisation Enhancements\n\n### Base shift\nUser can shift the base sequence to the left by `n` number of bases by providing the argument `--base_shift -n` to `plot` and `plot_pileup` commands. This is helpful to correct the signal level to the base. A negative `n` value will shift the base sequence to the left.\nHowever, the user is adviced to use `--profile` (documented [here](docs/profiles.md)) which automatically sets the `--base_shift`.\nFor more information please refer [base_shift and eventalignment](docs/base_shift_and_eventalignment.md) and [base_shift and reverse mapped reads](docs/base_shift_of_reverse_mapped_reads.md).\n\n### Signal scaling\nThe commands `plot` and `plot_pileup` can take the argument `--sig_scale`. Provide the argument `--sig_scale znorm` to zscore normalize, `--sig_scale medmad` to median MAD normalize, and `--sig_scale scaledpA` to scale the raw signal to the pore model.\n\n\n## Plot Conventions\n![image](docs/figures/plot_description/plot_description.png)\n* **A** is a descriptive tag name to identify the plot.\n* **B** indicates whether the positive or negative strand was used as the reference to align the signals. For RNA this will be `RNA 3'->5'`. Squigualiser only supports RNA reads mapped to the transcriptome.\n* **C** always indicates the region using the positive strand coordinates, regardless of the forward and reverse mapped plots.\n* **D** indicates the true sequencing direction of the signals.\n\n\n## Calculate alignment statistics\nCalculate basic statistics of signal-to-read/reference alignments.\nCheck [here](docs/commands.md/#metric) for the command.\nCheck [here](docs/different_alignments.md) for an example.\n\n## Notes\n\n1. If your FASTQ file is a multi-line file (not to confuse with multi-read), then install [seqtk](https://github.com/lh3/seqtk) and use `seqtk seq -l0 in.fastq > out.fastq`  to convert multi-line FASTQ to 4-line FASTQ.\n2. The optional argument `--kmer-model KMER_MODEL` can be used to specify a custom k-mer model if you wish.\n3. To plot RNA signal-to-read alignment use the alignment file created using `f5c resquiggle --rna -c ${FASTQ} ${SIGNAL_FILE} -o ${ALIGNMENT}`. Also, provide the argument `--rna` to the visualising command. Currently, there exists no RNA kmer model for r10.4.1 chemistry.\n4. The input alignment format accepted by `squigualiser plot` is explained [here](https://hasindu2008.github.io/f5c/docs/output#resquiggle). This standard format made plotting a lot easier.\n5. The argument `sig_move_offset` is the number of moves `n` to skip in the signal to correct the start of the alignment. This will not skip bases in the fastq sequence. For example, to align the first move with the first kmer `--sig_move_offset 0` should be passed. To align from the second move onwards, `--sig_move_offset 1` should be used.\n6. Pysam does not allow reading SAM/BAM files without a `@SQ` line in the header. Hence, `squigualiser reform` script might error out with `NotImplementedError: can not iterate over samfile without header`. Add a fake `@SQ` header line with a zero length reference as follows,\n   ```\n   echo -e fake_reference'\\t'0 > fake_reference.fa.fai\n   samtools view out.sam -h -t fake_reference.fa.fai -o sq_added_out.sam\n   ```\n7. Squigulator's signal simulation is a good way to understand the nature of the alignments. Please refer to the documentation about [real_vs_simulated_signal](docs/real_vs_simulated_signal.md).\n8. For a explanation of the Guppy move table explanation see please refer [here](docs/move_table.md).\n\n\n## Examples\n\n![image](docs/figures/preview.png)\n\n1. The first read is a signal-to-read alignment using guppy_v.6.3.7 move table annotation ([link](https://hiruna72.github.io/squigualiser/docs/figures/sig_to_read/testcase-1.1.html)).\n2. The second read is a signal-to-read alignment using f5c resquiggle output ([link](https://hiruna72.github.io/squigualiser/docs/figures/sig_to_read/testcase-2.1.html)).\n3. The third read is a signal-to-read alignment using the squigulator's simulated output ([link](https://hiruna72.github.io/squigualiser/docs/figures/sig_to_read/testcase-1.11.html)).\n4. The fourth read (RNA) is a signal-to-read alignment using f5c resquiggle output ([link](https://hiruna72.github.io/squigualiser/docs/figures/sig_to_read/testcase-3.2.html)).\n\n* [This](https://hiruna72.github.io/squigualiser/docs/figures/sig_to_reference/testcase-8.1.html) signal-to-reference alignment aligns a signal to the region `chr1:4270161-4271160`.\n* [This](https://hiruna72.github.io/squigualiser/docs/figures/sig_to_reference/testcase-8.2.html) is the same plot with a fixed base width.\n\nThese examples were generated using the testcases - `1.1, 2.1, 1.11,` and `3.2` respectively in [test_plot_signal_to_read.sh](test/test_plot_signal_to_read.sh).\n\nPlease refer to the example [pipelines](docs/pipeline_basic.md) to learn how to integrate squigualiser into your analysis.\n\n## Acknowledgement\nSome code snippets have been taken from [blue-crab](https://github.com/Psy-Fer/blue-crab), [buttery-eel](https://github.com/Psy-Fer/buttery-eel), [readfish](https://github.com/LooseLab/readfish) and [bonito](https://github.com/nanoporetech/bonito)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Visualise ONT raw signals",
    "version": "0.6.1",
    "project_urls": {
        "Homepage": "https://github.com/hiruna72/squigualiser"
    },
    "split_keywords": [
        "nanopore",
        "slow5",
        "signal"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b939c370eaffe9a54f42c5a8455866e5d2e040de0dda08d254f07b10b391f733",
                "md5": "3bbd07d09d6bb0c71d0cddc7311c32d0",
                "sha256": "17e5f9a68368c3f7fa43d3d23699c1df2d6e85704e08654780fed913fa24161d"
            },
            "downloads": -1,
            "filename": "squigualiser-0.6.1.tar.gz",
            "has_sig": false,
            "md5_digest": "3bbd07d09d6bb0c71d0cddc7311c32d0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 182729,
            "upload_time": "2024-03-12T10:23:40",
            "upload_time_iso_8601": "2024-03-12T10:23:40.693160Z",
            "url": "https://files.pythonhosted.org/packages/b9/39/c370eaffe9a54f42c5a8455866e5d2e040de0dda08d254f07b10b391f733/squigualiser-0.6.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-12 10:23:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "hiruna72",
    "github_project": "squigualiser",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "bokeh",
            "specs": [
                [
                    "==",
                    "3.1.1"
                ]
            ]
        },
        {
            "name": "numpy",
            "specs": []
        },
        {
            "name": "pyslow5",
            "specs": []
        },
        {
            "name": "readpaf",
            "specs": []
        },
        {
            "name": "pyfaidx",
            "specs": []
        },
        {
            "name": "pyfastx",
            "specs": []
        },
        {
            "name": "pysam",
            "specs": []
        },
        {
            "name": "matplotlib",
            "specs": [
                [
                    "==",
                    "3.7"
                ]
            ]
        },
        {
            "name": "seaborn",
            "specs": []
        },
        {
            "name": "selenium",
            "specs": []
        }
    ],
    "lcname": "squigualiser"
}
        
Elapsed time: 0.20083s