Source code for cnvlib.reports

"""Supporting functions for the text/tabular-reporting commands.

Namely: breaks, gainloss.
"""
from __future__ import absolute_import, division
from builtins import str
import collections
import math
import sys

import numpy as np

from . import metrics, params

iteritems = (dict.iteritems if sys.version_info[0] < 3 else dict.items)


# _____________________________________________________________________________
# breaks

[docs]def get_gene_intervals(all_probes, ignore=params.IGNORE_GENE_NAMES): """Tally genomic locations of each targeted gene. Return a dict of chromosomes to a list of tuples: (gene name, start, end). """ ignore += ("Background",) # Tally the start & end points for each targeted gene; group by chromosome gene_probes = collections.defaultdict(lambda: collections.defaultdict(list)) for row in all_probes: gname = str(row.gene) if gname not in ignore: gene_probes[row.chromosome][gname].append(row) # Condense into a single interval for each gene intervals = collections.defaultdict(list) for chrom, gp in iteritems(gene_probes): for gene, probes in iteritems(gp): starts = sorted(row.start for row in probes) end = max(row.end for row in probes) intervals[chrom].append((gene, starts, end)) intervals[chrom].sort(key=lambda gse: gse[1]) return intervals
[docs]def get_breakpoints(intervals, segments, min_probes): """Identify CBS segment breaks within the targeted intervals.""" breakpoints = [] for i, curr_row in enumerate(segments[:-1]): curr_chrom = curr_row.chromosome curr_end = curr_row.end next_row = segments[i + 1] # Skip if this segment is the last (or only) one on this chromosome if next_row.chromosome != curr_chrom: continue for gname, gstarts, gend in intervals[curr_chrom]: if gstarts[0] < curr_end < gend: probes_left = sum(s < curr_end for s in gstarts) probes_right = sum(s >= curr_end for s in gstarts) if probes_left >= min_probes and probes_right >= min_probes: breakpoints.append( (gname, curr_chrom, int(math.ceil(curr_end)), next_row.log2 - curr_row.log2, probes_left, probes_right)) breakpoints.sort(key=lambda row: (min(row[4], row[5]), abs(row[3])), reverse=True) return breakpoints
# _____________________________________________________________________________ # gainloss
[docs]def gainloss_by_gene(cnarr, threshold, skip_low=False): """Identify genes where average bin copy ratio value exceeds `threshold`. NB: Must shift sex-chromosome values beforehand with shift_xx, otherwise all chrX/chrY genes may be reported gained/lost. """ for row in group_by_genes(cnarr, skip_low): if abs(row.log2) >= threshold and row.gene: yield row
[docs]def gainloss_by_segment(cnarr, segments, threshold, skip_low=False): """Identify genes where segmented copy ratio exceeds `threshold`. NB: Must shift sex-chromosome values beforehand with shift_xx, otherwise all chrX/chrY genes may be reported gained/lost. """ extra_cols = [col for col in segments.data.columns if col not in cnarr.data.columns] for colname in extra_cols: cnarr[colname] = np.nan for segment, subprobes in cnarr.by_ranges(segments): if abs(segment.log2) >= threshold: for row in group_by_genes(subprobes, skip_low): row["log2"] = segment.log2 for colname in extra_cols: row[colname] = getattr(segment, colname) yield row
# TODO consolidate with CNA.squash_genes
[docs]def group_by_genes(cnarr, skip_low): """Group probe and coverage data by gene. Return an iterable of genes, in chromosomal order, associated with their location and coverages: [(gene, chrom, start, end, [coverages]), ...] """ for gene, rows in cnarr.by_gene(): if not rows or gene in ("Background", '', np.nan): continue segmean = metrics.segment_mean(rows, skip_low) if segmean is None: continue outrow = rows[0].copy() outrow["end"] = rows.end.iat[-1] outrow["gene"] = gene outrow["log2"] = segmean outrow["probes"] = len(rows) if "weight" in rows: outrow["weight"] = rows["weight"].sum() yield outrow