{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "Arc plots\n", "=========\n", "\n", "Arc plots are a flexible plot type for comparing multiple layers of RNA data\n", "simultaneously. Sequence annotations, per-nucleotide data, inter-nucleotide\n", "data, and secondary structures can all be displayed on arc plots.\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import rnavigate as rnav\n", "from rnavigate.examples import tpp\n", "\n", "plot = rnav.plot_arcs(\n", " samples=[tpp],\n", " sequence=\"ss\",\n", " structure=\"ss\",\n", " profile=\"dmsmap\",\n", " profile_scale_factor=5,\n", ")\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "help(rnav.plot_arcs)" ] } ], "metadata": { "kernelspec": { "display_name": "RNAvigate", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.2" } }, "nbformat": 4, "nbformat_minor": 2 }