Extract terminal repeats from retrotransposons (LTRs) or DNA transposons (TIRs). Returns compontent segments of the element for use with transposon mapping tools.
Optionally, tsplit TIR can also compose synthetic MITES from complete DNA transposons.
tSplit attempts to identify terminal repeats in transposable elements by
first aligning each element to itself using blastn or nucmer, and then applying a set of
tuneable heuristics to select an alignment pair most likely to represent an LTR or TIR, as follows:
- Exclude all diagonal/self-matches
- If
tsplit LTR: Retain only alignment pairs on the same strand (tandem repeats) - If
tsplit TIR: Retain only alignment pairs on opposite strands (inverse repeats) - Retain pairs for which the 5' match begins within x bases of element start and whose 3' match ends within x bases of element end
- If multiple candidates remain select alignment pair with largest internal segment (i.e. closest to element ends)
Requirements:
Installation options:
- Install from PyPi. This will get you the latest stable release.
pip install tsplit- Pip install directly from this git repository.
This is the best way to ensure you have the latest development version.
pip install git+https://github.com/Adamtaranto/tSplit.git- Clone from this repository and install as a local Python package.
Do this if you want to edit the code.
git clone https://github.com/Adamtaranto/tSplit.git && cd tSplit && pip install -e '.[dev]'tSplit can be run in two modes: tsplit LTR and tsplit TIR, for extracting long terminal repeats or terminal inverted repeats, respectively.
Options are the same for each.
For each element in TIR_element.fa split into internal and external (TIR) segments.
Split segments will be written to TIR_split_tsplit_output.fasta with suffix "_I" for internal or "_TIR" for external segments.
TIRs must be at least 10bp in length and share 80% identity and occur within 10bp of each end of the input element.
Additionally, synthetic MITEs will be constructed by concatenation of left and right TIRs, with internal segments excised.
tsplit TIR -i tests/data/TIR_element.fa -p TIR_split --makemites --keeptemp
# Equivalet to defaults
tsplit TIR -i tests/data/TIR_element.fa -p TIR_split --maxdist 10 --minid 80.0 --minterm 10 --method blastn --splitmode split --makemites --keeptempOutput: TIR_split_tsplit_output.fasta
For each element in LTR_retrotransposon.fa split into internal and external segments.
Split segments will be written to LTR_split_tsplit_output.fasta with suffix "_I" for internal or "_LTR" for external segments.
LTRs must be at least 10bp in length and share 80% identity and occur within 10bp of each end of the input element.
tsplit LTR -i tests/data/LTR_retrotransposon.fa -p LTR_splitOutput: LTR_split_tsplit_output.fasta
Software provided under GPL-3 license.