Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
79b1aa6
Fix dead demo dataset download link in tutorial notebooks (#21)
YalanBi Aug 5, 2026
ee1f6e3
Fix trid vs transcript_id filter variable in CLI tutorial (#19)
YalanBi Aug 5, 2026
530ecb6
Fix stale sum_tpm cached column labels to sum_cpm
YalanBi Aug 5, 2026
e48f2d1
Add minimap2 protocol-specific parameters to prepare-data tutorial
YalanBi Aug 5, 2026
6092a23
Shrink IsoTools2 logo in README
YalanBi Aug 5, 2026
d864a5d
Correct stale tabix requirement and mention infer_genes in import tut…
YalanBi Aug 5, 2026
68638ba
Remove stale .tbi index requirement from CLI and reconstruction tutor…
YalanBi Aug 5, 2026
ebbe2c2
Rename isoseq variable to transcriptome across tutorial notebooks
YalanBi Aug 5, 2026
4c851ba
Merge master (splice_graph fix, 2.1.4) into docs/tutorial-update
YalanBi Aug 5, 2026
7c39928
Suppress noisy progress bars and ambiguous-gene-name warnings in tuto…
YalanBi Aug 6, 2026
65ae7a1
Shrink IsoTools2 logo further to 150px
YalanBi Aug 6, 2026
5c8603c
Add gene model characteristics tutorial, restructure filtering tutorial
YalanBi Aug 6, 2026
dcf712f
Extract SQANTI_PALETTE as a shared constant.
YalanBi Aug 6, 2026
9972d37
Expand splicing coordination section in 09_diff_splice.ipynb
YalanBi Aug 6, 2026
9680e61
Move SQANTI3 import section from 05_qc.ipynb to 06_filtering.ipynb
YalanBi Aug 6, 2026
9654cd0
Add Conclusion sections to tutorials, for consistency with 07
YalanBi Aug 6, 2026
9b33e97
Fix broken add_filter() call and update key features in quickstart.rst
YalanBi Aug 6, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![PyPI](https://img.shields.io/pypi/v/isotools.svg)](https://pypi.org/project/isotools)
[![PyPIDownloadsTotal](https://pepy.tech/badge/isotools)](https://pepy.tech/project/isotools)
[![Licence: MIT](https://img.shields.io/badge/license-MIT-blue)](https://github.com/HerwigLab/IsoTools2/blob/master/LICENSE.txt)
<img align="right" src="https://raw.githubusercontent.com/HerwigLab/IsoTools2/master/IsoToolsLogo.png" alt="IsoTools Logo" width="300" />
<img align="right" src="https://raw.githubusercontent.com/HerwigLab/IsoTools2/master/IsoToolsLogo.png" alt="IsoTools Logo" width="150" />

# IsoTools

Expand Down
9 changes: 7 additions & 2 deletions docs/notebooks/01_prepare_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"* Corresponding reference genome sequence in fasta format (and corresponding index)\n",
"* Aligned LRTS data in bam format (and corresponding index)\n",
"\n",
"In this tutorial, we provide guidelines about how to prepare aligned LRTS read files (.bam) and the reference genome and annotation data. **Subsequent tutorials on IsoTools workflow do not depend on executing these steps**. We have compiled a small pre-processed demonstration data set, based on a subset of the genome ([download link](https://nc.molgen.mpg.de/cloud/index.php/s/zYe7g6qnyxGDxRd)). Below, we document how this example data set was produced. \n",
"In this tutorial, we provide guidelines about how to prepare aligned LRTS read files (.bam) and the reference genome and annotation data. **Subsequent tutorials on IsoTools workflow do not depend on executing these steps**. We have compiled a small pre-processed demonstration data set, based on a subset of the genome ([download link](https://nc.molgen.mpg.de/cloud/index.php/s/Mf2zMePGBzFWFk8)). Below, we document how this example data set was produced. \n",
"\n",
"In order to prepare the files for IsoTools analysis, the following tools are needed:\n",
"\n",
Expand Down Expand Up @@ -369,6 +369,11 @@
"Please note that when following the PacBio IsoSeq pipeline, resulting sequencing reads are stored in unaligned `bam` files, which need to be formatted in `fastq` before alignment with minimap2. The following command uses the recommended parameters for PacBio isoseq reads (with additional `--MD` for mutation information, which is optional), and sorts the resulting alignment by genomic position. For more details, please refer to the [IsoSeq documentation](https://isoseq.how/)."
]
},
{
"cell_type": "markdown",
"source": "IsoTools supports both PacBio and Oxford Nanopore (ONT) long-read data, including ONT direct RNA sequencing (dRNA). The recommended minimap2 parameters depend on the sequencing protocol:\n\n| Protocol | minimap2 parameters |\n| --- | --- |\n| cDNA_PacBio | `-ax splice:hq -uf` |\n| cDNA_ONT | `-ax splice` |\n| dRNA_ONT | `-ax splice -uf -k14` |\n\nThe command below uses the PacBio Isoseq parameters as an example; substitute the parameters above for ONT cDNA or dRNA data.",
"metadata": {}
},
{
"cell_type": "code",
"execution_count": null,
Expand Down Expand Up @@ -561,4 +566,4 @@
},
"nbformat": 4,
"nbformat_minor": 4
}
}
580 changes: 488 additions & 92 deletions docs/notebooks/02_api_vs_cli.ipynb

Large diffs are not rendered by default.

Loading