Skip to main content

Predict ancestral sequence of fungal repeat elements by correcting for RIP-like mutations in multi-sequence DNA alignments.

Project description

License: GPL v3 PyPI version codecov BioConda Install

██████╗ ███████╗██████╗ ██╗██████╗ ██████╗
██╔══██╗██╔════╝██╔══██╗██║██╔══██╗╚════██╗
██║  ██║█████╗  ██████╔╝██║██████╔╝ █████╔╝
██║  ██║██╔══╝  ██╔══██╗██║██╔═══╝ ██╔═══╝
██████╔╝███████╗██║  ██║██║██║     ███████╗
╚═════╝ ╚══════╝╚═╝  ╚═╝╚═╝╚═╝     ╚══════╝

deRIP2 scans aligned sequences for evidence of un-RIP'd precursor states, allowing for improved RIP-correction across large repeat families in which members are independently RIP'd.

Use deRIP2 to:

  • Predict ancestral fungal transposon sequences by correcting for RIP-like mutations (CpA --> TpA) and cytosine deamination (C --> T) events.

  • Mask RIP or deamination events as ambiguous bases to remove RIP signal from phylogenetic analyses.

  • Analyse mutation spectra in aligned sequences for evidence of RIP or other mutational processes.

Table of contents

Installation

Install from PyPi.

pip install derip2

Install from Bioconda.

#iqtree is an optional dependency for 'derip2-spectra'
conda install -c bioconda derip2 iqtree

Pip install latest development version from GitHub.

pip install git+https://github.com/Adamtaranto/deRIP2.git

Example usage

See the DeRIP2 tutorials pages for full usage documentation.

Basic usage with masking

The --mask option outputs an alignment with all RIP-like C/T positions masked as 'Y'. Use this to generate phylogenies free of RIP influence.

For aligned sequences in 'mintest.fa':

  • Any column with >= 70% gap positions will not be corrected and a gap inserted in corrected sequence.
  • Bases in column must be >= 80% C/T or G/A
  • At least 50% bases in a column must be in RIP dinucleotide context (C/T as CpA / TpA) for correction.
  • Default: Inherit all remaining uncorrected positions from the least RIP'd sequence.
  • Mask all substrate and product motifs from corrected columns as ambiguous bases (i.e. CpA to TpA --> YpA)
derip2 -i tests/data/mintest.fa \
  --max-gaps 0.7 \
  --max-snp-noise 0.2 \
  --min-rip-like 0.5 \
  --mask \
  -d results \
  --prefix derip_output

Output:

  • results/derip_output.fasta - Corrected sequence
  • results/derip_output_masked_alignment.fasta - Alignment with masked corrections

With vizualization

The --plot option will create a visualization of the alignment with RIP markup. The --plot-rip-type option can be used to specify the type of RIP events to be displayed in the alignment visualization product, substrate, or both.

derip2 -i tests/data/mintest.fa \
  --max-gaps 0.7 \
  --max-snp-noise 0.2 \
  --min-rip-like 0.5 \
  --plot \
  --plot-rip-type both \
  -d results \
  --prefix derip_output

Output:

  • results/derip_output.fasta - Corrected sequence
  • results/derip_output_masked_alignment.fasta - Alignment with masked corrections
  • results/derip_output_visualization.png - Visualization of the alignment with RIP markup

Visualization of the alignment with RIP markup

Using maximum GC content for filling

By default uncorrected positions in the output sequence are filled from the sequence with the lowest RIP count. If the --fill-max-gc option is set, remaining positions are filled from the sequence with the highest G/C content sequence instead.

derip2 -i tests/data/mintest.fa \
  --max-gaps 0.7 \
  --max-snp-noise 0.2 \
  --min-rip-like 0.5 \
  --fill-max-gc \
  -d results \
  --prefix derip_gc_filled

Alternatively, the --fill-index option can be used to force selection of alignment row to fill uncorrected positions from by row index number (indexed from 0). Note: This will override the --fill-max-gc option.

Correcting all deamination events

If the --reaminate option is set, all deamination events will be corrected, regardless of RIP context.

--plot-rip-type product is used to highlight the product of RIP events in the visualization. Non-RIP deamination events are also highlighted.

derip2 -i tests/data/mintest.fa \
  --max-gaps 0.7 \
  --reaminate \
  -d results \
  --plot \
  --plot-rip-type product \
  --prefix derip_reaminated

Output:

  • results/derip_reaminated.fasta - Corrected sequence using highest GC content sequence for filling
  • results/derip_reaminated_alignment.fasta - Alignment with corrected sequence appended
  • results/derip_reaminated_vizualization.png - Visualization of the alignment with RIP markup

Visualization of the alignment with RIP markup

Mutation spectra (derip2-spectra)

derip2-spectra builds trinucleotide-context SBS-96 and SBS-192 mutation spectra (SigProfiler-compliant matrices plus plots), so RIP (a C>T peak in CpA context) can be told apart from other cytosine-deamination processes. It offers a fast tree-free baseline and a phylogenetic path (IQ-TREE ancestral reconstruction) that counts recurrent deamination correctly.

# Tree-free baseline (no external tools)
derip2-spectra -i tests/data/mintest.fa -d results -p family

# CHG-aware downstream-triplet context: classify each substitution by the mutated
# base plus its two downstream bases (motif ref-d1-d2), so methylation-driven C>T
# in the fungal CHG context becomes visible (writes family.SBSdownstream.txt).
derip2-spectra -i family.fasta --context downstream -d results -p family

SBS-96 mutation spectrum of a RIP-affected transposon

Downstream-triplet spectrum of a RIP-affected transposon

See the Mutation Spectra tutorial for the full walkthrough, including supplying your own phylogeny and per-group spectra.

Standard options

Usage: derip2 [OPTIONS]

  Predict ancestral sequence of fungal repeat elements by correcting for RIP-
  like mutations or cytosine deamination in multi-sequence DNA alignments.
  Optionally, mask mutated positions in alignment.

Options:
  --version                       Show the version and exit.
  -i, --input TEXT                Multiple sequence alignment.  [required]
  -g, --max-gaps FLOAT            Maximum proportion of gapped positions in
                                  column to be tolerated before forcing a gap
                                  in final deRIP sequence.  [default: 0.7]
  -a, --reaminate                 Correct all deamination events independent
                                  of RIP context.
  --max-snp-noise FLOAT           Maximum proportion of conflicting SNPs
                                  permitted before excluding column from
                                  RIP/deamination assessment. i.e. By default
                                  a column with >= 0.5 'C/T' bases will have
                                  'TpA' positions logged as RIP events.
                                  [default: 0.5]
  --min-rip-like FLOAT            Minimum proportion of deamination events in
                                  RIP context (5' CpA 3' --> 5' TpA 3')
                                  required for column to deRIP'd in final
                                  sequence. Note: If 'reaminate' option is set
                                  all deamination events will be corrected.
                                  [default: 0.1]
  --fill-max-gc                   By default uncorrected positions in the
                                  output sequence are filled from the sequence
                                  with the lowest RIP count. If this option is
                                  set remaining positions are filled from the
                                  sequence with the highest G/C content.
  --fill-index INTEGER            Force selection of alignment row to fill
                                  uncorrected positions from by row index
                                  number (indexed from 0). Note: Will override
                                  '--fill-max-gc' option.
  --mask                          Mask corrected positions in alignment with
                                  degenerate IUPAC codes.
  --no-append                     If set, do not append deRIP'd sequence to
                                  output alignment.
  -d, --out-dir TEXT              Directory for deRIP'd sequence files to be
                                  written to.
  -p, --prefix TEXT               Prefix for output files. Output files will
                                  be named prefix.fasta,
                                  prefix_alignment.fasta, etc.  [default:
                                  deRIPseq]
  --plot                          Create a visualization of the alignment with
                                  RIP markup.
  --plot-rip-type [both|product|substrate]
                                  Specify the type of RIP events to be
                                  displayed in the alignment visualization.
                                  [default: both]
  --plot-strand-bias              Create a diverging stacked-bar chart of per-
                                  column RIP strand bias.
  --strand-bias-scale [column|alignment|counts]
                                  Bar height normalisation: each column to its
                                  own depth, to the number of sequences (so
                                  gappy columns are short), or raw counts.
                                  [default: column]
  --strand-bias-xaxis [none|logo|derip]
                                  Draw a sequence logo or the deRIP'd
                                  consensus along the zero line.  [default:
                                  none]
  --strand-bias-columns [rip|substrate|all]
                                  Which positions are lettered along the zero
                                  line: RIP-like columns and their
                                  dinucleotide partners, untouched substrate
                                  columns and their partners, or every
                                  position. Every column is drawn as a bar
                                  regardless. Only has an effect with
                                  --strand-bias-xaxis logo or derip.
                                  [default: all]
  --strand-bias-stack [signal|product|all]
                                  Which bases each bar is made of: the RIP
                                  product and its unmutated substrate, the
                                  product alone, or every base with the
                                  remainder drawn translucent. Bars are never
                                  rescaled, so the missing height shows what
                                  was excluded.  [default: signal]
  --rsi-ambiguous [split|exclude|weight|both]
                                  How to attribute a TA dinucleotide that
                                  could have arisen from RIP on either strand
                                  when calculating RSI.  [default: split]
  --sort-by-rsi                   Sort the output alignment from most forward-
                                  to most reverse-strand RIP.
  --stats-out                     Write the per-sequence statistics table to
                                  prefix_stats.tsv.
  --html-report                   Write a self-contained HTML report to
                                  prefix_report.html.
  --loglevel [DEBUG|INFO|WARNING|ERROR|CRITICAL]
                                  Set logging level.  [default: INFO]
  --logfile TEXT                  Log file path.
  -h, --help                      Show this message and exit.

Spectra Options

 Usage: derip2-spectra [OPTIONS]

  Build SBS-96 and SBS-192 trinucleotide mutation spectra from a DNA alignment
  by calling substitutions against the deRIP'd ancestral consensus, or via IQ-
  TREE ancestral reconstruction (--method phylo).

Options:
  --version                       Show the version and exit.
  -i, --input TEXT                Multiple sequence alignment (FASTA,
                                  optionally gzipped).  [required]
  -d, --out-dir TEXT              Directory for spectrum output files.
  -p, --prefix TEXT               Prefix for output files.  [default:
                                  deRIPspectra]
  --ancestor TEXT                 Optional FASTA of a hypothetical ancestor to
                                  call against instead of the reconstructed
                                  deRIP consensus. Must be the same length as
                                  the alignment.
  --reference-tag TEXT            Exact sequence ID of a pre-computed
                                  ancestral reference already present in the
                                  input alignment (e.g. a deRIP consensus you
                                  appended with derip2). When found (baseline
                                  method), that row is used as the ancestor
                                  and excluded from the counted sequences
                                  instead of re-running deRIP. Overridden by
                                  --ancestor.  [default: deRIPseq]
  --context [trinucleotide|downstream]
                                  Sequence context to classify substitutions
                                  by: the 5'/3' trinucleotide flanks
                                  (SBS-96/192), or the mutated base plus its
                                  two downstream bases (pyrimidine-folded
                                  96-channel, CHG-aware). The downstream
                                  context produces a single folded matrix, so
                                  --sbs 192/both do not apply.  [default:
                                  trinucleotide]
  --sbs [96|192|both]             Which SBS matrices/plots to produce
                                  (trinucleotide context only).  [default:
                                  both]
  --partition-by [none|row|clade]
                                  Split spectra into one pooled sample, one
                                  per sequence (baseline) or one per root
                                  clade (phylo).  [default: none]
  --groups TEXT                   Path to a two-column (name, group) file
                                  mapping sequences to group labels (e.g.
                                  species). Reports one spectrum per group;
                                  works for both methods and tolerates IQ-TREE
                                  name reformatting. Overrides --partition-by.
  --percentage                    Plot spectra as a percentage of each sample
                                  total.
  --min-hits INTEGER              Minimum independent hits for a site in the
                                  homoplasy report.  [default: 2]
  --no-plots                      Write matrices and tables only; skip
                                  figures.
  --method [baseline|phylo]       Spectrum method: tree-free single-reference
                                  baseline, or phylogenetic branch-by-branch
                                  calling via IQ-TREE ancestral
                                  reconstruction.  [default: baseline]
  --tree TEXT                     Fixed Newick tree for the phylo path; IQ-
                                  TREE reconstructs ancestral states on this
                                  topology instead of inferring a new tree.
  --iqtree-model TEXT             Substitution model passed to IQ-TREE (-m)
                                  for the phylo path.  [default: MFP]
  --threads TEXT                  IQ-TREE thread count (-T). AUTO benchmarks
                                  the best value; pass an integer to skip the
                                  benchmark (faster on small alignments).
                                  [default: AUTO]
  --rooting [midpoint|outgroup|none]
                                  How to root the tree for the phylo path
                                  (sets substitution direction).  [default:
                                  midpoint]
  --outgroup TEXT                 Outgroup tip name(s) for --rooting outgroup;
                                  comma-separate a clade.
  --min-prob FLOAT                Drop phylo events whose parent x child
                                  ancestral posterior is below this threshold.
                                  [default: 0.0]
  --root-sensitivity              Also report the fraction of edges whose
                                  direction flips under midpoint rooting
                                  (phylo path).
  -g, --max-gaps FLOAT            Maximum gap proportion in a column before it
                                  is gapped in the consensus.  [default: 0.7]
  -a, --reaminate                 Correct all deamination events regardless of
                                  RIP context when building the ancestor.
  --max-snp-noise FLOAT           Maximum proportion of conflicting SNPs
                                  before a column is excluded from RIP
                                  assessment.  [default: 0.5]
  --min-rip-like FLOAT            Minimum proportion of RIP-context
                                  deamination for a column to be corrected.
                                  [default: 0.1]
  --fill-max-gc                   Fill uncorrected positions from the highest-
                                  GC sequence rather than the least-RIP'd one.
  --fill-index INTEGER            Force the fill row by index (overrides
                                  --fill-max-gc).
  --loglevel [DEBUG|INFO|WARNING|ERROR|CRITICAL]
                                  Set logging level.  [default: INFO]
  --logfile TEXT                  Log file path.
  -h, --help                      Show this message and exit.

Algorithm overview

For each column in input alignment:

  • Check if number of gapped rows is greater than max gap proportion. If true, then a gap is added to the output sequence.
  • Set invariant column values in output sequence.
  • If at least X proportion of bases are C/T or G/A (i.e. max-snp-noise = 0.4, then at least 0.6 of positions in column must be C/T or G/A).
  • If reaminate option is set then revert T-->C or A-->G.
  • If reaminate is not set then check for number of positions in RIP dinucleotide context (C/TpA or TpG/A).
  • If proportion of positions in column in RIP-like context => min-rip-like threshold, AND at least one substrate and one product motif (i.e. CpA and TpA) is present, perform RIP correction in output sequence.
  • For all remaining positions in output sequence (not filled by gap, reaminate, or RIP-correction) inherit sequence from input sequence with the fewest observed RIP events (or greatest GC content if RIP is not detected or multiple sequences sharing min-RIP count).

License

Software provided under GPL-3 license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

derip2-0.5.1.tar.gz (3.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

derip2-0.5.1-py3-none-any.whl (149.5 kB view details)

Uploaded Python 3

File details

Details for the file derip2-0.5.1.tar.gz.

File metadata

  • Download URL: derip2-0.5.1.tar.gz
  • Upload date:
  • Size: 3.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.17.1 {"ci":true,"cpu":"x86_64","distro":{"id":"noble","libc":{"lib":"glibc","version":"2.39"},"name":"Ubuntu","version":"24.04"},"implementation":{"name":"CPython","version":"3.14.6"},"installer":{"name":"hatch","version":"1.17.1"},"openssl_version":"OpenSSL 3.0.13 30 Jan 2024","python":"3.14.6","system":{"name":"Linux","release":"6.17.0-1020-azure"}} HTTPX2/2.7.0

File hashes

Hashes for derip2-0.5.1.tar.gz
Algorithm Hash digest
SHA256 12fe00445adf2e5415a7c21cc76ba6bff2b87cb778ffcec78c0113fac4d841ec
MD5 a468c8c8a2ad0f53b836ac8e59e1b423
BLAKE2b-256 c0c92c3a3a8cfc1392107ac17f8ace9baa7b80c1ad78bc965831e54e0f054ae1

See more details on using hashes here.

File details

Details for the file derip2-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: derip2-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 149.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.17.1 {"ci":true,"cpu":"x86_64","distro":{"id":"noble","libc":{"lib":"glibc","version":"2.39"},"name":"Ubuntu","version":"24.04"},"implementation":{"name":"CPython","version":"3.14.6"},"installer":{"name":"hatch","version":"1.17.1"},"openssl_version":"OpenSSL 3.0.13 30 Jan 2024","python":"3.14.6","system":{"name":"Linux","release":"6.17.0-1020-azure"}} HTTPX2/2.7.0

File hashes

Hashes for derip2-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 798d91ce490363c7e6f359a5610f730d805c4c3646f7d82267efdb47c818ed24
MD5 3532e5ba5f9e8c57dd18937d07d98055
BLAKE2b-256 1d327678c3a8cf1443e79cfcc5563be01eecf4b955eeda920a81e755fa3af056

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page