Logomaker.jl Documentation
A Julia wrapper of the Logomaker Python package to plot sequence logos.
Installation
The package is registered and can be installed with:
import Pkg
Pkg.add("Logomaker")Quick usage
import Logomaker
chars = collect("ACGU-")
weights = rand(length(chars), 20)
logo = Logomaker.Logo(weights, chars)
logo.figWhere to go next
- See Reference for API docstrings.
- See Examples → RFAM in the docs sidebar for a full workflow.
- Source code: https://github.com/cossio/Logomaker.jl.