Code Monkey home page Code Monkey logo

moddotplot's Introduction

About

Mod.Plot is a novel dot plot visualization tool used to view tandem repeats, similar to StainedGlass. Mod.Plot utilizes modimizers to compute the Jaccard coefficient in order to estimate sequence identity. This significantly reduces the computational time required to produce these plots, enough to update in real time!


Installation

git clone https://github.com/marbl/ModDotPlot.git
cd ModDotPlot

Although optional, it's recommended to setup a virtual environment before using Mod.Plot:

python -m venv venv
source venv/bin/activate

Once activated, you can install the required dependencies:

python setup.py install

Usage

ModDotPlot requires at least one sequence in FASTA format:

moddotplot -i INPUT_FASTA_FILE(S)

Standard arguments

-k / --kmer <int>

K-mer size to use. This should be large enough to distinguish unique k-mers with enough specificity, but not too large that sensitivity is removed. Must be 32 or less due to integer bit packing constraints. Default: 21.

-s / --sparsity <int>

This is the value used selecting modimizers using 0 mod s, an inverse of the selected k-mer density. A lower value will be more accurate, at the expense of longer plotting time & longer refresh rates in interactive mode. The default is s = 2/Mbp of sequence for fast performance without compromising accuracy. For example, on a human Y chromosome ~ 64Mbp, Mod.Plot will set s = 128. Interactive mode will automatically round up to the nearest even integer.

-o / --output <string>

Name of output bed file & plots. Default is <INPUT_FASTA_FILE>_<SEQUENCE_HEADER>.

--identity <int>

Identity cutoff threshold. Must be greater than 50, less than 100.

-nc / --non-canonical

When counting k-mers, both forward and reverse complement are considered, with the smaller hash value selected. Using -nc will force selection of the forward strand only. This is not recommended for most applications.


Static plots

By default, Mod.Plot will output a paired end bed file, along with plots for each sequence in each FASTA file as an image file (.png).

--no-bed

Skip output of bed file.

--no-plot

Skip output of image files.

--bin-freq

By default, histograms are evenly spaced based on the number of colors and the identity threshold. Select this argument to bin based on the frequency of observed identity values.

--num_colors <int>

Set the number of colors used in the plot. Default: 11.

Although deprecated, there is an R script you can use to plot directly from a bed file. ggplot2 and cowplot are required. You can call this Rscript through the following:

Rscript moddotplot/plot.r -b <BED_FILE> -p <OUTPUT_FOLDER>

With --bin-freq being an optional argument to specify histogram binning by frequency, as noted above.


Interactive Mode

To run Mod.Plot in interactive mode, use:

moddotplot -i INPUT_FASTA_FILE(S) --interactive

This will launch a Dash application on your machine's localhost. Open any web browser and go to http://127.0.0.1:<PORT_NUMBER> to view the interactive plot. The default port number used by Dash is 8050, but this can be customized using the --port command.

Running interactive mode on an HPC environment can be accomplished through the use of port forwarding. On your remote server, run Mod.Plot as normal:

moddotplot -i INPUT_FASTA_FILE(S) --interactive --port HPC_PORT_NUMBER

Then on your local machine, set up port forwarding run:

ssh -N -f -L LOCAL_PORT_NUMBER:127.0.0.1:HPC_PORT_NUMBER [email protected]

You should now be able to view interactive mode using http://127.0.0.1:<LOCAL_PORT_NUMBER>. Note that your own HPC environment may have specific instructions and/or restrictions for setting up port forwarding.


Sample run - static plots

$ moddotplot -i test/Chr1_cen.fa     

 _______  _______  ______          _______  _        _______ _________
(       )(  ___  )(  __  \        (  ____ )( \      (  ___  )\__   __/
| () () || (   ) || (  \  )       | (    )|| (      | (   ) |   ) (   
| || || || |   | || |   ) |       | (____)|| |      | |   | |   | |   
| |(_)| || |   | || |   | |       |  _____)| |      | |   | |   | |   
| |   | || |   | || |   ) |       | (      | |      | |   | |   | |   
| )   ( || (___) || (__/  )   _   | )      | (____/\| (___) |   | |   
|/     \|(_______)(______/   (_)  |/       (_______/(_______)   )_(   

Retrieving k-mers from Chr1_cen.... 

Chr1_cen k-mers retrieved! 

Computing modimizers for Chr1_cen... 

Modimizers done! 

Creating coordinates...

Coordinates done! 

Computing identity... 

Identity computed! Saved to Chr1_cen.bed 

Creating plots... 

Plots created! 

Saving plots to Chr1_cen.pdf... 

Chr1_cen.pdf saved sucessfully. Thanks for using Mod.Plot!


Sample run - interactive mode

$ moddotplot -i test/Chr1_cen.fa -s 32 --id 85 --interactive   

 _______  _______  ______          _______  _        _______ _________
(       )(  ___  )(  __  \        (  ____ )( \      (  ___  )\__   __/
| () () || (   ) || (  \  )       | (    )|| (      | (   ) |   ) (   
| || || || |   | || |   ) |       | (____)|| |      | |   | |   | |   
| |(_)| || |   | || |   | |       |  _____)| |      | |   | |   | |   
| |   | || |   | || |   ) |       | (      | |      | |   | |   | |   
| )   ( || (___) || (__/  )   _   | )      | (____/\| (___) |   | |   
|/     \|(_______)(______/   (_)  |/       (_______/(_______)   )_(   


Retrieving k-mers from Chr1:14000000-18000000.... 

Chr1:14000000-18000000 k-mers retrieved! 

Dash is running on http://127.0.0.1:8050/

 * Serving Flask app 'moddotplot.interactive'

The plotly plot can be navigated using the zoom (magnifying glass) and pan (hand) icons. The current plot can be downloaded as an image with the camera icon. Depending on sparsity value, plots may need some time to refresh. The plot can be reset by double-clicking or selecting the home button. Set the lock resolution button to prevent auto-scaling using modimizers.


Questions

For bug reports or general usage questions, please raise a GitHub issue, or email asweeten at nih dot gov


Cite

Publication in progress!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.