malariagen_data.ag3.Ag3.plot_diplotype_clustering_advanced#

Ag3.plot_diplotype_clustering_advanced(region: str | Region | Mapping | List[str | Region | Mapping] | Tuple[str | Region | Mapping, ...], heterozygosity: bool = True, heterozygosity_colorscale: str | List[str] | None = 'Greys', snp_transcript: str | None = None, snp_colorscale: str | List[str] | None = 'Greys', snp_filter_min_maf: float = 0.05, snp_query: str | None = "effect in ['NON_SYNONYMOUS_CODING', 'START_LOST', 'STOP_LOST', 'STOP_GAINED']", cnv_region: str | Region | Mapping | List[str | Region | Mapping] | Tuple[str | Region | Mapping, ...] | None = None, cnv_colorscale: str | List[str] | None = 'PuOr_r', cnv_max_coverage_variance: float | None = 0.2, site_mask: str | None = None, sample_sets: Sequence[str] | str | None = None, sample_query: str | None = None, random_seed: int = 42, cohort_size: int | None = None, color: str | Mapping | None = None, symbol: str | Mapping | None = None, linkage_method: Literal['single', 'complete', 'average', 'weighted', 'centroid', 'median', 'ward'] = 'complete', distance_metric: Literal['cityblock', 'euclidean', 'sqeuclidean'] = 'cityblock', count_sort: bool | None = None, distance_sort: bool | None = None, title: str | bool | None = True, title_font_size: int = 14, width: int | None = None, dendrogram_height: int = 300, heterozygosity_height: int = 25, snp_row_height: int = 25, cnv_row_height: int = 25, show: bool = True, renderer: str | None = None, render_mode: Literal['auto', 'svg', 'webgl'] = 'svg', leaf_y: int = 0, marker_size: int | float = 5, line_width: int | float = 0.5, line_color: str = 'black', color_discrete_sequence: List | None = None, color_discrete_map: Mapping | None = None, category_orders: List | Mapping | None = None, legend_sizing: Literal['constant', 'trace'] = 'constant')#

Perform diplotype clustering, annotated with heterozygosity, gene copy number and amino acid variants.

Parameters#

regionstr or Region or Mapping or list of str or Region or Mapping or tuple of str or Region or Mapping

Region of the reference genome. Can be a contig name, region string (formatted like “{contig}:{start}-{end}”), or identifier of a genome feature such as a gene or transcript. Can also be a sequence (e.g., list) of regions.

heterozygositybool, optional, default: True

Plot heterozygosity track.

heterozygosity_colorscalestr or list of str or None, optional, default: ‘Greys’

Colormap used to map scalar data to colors (for a 2D image). This parameter is not used for RGB or RGBA images. If a string is provided, it should be the name of a known color scale, and if a list is provided, it should be a list of CSS-compatible colors.

snp_transcriptstr or None, optional

Plot amino acid variants for this transcript.

snp_colorscalestr or list of str or None, optional, default: ‘Greys’

Colormap used to map scalar data to colors (for a 2D image). This parameter is not used for RGB or RGBA images. If a string is provided, it should be the name of a known color scale, and if a list is provided, it should be a list of CSS-compatible colors.

snp_filter_min_maffloat, optional, default: 0.05

Filter amino acid variants with alternate allele frequency below this threshold.

snp_querystr or None, optional, default: “effect in [‘NON_SYNONYMOUS_CODING’, ‘START_LOST’, ‘STOP_LOST’, ‘STOP_GAINED’]”

A pandas query string to be evaluated against the SNP data, to select SNPs to be included.

cnv_regionstr or Region or Mapping or list of str or Region or Mapping or tuple of str or Region or Mapping or None, optional

Plot gene CNV calls for this region.

cnv_colorscalestr or list of str or None, optional, default: ‘PuOr_r’

Colormap used to map scalar data to colors (for a 2D image). This parameter is not used for RGB or RGBA images. If a string is provided, it should be the name of a known color scale, and if a list is provided, it should be a list of CSS-compatible colors.

cnv_max_coverage_variancefloat or None, optional, default: 0.2

Remove samples if coverage variance exceeds this value.

site_maskstr or None, optional

Which site filters mask to apply. See the site_mask_ids property for available values.

sample_setssequence of str or str or None, optional

List of sample sets and/or releases. Can also be a single sample set or release.

sample_querystr or None, optional

A pandas query string to be evaluated against the sample metadata, to select samples to be included in the returned data.

random_seedint, optional, default: 42

Random seed used for reproducible down-sampling.

cohort_sizeint or None, optional

Randomly down-sample to this value if the number of samples in the cohort is greater. Raise an error if the number of samples is less than this value.

colorstr or Mapping or None, optional

Name of variable to use to color the markers.

symbolstr or Mapping or None, optional

Name of the variable to use to choose marker symbols.

linkage_method{‘single’, ‘complete’, ‘average’, ‘weighted’, ‘centroid’, ‘median’, ‘ward’}, optional, default: ‘complete’

The linkage algorithm to use. See the Linkage Methods section of the scipy.cluster.hierarchy.linkage docs for full descriptions.

distance_metric{‘cityblock’, ‘euclidean’, ‘sqeuclidean’}, optional, default: ‘cityblock’

The metric to compute distance between genotypes in two samples.

count_sortbool or None, optional

If True, for each node n, the child with the minimum number of descendants is plotted first. Note distance_sort and count_sort cannot both be True.

distance_sortbool or None, optional

If True, for each node n, if True, the child with the minimum distance between is plotted first. Note distance_sort and count_sort cannot both be True.

titlestr or bool or None, optional, default: True

If True, attempt to use metadata from input dataset as a plot title. Otherwise, use supplied value as a title.

title_font_sizeint, optional, default: 14

Font size for the plot title.

widthint or None, optional

Figure width in pixels (px).

dendrogram_heightint, optional, default: 300

Height in pixels (px).

heterozygosity_heightint, optional, default: 25

Height in pixels (px).

snp_row_heightint, optional, default: 25

Height in pixels (px).

cnv_row_heightint, optional, default: 25

Height in pixels (px).

showbool, optional, default: True

If true, show the plot. If False, do not show the plot, but return the figure.

rendererstr or None, optional

The name of the renderer to use.

render_mode{‘auto’, ‘svg’, ‘webgl’}, optional, default: ‘svg’

The type of rendering backend to use. See also https://plotly.com/python/webgl-vs-svg/.

leaf_yint, optional, default: 0

Y coordinate at which to plot the leaf markers.

marker_sizeint or float, optional, default: 5

Marker size.

line_widthint or float, optional, default: 0.5

Line width.

line_colorstr, optional, default: ‘black’

Line color.

color_discrete_sequenceList or None, optional

Provide a list of colours to use.

color_discrete_mapMapping or None, optional

Provide an explicit mapping from values to colours.

category_ordersList or Mapping or None, optional

Control the order in which values appear in the legend.

legend_sizing{‘constant’, ‘trace’}, optional, default: ‘constant’

Determines if the legend items symbols scale with their corresponding “trace” attributes or remain “constant” independent of the symbol size on the graph.