Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dlaehnemann/f3e3e3c293b670d9530003d44166fded to your computer and use it in GitHub Desktop.
Save dlaehnemann/f3e3e3c293b670d9530003d44166fded to your computer and use it in GitHub Desktop.
libprosic flamegraph of test09 on branch use-optimized-pairhmm at commit b7b3dc0b9e35bc527562632fc8cc9c07bb182671
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1062" onload="init(evt)" viewBox="0 0 1200 1062" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1062.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="1045" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="1045" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for f64&gt;::ge (2 samples, 0.30%)</title><rect x="423.3" y="421" width="3.5" height="15.0" fill="rgb(227,169,20)" rx="2" ry="2" />
<text text-anchor="" x="426.26" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itertools::minmax::minmax_impl (2 samples, 0.30%)</title><rect x="562.2" y="565" width="3.5" height="15.0" fill="rgb(212,55,16)" rx="2" ry="2" />
<text text-anchor="" x="565.19" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="11.8" y="693" width="1.7" height="15.0" fill="rgb(239,103,10)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itertools::Itertools::collect_vec (8 samples, 1.19%)</title><rect x="548.1" y="421" width="14.1" height="15.0" fill="rgb(228,128,17)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;usize as core::slice::SliceIndex&lt;[T]&gt;&gt;::index (3 samples, 0.45%)</title><rect x="344.1" y="437" width="5.3" height="15.0" fill="rgb(242,137,16)" rx="2" ry="2" />
<text text-anchor="" x="347.13" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inflate (12 samples, 1.79%)</title><rect x="1158.3" y="501" width="21.1" height="15.0" fill="rgb(210,3,44)" rx="2" ry="2" />
<text text-anchor="" x="1161.35" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_log1p (1 samples, 0.15%)</title><rect x="563.9" y="421" width="1.8" height="15.0" fill="rgb(223,6,16)" rx="2" ry="2" />
<text text-anchor="" x="566.95" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (85 samples, 12.67%)</title><rect x="759.2" y="341" width="149.4" height="15.0" fill="rgb(216,123,24)" rx="2" ry="2" />
<text text-anchor="" x="762.15" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne.allsyms]]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start (1 samples, 0.15%)</title><rect x="11.8" y="981" width="1.7" height="15.0" fill="rgb(240,167,42)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio::stats::probs::LogProb::ln_one_minus_exp (1 samples, 0.15%)</title><rect x="546.4" y="501" width="1.7" height="15.0" fill="rgb(224,1,20)" rx="2" ry="2" />
<text text-anchor="" x="549.36" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::option::Option&lt;T&gt;&gt;::map (1 samples, 0.15%)</title><rect x="430.3" y="437" width="1.8" height="15.0" fill="rgb(224,159,8)" rx="2" ry="2" />
<text text-anchor="" x="433.30" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (10 samples, 1.49%)</title><rect x="282.6" y="469" width="17.6" height="15.0" fill="rgb(253,169,17)" rx="2" ry="2" />
<text text-anchor="" x="285.58" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_GI___exp (2 samples, 0.30%)</title><rect x="20.6" y="325" width="3.5" height="15.0" fill="rgb(212,2,50)" rx="2" ry="2" />
<text text-anchor="" x="23.55" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::&lt;impl *const T&gt;::offset (2 samples, 0.30%)</title><rect x="449.6" y="357" width="3.6" height="15.0" fill="rgb(246,120,39)" rx="2" ry="2" />
<text text-anchor="" x="452.64" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="1156.6" y="325" width="1.7" height="15.0" fill="rgb(232,212,2)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_huge_dalloc (8 samples, 1.19%)</title><rect x="565.7" y="597" width="14.1" height="15.0" fill="rgb(235,189,47)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::Prob as core::ops::arith::Add&gt;::add (30 samples, 4.47%)</title><rect x="194.6" y="501" width="52.8" height="15.0" fill="rgb(216,202,16)" rx="2" ry="2" />
<text text-anchor="" x="197.65" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;bio:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (8 samples, 1.19%)</title><rect x="565.7" y="373" width="14.1" height="15.0" fill="rgb(251,141,42)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (39 samples, 5.81%)</title><rect x="1077.5" y="405" width="68.5" height="15.0" fill="rgb(215,173,27)" rx="2" ry="2" />
<text text-anchor="" x="1080.45" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::fragments::isize_pmf (4 samples, 0.60%)</title><rect x="18.8" y="373" width="7.0" height="15.0" fill="rgb(217,26,3)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;rust_htslib::bam::record::Seq&lt;'a&gt; as core::ops::index::Index&lt;usize&gt;&gt;::index (2 samples, 0.30%)</title><rect x="256.2" y="469" width="3.5" height="15.0" fill="rgb(216,143,31)" rx="2" ry="2" />
<text text-anchor="" x="259.20" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="1045.8" y="325" width="1.8" height="15.0" fill="rgb(238,173,49)" rx="2" ry="2" />
<text text-anchor="" x="1048.80" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bgzf_read_block (18 samples, 2.68%)</title><rect x="1156.6" y="549" width="31.6" height="15.0" fill="rgb(213,90,35)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lib-0ce23af7a06 (2 samples, 0.30%)</title><rect x="10.0" y="997" width="3.5" height="15.0" fill="rgb(210,44,7)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (40 samples, 5.96%)</title><rect x="1075.7" y="421" width="70.3" height="15.0" fill="rgb(217,22,19)" rx="2" ry="2" />
<text text-anchor="" x="1078.69" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T, I&gt;&gt;::spec_extend (4 samples, 0.60%)</title><rect x="18.8" y="453" width="7.0" height="15.0" fill="rgb(239,164,50)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::iter::Map&lt;I, F&gt; as core::iter::iterator::Iterator&gt;::next (8 samples, 1.19%)</title><rect x="548.1" y="325" width="14.1" height="15.0" fill="rgb(237,101,15)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::io::fasta::IndexedReader&lt;R&gt;&gt;::read (327 samples, 48.73%)</title><rect x="579.8" y="581" width="575.0" height="15.0" fill="rgb(233,43,44)" rx="2" ry="2" />
<text text-anchor="" x="582.78" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;bio::io::fasta::IndexedReader&lt;R&gt;&gt;::read</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="10.0" y="917" width="1.8" height="15.0" fill="rgb(214,32,48)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_memcpy_sse2_unaligned_erms (1 samples, 0.15%)</title><rect x="1188.2" y="533" width="1.8" height="15.0" fill="rgb(209,79,5)" rx="2" ry="2" />
<text text-anchor="" x="1191.24" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio::stats::probs::LogProb::ln_sum_exp::{{closure}} (8 samples, 1.19%)</title><rect x="433.8" y="357" width="14.1" height="15.0" fill="rgb(252,117,11)" rx="2" ry="2" />
<text text-anchor="" x="436.82" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::num::&lt;impl usize&gt;::wrapping_sub (1 samples, 0.15%)</title><rect x="936.8" y="453" width="1.7" height="15.0" fill="rgb(225,41,25)" rx="2" ry="2" />
<text text-anchor="" x="939.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::reads::ReadEmission::new (1 samples, 0.15%)</title><rect x="546.4" y="517" width="1.7" height="15.0" fill="rgb(207,87,5)" rx="2" ry="2" />
<text text-anchor="" x="549.36" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::LogProb as core::cmp::PartialOrd&gt;::lt (12 samples, 1.79%)</title><rect x="393.4" y="485" width="21.1" height="15.0" fill="rgb(219,227,5)" rx="2" ry="2" />
<text text-anchor="" x="396.37" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::reads::ReadEmission::particular_miscall (11 samples, 1.64%)</title><rect x="321.3" y="469" width="19.3" height="15.0" fill="rgb(211,145,14)" rx="2" ry="2" />
<text text-anchor="" x="324.27" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::iter::Enumerate&lt;I&gt; as core::iter::iterator::Iterator&gt;::fold (12 samples, 1.79%)</title><rect x="432.1" y="421" width="21.1" height="15.0" fill="rgb(244,105,37)" rx="2" ry="2" />
<text text-anchor="" x="435.06" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::Ord::min (5 samples, 0.75%)</title><rect x="1146.0" y="517" width="8.8" height="15.0" fill="rgb(210,181,5)" rx="2" ry="2" />
<text text-anchor="" x="1149.04" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (32 samples, 4.77%)</title><rect x="1089.8" y="325" width="56.2" height="15.0" fill="rgb(210,120,49)" rx="2" ry="2" />
<text text-anchor="" x="1092.76" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ker..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::alloc::realloc (197 samples, 29.36%)</title><rect x="590.3" y="437" width="346.5" height="15.0" fill="rgb(234,8,10)" rx="2" ry="2" />
<text text-anchor="" x="593.33" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >alloc::alloc::realloc</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (8 samples, 1.19%)</title><rect x="565.7" y="421" width="14.1" height="15.0" fill="rgb(210,95,48)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_GI___clone (669 samples, 99.70%)</title><rect x="13.5" y="981" width="1176.5" height="15.0" fill="rgb(247,79,46)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_GI___clone</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::reads::EditDistanceEstimation::new (1 samples, 0.15%)</title><rect x="544.6" y="517" width="1.8" height="15.0" fill="rgb(221,225,43)" rx="2" ry="2" />
<text text-anchor="" x="547.61" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inflate_block (17 samples, 2.53%)</title><rect x="1158.3" y="533" width="29.9" height="15.0" fill="rgb(240,226,26)" rx="2" ry="2" />
<text text-anchor="" x="1161.35" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_chunk_dalloc_wrapper (8 samples, 1.19%)</title><rect x="565.7" y="501" width="14.1" height="15.0" fill="rgb(235,92,42)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::sample::Sample::fragment_observation (301 samples, 44.86%)</title><rect x="18.8" y="565" width="529.3" height="15.0" fill="rgb(222,190,17)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::sample::Sample::fragment_observation</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::deref::Deref&gt;::deref (2 samples, 0.30%)</title><rect x="340.6" y="453" width="3.5" height="15.0" fill="rgb(239,223,51)" rx="2" ry="2" />
<text text-anchor="" x="343.61" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (29 samples, 4.32%)</title><rect x="1095.0" y="309" width="51.0" height="15.0" fill="rgb(206,37,27)" rx="2" ry="2" />
<text text-anchor="" x="1098.04" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ker..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_libc_csu_init (1 samples, 0.15%)</title><rect x="11.8" y="949" width="1.7" height="15.0" fill="rgb(235,82,18)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bam_read1 (3 samples, 0.45%)</title><rect x="13.5" y="485" width="5.3" height="15.0" fill="rgb(209,51,38)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read (1 samples, 0.15%)</title><rect x="1156.6" y="485" width="1.7" height="15.0" fill="rgb(237,54,31)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio::stats::probs::LogProb::ln_add_exp (1 samples, 0.15%)</title><rect x="563.9" y="453" width="1.8" height="15.0" fill="rgb(254,48,6)" rx="2" ry="2" />
<text text-anchor="" x="566.95" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::&lt;impl *mut T&gt;::offset (3 samples, 0.45%)</title><rect x="1049.3" y="437" width="5.3" height="15.0" fill="rgb(212,71,6)" rx="2" ry="2" />
<text text-anchor="" x="1052.31" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd&lt;&amp;'b B&gt; for &amp;'a A&gt;::ge (2 samples, 0.30%)</title><rect x="409.2" y="453" width="3.5" height="15.0" fill="rgb(244,23,14)" rx="2" ry="2" />
<text text-anchor="" x="412.20" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::sync::once::Once::is_completed (1 samples, 0.15%)</title><rect x="338.9" y="389" width="1.7" height="15.0" fill="rgb(230,9,22)" rx="2" ry="2" />
<text text-anchor="" x="341.85" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio::stats::pairhmm::PairHMM::prob_related (295 samples, 43.96%)</title><rect x="25.8" y="517" width="518.8" height="15.0" fill="rgb(209,156,49)" rx="2" ry="2" />
<text text-anchor="" x="28.83" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::pairhmm::PairHMM::prob_related</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="11.8" y="725" width="1.7" height="15.0" fill="rgb(241,129,1)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="1156.6" y="309" width="1.7" height="15.0" fill="rgb(231,204,53)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_isqalloc (16 samples, 2.38%)</title><rect x="908.6" y="373" width="28.2" height="15.0" fill="rgb(241,104,53)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for f64&gt;::ge (3 samples, 0.45%)</title><rect x="384.6" y="437" width="5.3" height="15.0" fill="rgb(227,9,4)" rx="2" ry="2" />
<text text-anchor="" x="387.58" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="10.0" y="949" width="1.8" height="15.0" fill="rgb(241,91,40)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::iter::iterator::Iterator::collect (4 samples, 0.60%)</title><rect x="18.8" y="501" width="7.0" height="15.0" fill="rgb(228,40,5)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::f64::&lt;impl f64&gt;::ln_1p (1 samples, 0.15%)</title><rect x="563.9" y="437" width="1.8" height="15.0" fill="rgb(213,209,8)" rx="2" ry="2" />
<text text-anchor="" x="566.95" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::reads::ReadEmission::particular_miscall (2 samples, 0.30%)</title><rect x="265.0" y="469" width="3.5" height="15.0" fill="rgb(217,41,0)" rx="2" ry="2" />
<text text-anchor="" x="267.99" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::panic::catch_unwind (669 samples, 99.70%)</title><rect x="13.5" y="869" width="1176.5" height="15.0" fill="rgb(238,138,1)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panic::catch_unwind</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inflate (3 samples, 0.45%)</title><rect x="13.5" y="405" width="5.3" height="15.0" fill="rgb(252,94,53)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (46 samples, 6.86%)</title><rect x="827.7" y="309" width="80.9" height="15.0" fill="rgb(238,99,29)" rx="2" ry="2" />
<text text-anchor="" x="830.73" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne.a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup (2 samples, 0.30%)</title><rect x="562.2" y="517" width="3.5" height="15.0" fill="rgb(236,121,6)" rx="2" ry="2" />
<text text-anchor="" x="565.19" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::SliceIndex&lt;[T]&gt;&gt;::get_unchecked_mut (3 samples, 0.45%)</title><rect x="1049.3" y="469" width="5.3" height="15.0" fill="rgb(240,191,10)" rx="2" ry="2" />
<text text-anchor="" x="1052.31" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::panic::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (669 samples, 99.70%)</title><rect x="13.5" y="805" width="1176.5" height="15.0" fill="rgb(210,218,23)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;std::panic::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio::stats::probs::LogProb::ln_sum_exp (41 samples, 6.11%)</title><rect x="419.7" y="485" width="72.1" height="15.0" fill="rgb(211,26,12)" rx="2" ry="2" />
<text text-anchor="" x="422.75" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::sta..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for f64&gt;::ge (2 samples, 0.30%)</title><rect x="409.2" y="437" width="3.5" height="15.0" fill="rgb(249,8,8)" rx="2" ry="2" />
<text text-anchor="" x="412.20" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel&lt;libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs&gt;&gt;::joint_prob::{{closure}}::{{closure}} (8 samples, 1.19%)</title><rect x="548.1" y="261" width="14.1" height="15.0" fill="rgb(221,19,8)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bam_readrec (3 samples, 0.45%)</title><rect x="13.5" y="501" width="5.3" height="15.0" fill="rgb(215,132,18)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (16 samples, 2.38%)</title><rect x="908.6" y="165" width="28.2" height="15.0" fill="rgb(207,92,39)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jemalloc_constructor (1 samples, 0.15%)</title><rect x="11.8" y="933" width="1.7" height="15.0" fill="rgb(205,47,34)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (4 samples, 0.60%)</title><rect x="572.7" y="309" width="7.1" height="15.0" fill="rgb(205,88,27)" rx="2" ry="2" />
<text text-anchor="" x="575.74" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[lib....1] (11 samples, 1.64%)</title><rect x="1160.1" y="485" width="19.3" height="15.0" fill="rgb(212,138,24)" rx="2" ry="2" />
<text text-anchor="" x="1163.10" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T, I&gt;&gt;::from_iter (8 samples, 1.19%)</title><rect x="548.1" y="373" width="14.1" height="15.0" fill="rgb(209,169,45)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="10.0" y="965" width="1.8" height="15.0" fill="rgb(253,177,28)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::sample::Sample::fragment_observation::{{closure}} (297 samples, 44.26%)</title><rect x="25.8" y="549" width="522.3" height="15.0" fill="rgb(227,20,53)" rx="2" ry="2" />
<text text-anchor="" x="28.83" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::sample::Sample::fragment_observation::{{closure}}</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (38 samples, 5.66%)</title><rect x="1079.2" y="389" width="66.8" height="15.0" fill="rgb(238,10,34)" rx="2" ry="2" />
<text text-anchor="" x="1082.21" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::evidence::reads::ReferenceEmissionParams&lt;'a&gt; as bio::stats::pairhmm::EmissionParameters&gt;::prob_emit_xy (41 samples, 6.11%)</title><rect x="268.5" y="501" width="72.1" height="15.0" fill="rgb(246,135,54)" rx="2" ry="2" />
<text text-anchor="" x="271.51" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;libpros..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;usize as core::slice::SliceIndex&lt;[T]&gt;&gt;::index (1 samples, 0.15%)</title><rect x="328.3" y="421" width="1.8" height="15.0" fill="rgb(219,184,26)" rx="2" ry="2" />
<text text-anchor="" x="331.30" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd&lt;&amp;'b B&gt; for &amp;'a A&gt;::ge (3 samples, 0.45%)</title><rect x="384.6" y="453" width="5.3" height="15.0" fill="rgb(241,37,9)" rx="2" ry="2" />
<text text-anchor="" x="387.58" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::sys::unix::thread::Thread::new::thread_start (669 samples, 99.70%)</title><rect x="13.5" y="949" width="1176.5" height="15.0" fill="rgb(231,91,50)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys::unix::thread::Thread::new::thread_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bam_read1 (20 samples, 2.98%)</title><rect x="1154.8" y="581" width="35.2" height="15.0" fill="rgb(234,129,31)" rx="2" ry="2" />
<text text-anchor="" x="1157.83" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ba..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::f64::&lt;impl f64&gt;::ln_1p (22 samples, 3.28%)</title><rect x="453.2" y="469" width="38.6" height="15.0" fill="rgb(216,84,0)" rx="2" ry="2" />
<text text-anchor="" x="456.16" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="10.0" y="981" width="1.8" height="15.0" fill="rgb(210,105,29)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd&lt;&amp;'b B&gt; for &amp;'a A&gt;::ge (2 samples, 0.30%)</title><rect x="423.3" y="437" width="3.5" height="15.0" fill="rgb(214,81,30)" rx="2" ry="2" />
<text text-anchor="" x="426.26" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::f64::&lt;impl f64&gt;::ln_1p (4 samples, 0.60%)</title><rect x="555.2" y="149" width="7.0" height="15.0" fill="rgb(227,160,3)" rx="2" ry="2" />
<text text-anchor="" x="558.16" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for f64&gt;::partial_cmp (1 samples, 0.15%)</title><rect x="493.6" y="469" width="1.8" height="15.0" fill="rgb(220,53,10)" rx="2" ry="2" />
<text text-anchor="" x="496.61" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel&lt;libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs&gt;&gt;::map::{{closure}} (2 samples, 0.30%)</title><rect x="562.2" y="549" width="3.5" height="15.0" fill="rgb(224,166,9)" rx="2" ry="2" />
<text text-anchor="" x="565.19" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;f64 as core::iter::traits::Sum&gt;::sum::{{closure}} (1 samples, 0.15%)</title><rect x="432.1" y="357" width="1.7" height="15.0" fill="rgb(234,119,45)" rx="2" ry="2" />
<text text-anchor="" x="435.06" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio::stats::pairhmm::XYEmission::prob (3 samples, 0.45%)</title><rect x="349.4" y="501" width="5.3" height="15.0" fill="rgb(239,132,51)" rx="2" ry="2" />
<text text-anchor="" x="352.40" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for f64&gt;::le (1 samples, 0.15%)</title><rect x="426.8" y="421" width="1.7" height="15.0" fill="rgb(239,12,32)" rx="2" ry="2" />
<text text-anchor="" x="429.78" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (10 samples, 1.49%)</title><rect x="919.2" y="37" width="17.6" height="15.0" fill="rgb(237,207,30)" rx="2" ry="2" />
<text text-anchor="" x="922.18" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for f64&gt;::partial_cmp (11 samples, 1.64%)</title><rect x="374.0" y="469" width="19.4" height="15.0" fill="rgb(237,130,22)" rx="2" ry="2" />
<text text-anchor="" x="377.02" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_init (1 samples, 0.15%)</title><rect x="11.8" y="917" width="1.7" height="15.0" fill="rgb(210,140,21)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::iter::iterator::Iterator::collect (8 samples, 1.19%)</title><rect x="548.1" y="565" width="14.1" height="15.0" fill="rgb(224,140,44)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::iter::Skip&lt;I&gt; as core::iter::iterator::Iterator&gt;::next (1 samples, 0.15%)</title><rect x="430.3" y="469" width="1.8" height="15.0" fill="rgb(240,63,37)" rx="2" ry="2" />
<text text-anchor="" x="433.30" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::index::IndexMut&lt;I&gt;&gt;::index_mut (18 samples, 2.68%)</title><rect x="152.4" y="501" width="31.7" height="15.0" fill="rgb(207,217,19)" rx="2" ry="2" />
<text text-anchor="" x="155.44" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rallocx (197 samples, 29.36%)</title><rect x="590.3" y="421" width="346.5" height="15.0" fill="rgb(232,55,51)" rx="2" ry="2" />
<text text-anchor="" x="593.33" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >rallocx</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup (8 samples, 1.19%)</title><rect x="548.1" y="229" width="14.1" height="15.0" fill="rgb(245,198,54)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_purge_to_limit (8 samples, 1.19%)</title><rect x="565.7" y="533" width="14.1" height="15.0" fill="rgb(229,165,17)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::deref::Deref&gt;::deref (4 samples, 0.60%)</title><rect x="282.6" y="453" width="7.0" height="15.0" fill="rgb(217,64,49)" rx="2" ry="2" />
<text text-anchor="" x="285.58" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (8 samples, 1.19%)</title><rect x="565.7" y="437" width="14.1" height="15.0" fill="rgb(239,141,9)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::&lt;impl *mut T&gt;::add (3 samples, 0.45%)</title><rect x="1049.3" y="453" width="5.3" height="15.0" fill="rgb(222,217,15)" rx="2" ry="2" />
<text text-anchor="" x="1052.31" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::sys::unix::fs::File::read (49 samples, 7.30%)</title><rect x="1059.9" y="501" width="86.1" height="15.0" fill="rgb(213,41,53)" rx="2" ry="2" />
<text text-anchor="" x="1062.87" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="10.0" y="933" width="1.8" height="15.0" fill="rgb(214,135,39)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>test::run_test::{{closure}} (669 samples, 99.70%)</title><rect x="13.5" y="661" width="1176.5" height="15.0" fill="rgb(240,96,52)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >test::run_test::{{closure}}</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::reads::ReadEmission::prob_insertion (5 samples, 0.75%)</title><rect x="340.6" y="485" width="8.8" height="15.0" fill="rgb(220,46,20)" rx="2" ry="2" />
<text text-anchor="" x="343.61" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (40 samples, 5.96%)</title><rect x="838.3" y="277" width="70.3" height="15.0" fill="rgb(228,38,47)" rx="2" ry="2" />
<text text-anchor="" x="841.29" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::iter::Rev&lt;I&gt; as core::iter::iterator::Iterator&gt;::next (1 samples, 0.15%)</title><rect x="544.6" y="469" width="1.8" height="15.0" fill="rgb(241,202,30)" rx="2" ry="2" />
<text text-anchor="" x="547.61" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::fragments::IndelEvidence::pmf (4 samples, 0.60%)</title><rect x="18.8" y="389" width="7.0" height="15.0" fill="rgb(236,28,29)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="1156.6" y="341" width="1.7" height="15.0" fill="rgb(219,62,23)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;'a mut F&gt;::call_once (1 samples, 0.15%)</title><rect x="544.6" y="421" width="1.8" height="15.0" fill="rgb(254,27,36)" rx="2" ry="2" />
<text text-anchor="" x="547.61" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::Ord::min (22 samples, 3.28%)</title><rect x="500.6" y="485" width="38.7" height="15.0" fill="rgb(238,63,53)" rx="2" ry="2" />
<text text-anchor="" x="503.64" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::iter::FilterMap&lt;I, F&gt; as core::iter::iterator::Iterator&gt;::fold (12 samples, 1.79%)</title><rect x="432.1" y="437" width="21.1" height="15.0" fill="rgb(238,8,13)" rx="2" ry="2" />
<text text-anchor="" x="435.06" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="1156.6" y="389" width="1.7" height="15.0" fill="rgb(252,88,24)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (11 samples, 1.64%)</title><rect x="917.4" y="69" width="19.4" height="15.0" fill="rgb(254,213,43)" rx="2" ry="2" />
<text text-anchor="" x="920.42" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="1156.6" y="357" width="1.7" height="15.0" fill="rgb(242,44,26)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (24 samples, 3.58%)</title><rect x="1005.4" y="453" width="42.2" height="15.0" fill="rgb(223,54,14)" rx="2" ry="2" />
<text text-anchor="" x="1008.35" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="11.8" y="741" width="1.7" height="15.0" fill="rgb(222,156,31)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_memcpy_sse2_unaligned_erms (181 samples, 26.97%)</title><rect x="590.3" y="373" width="318.3" height="15.0" fill="rgb(211,102,52)" rx="2" ry="2" />
<text text-anchor="" x="593.33" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_memcpy_sse2_unaligned_erms</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd&lt;&amp;'b B&gt; for &amp;'a A&gt;::le (2 samples, 0.30%)</title><rect x="389.9" y="453" width="3.5" height="15.0" fill="rgb(225,140,51)" rx="2" ry="2" />
<text text-anchor="" x="392.85" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;usize as core::slice::SliceIndex&lt;[T]&gt;&gt;::index (1 samples, 0.15%)</title><rect x="254.4" y="437" width="1.8" height="15.0" fill="rgb(211,11,24)" rx="2" ry="2" />
<text text-anchor="" x="257.44" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>next_line (1 samples, 0.15%)</title><rect x="11.8" y="789" width="1.7" height="15.0" fill="rgb(215,220,2)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::iter::FilterMap&lt;I, F&gt; as core::iter::iterator::Iterator&gt;::next (4 samples, 0.60%)</title><rect x="18.8" y="421" width="7.0" height="15.0" fill="rgb(225,25,12)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::num::&lt;impl u8&gt;::to_ascii_uppercase (3 samples, 0.45%)</title><rect x="259.7" y="469" width="5.3" height="15.0" fill="rgb(210,54,48)" rx="2" ry="2" />
<text text-anchor="" x="262.72" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::slice::&lt;impl core::ops::index::Index&lt;I&gt; for [T]&gt;::index (1 samples, 0.15%)</title><rect x="328.3" y="437" width="1.8" height="15.0" fill="rgb(215,50,23)" rx="2" ry="2" />
<text text-anchor="" x="331.30" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio::stats::probs::ln_1m_exp (1 samples, 0.15%)</title><rect x="546.4" y="485" width="1.7" height="15.0" fill="rgb(218,194,11)" rx="2" ry="2" />
<text text-anchor="" x="549.36" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[lib....1] (3 samples, 0.45%)</title><rect x="13.5" y="389" width="5.3" height="15.0" fill="rgb(234,18,9)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_observation_case_control (8 samples, 1.19%)</title><rect x="548.1" y="181" width="14.1" height="15.0" fill="rgb(246,160,28)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itertools::Itertools::minmax_by_key (2 samples, 0.30%)</title><rect x="562.2" y="581" width="3.5" height="15.0" fill="rgb(253,195,49)" rx="2" ry="2" />
<text text-anchor="" x="565.19" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (44 samples, 6.56%)</title><rect x="1068.7" y="453" width="77.3" height="15.0" fill="rgb(216,74,44)" rx="2" ry="2" />
<text text-anchor="" x="1071.66" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (16 samples, 2.38%)</title><rect x="124.3" y="501" width="28.1" height="15.0" fill="rgb(249,97,26)" rx="2" ry="2" />
<text text-anchor="" x="127.31" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::estimation::alignment_properties::AlignmentProperties::estimate (20 samples, 2.98%)</title><rect x="1154.8" y="613" width="35.2" height="15.0" fill="rgb(227,144,32)" rx="2" ry="2" />
<text text-anchor="" x="1157.83" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >li..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (16 samples, 2.38%)</title><rect x="908.6" y="101" width="28.2" height="15.0" fill="rgb(218,132,4)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_log1p (4 samples, 0.60%)</title><rect x="555.2" y="133" width="7.0" height="15.0" fill="rgb(216,61,41)" rx="2" ry="2" />
<text text-anchor="" x="558.16" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (30 samples, 4.47%)</title><rect x="855.9" y="245" width="52.7" height="15.0" fill="rgb(226,41,25)" rx="2" ry="2" />
<text text-anchor="" x="858.87" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ker..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_maybe_purge_ratio (8 samples, 1.19%)</title><rect x="565.7" y="549" width="14.1" height="15.0" fill="rgb(216,120,33)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (24 samples, 3.58%)</title><rect x="1005.4" y="469" width="42.2" height="15.0" fill="rgb(209,202,53)" rx="2" ry="2" />
<text text-anchor="" x="1008.35" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::pattern_matching::myers::Myers&lt;T&gt;&gt;::new (1 samples, 0.15%)</title><rect x="544.6" y="501" width="1.8" height="15.0" fill="rgb(232,201,13)" rx="2" ry="2" />
<text text-anchor="" x="547.61" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::fs::File as std::io::Read&gt;::read (49 samples, 7.30%)</title><rect x="1059.9" y="517" width="86.1" height="15.0" fill="rgb(221,152,11)" rx="2" ry="2" />
<text text-anchor="" x="1062.87" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;std::fs::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::LogProb as core::ops::arith::Add&gt;::add (1 samples, 0.15%)</title><rect x="428.5" y="469" width="1.8" height="15.0" fill="rgb(227,19,33)" rx="2" ry="2" />
<text text-anchor="" x="431.54" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;rust_htslib::bam::IndexedReader as rust_htslib::bam::Read&gt;::read (3 samples, 0.45%)</title><rect x="13.5" y="549" width="5.3" height="15.0" fill="rgb(252,72,53)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (10 samples, 1.49%)</title><rect x="1030.0" y="341" width="17.6" height="15.0" fill="rgb(213,107,11)" rx="2" ry="2" />
<text text-anchor="" x="1032.97" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T, I&gt;&gt;::from_iter (8 samples, 1.19%)</title><rect x="548.1" y="533" width="14.1" height="15.0" fill="rgb(221,61,12)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for f64&gt;::partial_cmp (3 samples, 0.45%)</title><rect x="423.3" y="453" width="5.2" height="15.0" fill="rgb(221,67,14)" rx="2" ry="2" />
<text text-anchor="" x="426.26" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::slice::Iter&lt;'a, T&gt; as core::iter::iterator::Iterator&gt;::fold (2 samples, 0.30%)</title><rect x="562.2" y="501" width="3.5" height="15.0" fill="rgb(227,197,44)" rx="2" ry="2" />
<text text-anchor="" x="565.19" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::Prob as core::ops::arith::Add&gt;::add (1 samples, 0.15%)</title><rect x="266.8" y="453" width="1.7" height="15.0" fill="rgb(215,146,49)" rx="2" ry="2" />
<text text-anchor="" x="269.75" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::slice::Iter&lt;'a, T&gt; as core::iter::iterator::Iterator&gt;::fold (12 samples, 1.79%)</title><rect x="432.1" y="405" width="21.1" height="15.0" fill="rgb(228,146,14)" rx="2" ry="2" />
<text text-anchor="" x="435.06" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::LogProb as core::cmp::PartialOrd&gt;::gt (11 samples, 1.64%)</title><rect x="374.0" y="485" width="19.4" height="15.0" fill="rgb(251,168,24)" rx="2" ry="2" />
<text text-anchor="" x="377.02" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd&lt;&amp;'b B&gt; for &amp;'a A&gt;::le (1 samples, 0.15%)</title><rect x="426.8" y="437" width="1.7" height="15.0" fill="rgb(244,180,3)" rx="2" ry="2" />
<text text-anchor="" x="429.78" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;&amp;'a T, core::slice::Iter&lt;'a, T&gt;&gt;&gt;::spec_extend (264 samples, 39.34%)</title><rect x="590.3" y="517" width="464.3" height="15.0" fill="rgb(213,224,0)" rx="2" ry="2" />
<text text-anchor="" x="593.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;&amp;'a T, core::slic..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::ptr (9 samples, 1.34%)</title><rect x="124.3" y="469" width="15.8" height="15.0" fill="rgb(233,34,42)" rx="2" ry="2" />
<text text-anchor="" x="127.31" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (44 samples, 6.56%)</title><rect x="1068.7" y="437" width="77.3" height="15.0" fill="rgb(246,10,28)" rx="2" ry="2" />
<text text-anchor="" x="1071.66" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::slice::Iter&lt;'a, T&gt; as core::iter::iterator::Iterator&gt;::fold (8 samples, 1.19%)</title><rect x="548.1" y="213" width="14.1" height="15.0" fill="rgb(223,8,29)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::iter::range::&lt;impl core::iter::iterator::Iterator for core::ops::range::Range&lt;A&gt;&gt;::next (1 samples, 0.15%)</title><rect x="539.3" y="501" width="1.8" height="15.0" fill="rgb(254,213,6)" rx="2" ry="2" />
<text text-anchor="" x="542.33" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::panic::catch_unwind (669 samples, 99.70%)</title><rect x="13.5" y="741" width="1176.5" height="15.0" fill="rgb(248,193,53)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panic::catch_unwind</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T, I&gt;&gt;::spec_extend (8 samples, 1.19%)</title><rect x="548.1" y="517" width="14.1" height="15.0" fill="rgb(247,77,23)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="1156.6" y="373" width="1.7" height="15.0" fill="rgb(228,139,14)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd&lt;&amp;'b B&gt; for &amp;'a A&gt;::le (1 samples, 0.15%)</title><rect x="412.7" y="453" width="1.8" height="15.0" fill="rgb(239,228,40)" rx="2" ry="2" />
<text text-anchor="" x="415.71" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::FromIterator&lt;T&gt;&gt;::from_iter (8 samples, 1.19%)</title><rect x="548.1" y="549" width="14.1" height="15.0" fill="rgb(238,29,7)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::PairCaller&lt;A, B, P&gt;&gt;::pileup (304 samples, 45.31%)</title><rect x="13.5" y="597" width="534.6" height="15.0" fill="rgb(247,12,50)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;libprosic::model::PairCaller&lt;A, B, P&gt;&gt;::pileup</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;usize as core::slice::SliceIndex&lt;[T]&gt;&gt;::index (7 samples, 1.04%)</title><rect x="140.1" y="469" width="12.3" height="15.0" fill="rgb(208,135,16)" rx="2" ry="2" />
<text text-anchor="" x="143.13" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itertools::Itertools::collect_vec (4 samples, 0.60%)</title><rect x="18.8" y="517" width="7.0" height="15.0" fill="rgb(229,66,36)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>test::run_test::run_test_inner::{{closure}} (669 samples, 99.70%)</title><rect x="13.5" y="757" width="1176.5" height="15.0" fill="rgb(244,190,15)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >test::run_test::run_test_inner::{{closure}}</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="10.0" y="853" width="1.8" height="15.0" fill="rgb(240,61,42)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::option::Option&lt;T&gt;&gt;::map (8 samples, 1.19%)</title><rect x="548.1" y="485" width="14.1" height="15.0" fill="rgb(235,15,52)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;rust_htslib::bam::record::Seq&lt;'a&gt; as core::ops::index::Index&lt;usize&gt;&gt;::index (1 samples, 0.15%)</title><rect x="544.6" y="389" width="1.8" height="15.0" fill="rgb(251,213,46)" rx="2" ry="2" />
<text text-anchor="" x="547.61" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (10 samples, 1.49%)</title><rect x="1030.0" y="357" width="17.6" height="15.0" fill="rgb(224,28,8)" rx="2" ry="2" />
<text text-anchor="" x="1032.97" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::num::&lt;impl usize&gt;::saturating_add (2 samples, 0.30%)</title><rect x="541.1" y="501" width="3.5" height="15.0" fill="rgb(246,200,6)" rx="2" ry="2" />
<text text-anchor="" x="544.09" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (85 samples, 12.67%)</title><rect x="759.2" y="325" width="149.4" height="15.0" fill="rgb(252,92,0)" rx="2" ry="2" />
<text text-anchor="" x="762.15" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne.allsyms]]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (16 samples, 2.38%)</title><rect x="908.6" y="181" width="28.2" height="15.0" fill="rgb(254,102,45)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::Prob as core::ops::arith::Add&gt;::add (3 samples, 0.45%)</title><rect x="331.8" y="453" width="5.3" height="15.0" fill="rgb(254,37,39)" rx="2" ry="2" />
<text text-anchor="" x="334.82" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hread (1 samples, 0.15%)</title><rect x="1156.6" y="533" width="1.7" height="15.0" fill="rgb(218,165,53)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::f64::&lt;impl f64&gt;::ln_1p (2 samples, 0.30%)</title><rect x="495.4" y="485" width="3.5" height="15.0" fill="rgb(213,204,36)" rx="2" ry="2" />
<text text-anchor="" x="498.37" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (36 samples, 5.37%)</title><rect x="1082.7" y="341" width="63.3" height="15.0" fill="rgb(221,44,54)" rx="2" ry="2" />
<text text-anchor="" x="1085.73" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kern..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>posix_sysconf (1 samples, 0.15%)</title><rect x="11.8" y="821" width="1.7" height="15.0" fill="rgb(237,101,44)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (4 samples, 0.60%)</title><rect x="572.7" y="341" width="7.1" height="15.0" fill="rgb(242,99,25)" rx="2" ry="2" />
<text text-anchor="" x="575.74" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (8 samples, 1.19%)</title><rect x="565.7" y="389" width="14.1" height="15.0" fill="rgb(225,146,32)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="10.0" y="869" width="1.8" height="15.0" fill="rgb(239,155,19)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::slice::&lt;impl core::ops::index::Index&lt;I&gt; for [T]&gt;::index (1 samples, 0.15%)</title><rect x="254.4" y="453" width="1.8" height="15.0" fill="rgb(208,16,32)" rx="2" ry="2" />
<text text-anchor="" x="257.44" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup::{{closure}} (8 samples, 1.19%)</title><rect x="548.1" y="197" width="14.1" height="15.0" fill="rgb(228,12,39)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio::stats::probs::LogProb::ln_simpsons_integrate_exp::{{closure}} (8 samples, 1.19%)</title><rect x="548.1" y="277" width="14.1" height="15.0" fill="rgb(229,25,14)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref&gt;::deref::_stability (2 samples, 0.30%)</title><rect x="337.1" y="437" width="3.5" height="15.0" fill="rgb(233,204,28)" rx="2" ry="2" />
<text text-anchor="" x="340.09" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for f64&gt;::le (2 samples, 0.30%)</title><rect x="389.9" y="437" width="3.5" height="15.0" fill="rgb(242,145,29)" rx="2" ry="2" />
<text text-anchor="" x="392.85" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="1156.6" y="421" width="1.7" height="15.0" fill="rgb(234,128,49)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="11.8" y="709" width="1.7" height="15.0" fill="rgb(234,111,45)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_pages_purge (16 samples, 2.38%)</title><rect x="908.6" y="213" width="28.2" height="15.0" fill="rgb(227,105,37)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hread2 (1 samples, 0.15%)</title><rect x="1156.6" y="517" width="1.7" height="15.0" fill="rgb(221,148,23)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (4 samples, 0.60%)</title><rect x="572.7" y="325" width="7.1" height="15.0" fill="rgb(234,30,38)" rx="2" ry="2" />
<text text-anchor="" x="575.74" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::iter::Enumerate&lt;I&gt; as core::iter::iterator::Iterator&gt;::nth (1 samples, 0.15%)</title><rect x="430.3" y="453" width="1.8" height="15.0" fill="rgb(246,149,53)" rx="2" ry="2" />
<text text-anchor="" x="433.30" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::cmp::Ordering as core::cmp::PartialEq&gt;::eq (1 samples, 0.15%)</title><rect x="402.2" y="469" width="1.7" height="15.0" fill="rgb(211,209,1)" rx="2" ry="2" />
<text text-anchor="" x="405.16" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::PairPileup&lt;'a, A, B, P&gt;&gt;::case_likelihood (2 samples, 0.30%)</title><rect x="562.2" y="533" width="3.5" height="15.0" fill="rgb(213,144,12)" rx="2" ry="2" />
<text text-anchor="" x="565.19" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fd_read (1 samples, 0.15%)</title><rect x="1156.6" y="501" width="1.7" height="15.0" fill="rgb(243,24,21)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for usize&gt;::lt (1 samples, 0.15%)</title><rect x="539.3" y="485" width="1.8" height="15.0" fill="rgb(214,7,28)" rx="2" ry="2" />
<text text-anchor="" x="542.33" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>test09 (669 samples, 99.70%)</title><rect x="13.5" y="997" width="1176.5" height="15.0" fill="rgb(227,179,27)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >test09</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="11.8" y="757" width="1.7" height="15.0" fill="rgb(205,56,48)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_GI_madvise (16 samples, 2.38%)</title><rect x="908.6" y="197" width="28.2" height="15.0" fill="rgb(217,69,8)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::ptr (7 samples, 1.04%)</title><rect x="171.8" y="469" width="12.3" height="15.0" fill="rgb(220,39,1)" rx="2" ry="2" />
<text text-anchor="" x="174.79" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;f64 as core::ops::arith::Add&gt;::add (1 samples, 0.15%)</title><rect x="548.1" y="149" width="1.8" height="15.0" fill="rgb(223,116,4)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_GI_madvise (8 samples, 1.19%)</title><rect x="565.7" y="469" width="14.1" height="15.0" fill="rgb(250,182,23)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rust_htslib::bam::record::Seq::encoded_base (2 samples, 0.30%)</title><rect x="256.2" y="453" width="3.5" height="15.0" fill="rgb(250,94,53)" rx="2" ry="2" />
<text text-anchor="" x="259.20" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>log1p@plt (1 samples, 0.15%)</title><rect x="490.1" y="453" width="1.7" height="15.0" fill="rgb(246,81,0)" rx="2" ry="2" />
<text text-anchor="" x="493.09" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::Prob as core::ops::arith::Add&gt;::add (1 samples, 0.15%)</title><rect x="562.2" y="453" width="1.7" height="15.0" fill="rgb(244,213,10)" rx="2" ry="2" />
<text text-anchor="" x="565.19" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>crc32_z (5 samples, 0.75%)</title><rect x="1179.4" y="517" width="8.8" height="15.0" fill="rgb(222,65,2)" rx="2" ry="2" />
<text text-anchor="" x="1182.45" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;usize as core::slice::SliceIndex&lt;[T]&gt;&gt;::index (6 samples, 0.89%)</title><rect x="289.6" y="437" width="10.6" height="15.0" fill="rgb(226,48,2)" rx="2" ry="2" />
<text text-anchor="" x="292.61" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bgzf_uncompress (3 samples, 0.45%)</title><rect x="13.5" y="421" width="5.3" height="15.0" fill="rgb(237,170,22)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (5 samples, 0.75%)</title><rect x="571.0" y="357" width="8.8" height="15.0" fill="rgb(209,213,1)" rx="2" ry="2" />
<text text-anchor="" x="573.98" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy (1 samples, 0.15%)</title><rect x="1188.2" y="549" width="1.8" height="15.0" fill="rgb(216,222,48)" rx="2" ry="2" />
<text text-anchor="" x="1191.24" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::SliceIndex&lt;[T]&gt;&gt;::get_unchecked_mut (3 samples, 0.45%)</title><rect x="1049.3" y="485" width="5.3" height="15.0" fill="rgb(214,217,40)" rx="2" ry="2" />
<text text-anchor="" x="1052.31" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::slice::&lt;impl [T]&gt;::get_unchecked_mut (3 samples, 0.45%)</title><rect x="1049.3" y="501" width="5.3" height="15.0" fill="rgb(244,127,8)" rx="2" ry="2" />
<text text-anchor="" x="1052.31" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::Prob as core::ops::arith::Sub&gt;::sub (2 samples, 0.30%)</title><rect x="416.2" y="485" width="3.5" height="15.0" fill="rgb(251,21,5)" rx="2" ry="2" />
<text text-anchor="" x="419.23" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;lazy_static::lazy::Lazy&lt;T&gt;&gt;::get (2 samples, 0.30%)</title><rect x="337.1" y="421" width="3.5" height="15.0" fill="rgb(254,0,25)" rx="2" ry="2" />
<text text-anchor="" x="340.09" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::fragments::IndelEvidence::prob_sample_alt (4 samples, 0.60%)</title><rect x="18.8" y="549" width="7.0" height="15.0" fill="rgb(211,175,18)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::io::buffered::BufReader&lt;R&gt; as std::io::BufRead&gt;::fill_buf (51 samples, 7.60%)</title><rect x="1056.3" y="533" width="89.7" height="15.0" fill="rgb(246,44,27)" rx="2" ry="2" />
<text text-anchor="" x="1059.35" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;std::io::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::slice::&lt;impl core::ops::index::Index&lt;I&gt; for [T]&gt;::index (7 samples, 1.04%)</title><rect x="140.1" y="485" width="12.3" height="15.0" fill="rgb(224,70,47)" rx="2" ry="2" />
<text text-anchor="" x="143.13" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_rust_maybe_catch_panic (669 samples, 99.70%)</title><rect x="13.5" y="837" width="1176.5" height="15.0" fill="rgb(231,169,33)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_rust_maybe_catch_panic</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::io::fasta::IndexedReader&lt;R&gt;&gt;::read_line (326 samples, 48.58%)</title><rect x="581.5" y="549" width="573.3" height="15.0" fill="rgb(211,16,20)" rx="2" ry="2" />
<text text-anchor="" x="584.54" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;bio::io::fasta::IndexedReader&lt;R&gt;&gt;::read_line</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio::stats::pairhmm::ln_sum3_exp_approx (78 samples, 11.62%)</title><rect x="354.7" y="501" width="137.1" height="15.0" fill="rgb(213,226,23)" rx="2" ry="2" />
<text text-anchor="" x="357.68" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::pairh..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="1156.6" y="453" width="1.7" height="15.0" fill="rgb(221,98,32)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::slice::Iter&lt;'a, T&gt;&gt;::post_inc_start (2 samples, 0.30%)</title><rect x="449.6" y="373" width="3.6" height="15.0" fill="rgb(236,7,52)" rx="2" ry="2" />
<text text-anchor="" x="452.64" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::deref::DerefMut&gt;::deref_mut (18 samples, 2.68%)</title><rect x="152.4" y="485" width="31.7" height="15.0" fill="rgb(223,126,15)" rx="2" ry="2" />
<text text-anchor="" x="155.44" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_iralloct (197 samples, 29.36%)</title><rect x="590.3" y="405" width="346.5" height="15.0" fill="rgb(246,10,4)" rx="2" ry="2" />
<text text-anchor="" x="593.33" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >je_iralloct</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel&lt;libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs&gt;&gt;::map (2 samples, 0.30%)</title><rect x="562.2" y="597" width="3.5" height="15.0" fill="rgb(241,117,54)" rx="2" ry="2" />
<text text-anchor="" x="565.19" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::iter::Enumerate&lt;I&gt; as core::iter::iterator::Iterator&gt;::nth::{{closure}} (1 samples, 0.15%)</title><rect x="430.3" y="421" width="1.8" height="15.0" fill="rgb(205,45,49)" rx="2" ry="2" />
<text text-anchor="" x="433.30" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::alloc::Global as core::alloc::Alloc&gt;::realloc (197 samples, 29.36%)</title><rect x="590.3" y="453" width="346.5" height="15.0" fill="rgb(216,91,48)" rx="2" ry="2" />
<text text-anchor="" x="593.33" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;alloc::alloc::Global as core::alloc::Alloc&gt;::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="10.0" y="901" width="1.8" height="15.0" fill="rgb(234,125,47)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (5 samples, 0.75%)</title><rect x="340.6" y="469" width="8.8" height="15.0" fill="rgb(222,136,32)" rx="2" ry="2" />
<text text-anchor="" x="343.61" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::deref::Deref&gt;::deref (9 samples, 1.34%)</title><rect x="124.3" y="485" width="15.8" height="15.0" fill="rgb(248,189,37)" rx="2" ry="2" />
<text text-anchor="" x="127.31" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;f64 as core::ops::arith::Add&gt;::add (1 samples, 0.15%)</title><rect x="562.2" y="437" width="1.7" height="15.0" fill="rgb(248,154,24)" rx="2" ry="2" />
<text text-anchor="" x="565.19" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_purge_to_limit (16 samples, 2.38%)</title><rect x="908.6" y="261" width="28.2" height="15.0" fill="rgb(226,109,48)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_maybe_purge (8 samples, 1.19%)</title><rect x="565.7" y="565" width="14.1" height="15.0" fill="rgb(249,13,45)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_libc_read (49 samples, 7.30%)</title><rect x="1059.9" y="469" width="86.1" height="15.0" fill="rgb(223,95,54)" rx="2" ry="2" />
<text text-anchor="" x="1062.87" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_libc_read</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (25 samples, 3.73%)</title><rect x="864.7" y="229" width="43.9" height="15.0" fill="rgb(205,141,2)" rx="2" ry="2" />
<text text-anchor="" x="867.66" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ke..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::reserve (198 samples, 29.51%)</title><rect x="590.3" y="485" width="348.2" height="15.0" fill="rgb(243,170,36)" rx="2" ry="2" />
<text text-anchor="" x="593.33" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::reserve</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;f64 as core::ops::arith::Add&gt;::add (1 samples, 0.15%)</title><rect x="266.8" y="437" width="1.7" height="15.0" fill="rgb(228,61,49)" rx="2" ry="2" />
<text text-anchor="" x="269.75" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_huge_dalloc (16 samples, 2.38%)</title><rect x="908.6" y="325" width="28.2" height="15.0" fill="rgb(250,137,9)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (16 samples, 2.38%)</title><rect x="908.6" y="133" width="28.2" height="15.0" fill="rgb(221,49,20)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (669 samples, 99.70%)</title><rect x="13.5" y="965" width="1176.5" height="15.0" fill="rgb(207,215,19)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::LogProb as core::cmp::PartialOrd&gt;::gt (1 samples, 0.15%)</title><rect x="493.6" y="485" width="1.8" height="15.0" fill="rgb(211,189,5)" rx="2" ry="2" />
<text text-anchor="" x="496.61" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;rust_htslib::bam::Reader as rust_htslib::bam::Read&gt;::read (20 samples, 2.98%)</title><rect x="1154.8" y="597" width="35.2" height="15.0" fill="rgb(249,111,14)" rx="2" ry="2" />
<text text-anchor="" x="1157.83" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio::stats::probs::LogProb::ln_add_exp (6 samples, 0.89%)</title><rect x="551.6" y="165" width="10.6" height="15.0" fill="rgb(240,193,4)" rx="2" ry="2" />
<text text-anchor="" x="554.64" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ieee754_exp_avx (2 samples, 0.30%)</title><rect x="20.6" y="309" width="3.5" height="15.0" fill="rgb(224,5,3)" rx="2" ry="2" />
<text text-anchor="" x="23.55" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel&lt;libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs&gt;&gt;::joint_prob (8 samples, 1.19%)</title><rect x="548.1" y="597" width="14.1" height="15.0" fill="rgb(231,56,2)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="10.0" y="885" width="1.8" height="15.0" fill="rgb(231,168,6)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::thread::Builder::spawn::{{closure}}::{{closure}} (669 samples, 99.70%)</title><rect x="13.5" y="789" width="1176.5" height="15.0" fill="rgb(243,190,30)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::thread::Builder::spawn::{{closure}}::{{closure}}</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::reads::IndelEvidence::prob::{{closure}} (1 samples, 0.15%)</title><rect x="544.6" y="405" width="1.8" height="15.0" fill="rgb(248,203,25)" rx="2" ry="2" />
<text text-anchor="" x="547.61" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::panicking::try (669 samples, 99.70%)</title><rect x="13.5" y="853" width="1176.5" height="15.0" fill="rgb(217,90,26)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panicking::try</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::iter::Enumerate&lt;I&gt; as core::iter::iterator::Iterator&gt;::next (1 samples, 0.15%)</title><rect x="544.6" y="485" width="1.8" height="15.0" fill="rgb(237,164,31)" rx="2" ry="2" />
<text text-anchor="" x="547.61" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::iter::Map&lt;I, F&gt; as core::iter::iterator::Iterator&gt;::next (8 samples, 1.19%)</title><rect x="548.1" y="501" width="14.1" height="15.0" fill="rgb(226,66,47)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;f64 as bio::utils::fastexp::FastExp&lt;f64&gt;&gt;::fastexp (1 samples, 0.15%)</title><rect x="546.4" y="469" width="1.7" height="15.0" fill="rgb(212,201,3)" rx="2" ry="2" />
<text text-anchor="" x="549.36" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T, I&gt;&gt;::from_iter (4 samples, 0.60%)</title><rect x="18.8" y="469" width="7.0" height="15.0" fill="rgb(237,32,13)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="1156.6" y="437" width="1.7" height="15.0" fill="rgb(239,155,1)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;'a mut F&gt;::call_once (8 samples, 1.19%)</title><rect x="548.1" y="469" width="14.1" height="15.0" fill="rgb(214,119,43)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::option::Option&lt;T&gt;&gt;::map (1 samples, 0.15%)</title><rect x="544.6" y="437" width="1.8" height="15.0" fill="rgb(210,98,13)" rx="2" ry="2" />
<text text-anchor="" x="547.61" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::LogProb as core::ops::deref::Deref&gt;::deref (1 samples, 0.15%)</title><rect x="414.5" y="485" width="1.7" height="15.0" fill="rgb(232,167,47)" rx="2" ry="2" />
<text text-anchor="" x="417.47" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (44 samples, 6.56%)</title><rect x="831.3" y="293" width="77.3" height="15.0" fill="rgb(239,189,14)" rx="2" ry="2" />
<text text-anchor="" x="834.25" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;F as alloc::boxed::FnBox&lt;A&gt;&gt;::call_box (669 samples, 99.70%)</title><rect x="13.5" y="901" width="1176.5" height="15.0" fill="rgb(230,132,6)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;F as alloc::boxed::FnBox&lt;A&gt;&gt;::call_box</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bgzf_read (3 samples, 0.45%)</title><rect x="13.5" y="469" width="5.3" height="15.0" fill="rgb(231,30,17)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for u64&gt;::le (3 samples, 0.45%)</title><rect x="1149.6" y="501" width="5.2" height="15.0" fill="rgb(229,214,5)" rx="2" ry="2" />
<text text-anchor="" x="1152.55" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::evidence::reads::ReferenceEmissionParams&lt;'a&gt; as bio::stats::pairhmm::EmissionParameters&gt;::prob_emit_y (5 samples, 0.75%)</title><rect x="340.6" y="501" width="8.8" height="15.0" fill="rgb(240,60,23)" rx="2" ry="2" />
<text text-anchor="" x="343.61" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (85 samples, 12.67%)</title><rect x="759.2" y="357" width="149.4" height="15.0" fill="rgb(230,88,54)" rx="2" ry="2" />
<text text-anchor="" x="762.15" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne.allsyms]]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio::stats::probs::LogProb::ln_add_exp (4 samples, 0.60%)</title><rect x="491.8" y="501" width="7.1" height="15.0" fill="rgb(215,128,18)" rx="2" ry="2" />
<text text-anchor="" x="494.85" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::num::&lt;impl usize&gt;::overflowing_add (2 samples, 0.30%)</title><rect x="541.1" y="469" width="3.5" height="15.0" fill="rgb(236,152,34)" rx="2" ry="2" />
<text text-anchor="" x="544.09" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::LogProb as core::cmp::PartialOrd&gt;::gt (3 samples, 0.45%)</title><rect x="423.3" y="469" width="5.2" height="15.0" fill="rgb(251,69,13)" rx="2" ry="2" />
<text text-anchor="" x="426.26" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::iter::Enumerate&lt;I&gt; as core::iter::iterator::Iterator&gt;::fold::{{closure}} (9 samples, 1.34%)</title><rect x="432.1" y="389" width="15.8" height="15.0" fill="rgb(226,73,41)" rx="2" ry="2" />
<text text-anchor="" x="435.06" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (8 samples, 1.19%)</title><rect x="894.6" y="213" width="14.0" height="15.0" fill="rgb(208,52,34)" rx="2" ry="2" />
<text text-anchor="" x="897.56" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;f64 as core::ops::arith::Add&gt;::add (1 samples, 0.15%)</title><rect x="428.5" y="453" width="1.8" height="15.0" fill="rgb(228,174,20)" rx="2" ry="2" />
<text text-anchor="" x="431.54" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::reserve_internal (198 samples, 29.51%)</title><rect x="590.3" y="469" width="348.2" height="15.0" fill="rgb(209,98,41)" rx="2" ry="2" />
<text text-anchor="" x="593.33" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::reserve_internal</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (24 samples, 3.58%)</title><rect x="1005.4" y="437" width="42.2" height="15.0" fill="rgb(235,57,8)" rx="2" ry="2" />
<text text-anchor="" x="1008.35" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[k..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_chunk_dalloc_huge (16 samples, 2.38%)</title><rect x="908.6" y="309" width="28.2" height="15.0" fill="rgb(228,80,27)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_ncpus (1 samples, 0.15%)</title><rect x="11.8" y="869" width="1.7" height="15.0" fill="rgb(222,134,24)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::sample::Sample::extract_observations (304 samples, 45.31%)</title><rect x="13.5" y="581" width="534.6" height="15.0" fill="rgb(249,80,3)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::sample::Sample::extract_observations</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rust_htslib::bam::record::Seq::encoded_base (3 samples, 0.45%)</title><rect x="300.2" y="453" width="5.2" height="15.0" fill="rgb(219,127,38)" rx="2" ry="2" />
<text text-anchor="" x="303.16" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::io::buffered::BufReader&lt;R&gt; as std::io::BufRead&gt;::consume (1 samples, 0.15%)</title><rect x="1054.6" y="533" width="1.7" height="15.0" fill="rgb(223,42,43)" rx="2" ry="2" />
<text text-anchor="" x="1057.59" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::iter::iterator::Iterator::collect (8 samples, 1.19%)</title><rect x="548.1" y="405" width="14.1" height="15.0" fill="rgb(222,155,53)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_GI___sysconf (1 samples, 0.15%)</title><rect x="11.8" y="853" width="1.7" height="15.0" fill="rgb(238,151,45)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::io::fasta::IndexedReader&lt;R&gt;&gt;::read_into_buffer (327 samples, 48.73%)</title><rect x="579.8" y="565" width="575.0" height="15.0" fill="rgb(239,18,7)" rx="2" ry="2" />
<text text-anchor="" x="582.78" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;bio::io::fasta::IndexedReader&lt;R&gt;&gt;::read_into_buffer</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (15 samples, 2.24%)</title><rect x="1021.2" y="421" width="26.4" height="15.0" fill="rgb(246,133,42)" rx="2" ry="2" />
<text text-anchor="" x="1024.18" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_chunk_dalloc_wrapper (16 samples, 2.38%)</title><rect x="908.6" y="229" width="28.2" height="15.0" fill="rgb(216,108,39)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::iter::iterator::Iterator::sum (12 samples, 1.79%)</title><rect x="432.1" y="469" width="21.1" height="15.0" fill="rgb(247,117,6)" rx="2" ry="2" />
<text text-anchor="" x="435.06" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_unstash_purged (8 samples, 1.19%)</title><rect x="565.7" y="517" width="14.1" height="15.0" fill="rgb(214,72,11)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="1156.6" y="405" width="1.7" height="15.0" fill="rgb(254,126,4)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_sdalloc (16 samples, 2.38%)</title><rect x="908.6" y="341" width="28.2" height="15.0" fill="rgb(226,10,17)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::FromIterator&lt;T&gt;&gt;::from_iter (8 samples, 1.19%)</title><rect x="548.1" y="389" width="14.1" height="15.0" fill="rgb(246,55,34)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio::stats::probs::LogProb::ln_simpsons_integrate_exp (8 samples, 1.19%)</title><rect x="548.1" y="437" width="14.1" height="15.0" fill="rgb(213,172,5)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::panicking::try (669 samples, 99.70%)</title><rect x="13.5" y="725" width="1176.5" height="15.0" fill="rgb(243,208,19)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panicking::try</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_memcpy_sse2_unaligned_erms (61 samples, 9.09%)</title><rect x="940.3" y="485" width="107.3" height="15.0" fill="rgb(250,32,39)" rx="2" ry="2" />
<text text-anchor="" x="943.28" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_memcpy_sse2_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_maybe_purge_ratio (16 samples, 2.38%)</title><rect x="908.6" y="277" width="28.2" height="15.0" fill="rgb(231,24,1)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inflate_block (3 samples, 0.45%)</title><rect x="13.5" y="437" width="5.3" height="15.0" fill="rgb(216,224,11)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lib::call_tumor_normal (669 samples, 99.70%)</title><rect x="13.5" y="629" width="1176.5" height="15.0" fill="rgb(207,211,13)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >lib::call_tumor_normal</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_init_hard (1 samples, 0.15%)</title><rect x="11.8" y="901" width="1.7" height="15.0" fill="rgb(234,131,20)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_maybe_purge (16 samples, 2.38%)</title><rect x="908.6" y="293" width="28.2" height="15.0" fill="rgb(244,130,6)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bam_cigar2rqlens (1 samples, 0.15%)</title><rect x="1154.8" y="565" width="1.8" height="15.0" fill="rgb(224,25,9)" rx="2" ry="2" />
<text text-anchor="" x="1157.83" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::slice::&lt;impl core::ops::index::Index&lt;I&gt; for [T]&gt;::index (6 samples, 0.89%)</title><rect x="289.6" y="453" width="10.6" height="15.0" fill="rgb(242,44,52)" rx="2" ry="2" />
<text text-anchor="" x="292.61" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::fragments::IndelEvidence::prob_sample_alt::{{closure}} (4 samples, 0.60%)</title><rect x="18.8" y="533" width="7.0" height="15.0" fill="rgb(242,103,23)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::option::Option&lt;T&gt;&gt;::map (8 samples, 1.19%)</title><rect x="548.1" y="309" width="14.1" height="15.0" fill="rgb(252,47,22)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::slice::Iter&lt;'a, T&gt; as core::iter::iterator::Iterator&gt;::next (3 samples, 0.45%)</title><rect x="447.9" y="389" width="5.3" height="15.0" fill="rgb(219,50,27)" rx="2" ry="2" />
<text text-anchor="" x="450.88" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::panicking::try::do_call (669 samples, 99.70%)</title><rect x="13.5" y="821" width="1176.5" height="15.0" fill="rgb(205,23,6)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panicking::try::do_call</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (13 samples, 1.94%)</title><rect x="1024.7" y="389" width="22.9" height="15.0" fill="rgb(251,205,29)" rx="2" ry="2" />
<text text-anchor="" x="1027.69" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::LogProb as core::ops::arith::Add&gt;::add (1 samples, 0.15%)</title><rect x="330.1" y="453" width="1.7" height="15.0" fill="rgb(224,29,19)" rx="2" ry="2" />
<text text-anchor="" x="333.06" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_log1p (2 samples, 0.30%)</title><rect x="495.4" y="469" width="3.5" height="15.0" fill="rgb(205,125,39)" rx="2" ry="2" />
<text text-anchor="" x="498.37" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (11 samples, 1.64%)</title><rect x="1028.2" y="373" width="19.4" height="15.0" fill="rgb(218,105,4)" rx="2" ry="2" />
<text text-anchor="" x="1031.21" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;f64 as core::ops::arith::Sub&gt;::sub (2 samples, 0.30%)</title><rect x="416.2" y="469" width="3.5" height="15.0" fill="rgb(234,148,10)" rx="2" ry="2" />
<text text-anchor="" x="419.23" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gsl_cdf_ugaussian_P (3 samples, 0.45%)</title><rect x="18.8" y="357" width="5.3" height="15.0" fill="rgb(205,43,19)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (671 samples, 100%)</title><rect x="10.0" y="1013" width="1180.0" height="15.0" fill="rgb(211,74,9)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::sys_common::backtrace::_rust_begin_short_backtrace (669 samples, 99.70%)</title><rect x="13.5" y="773" width="1176.5" height="15.0" fill="rgb(213,159,51)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys_common::backtrace::_rust_begin_short_backtrace</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T, I&gt;&gt;::spec_extend (8 samples, 1.19%)</title><rect x="548.1" y="357" width="14.1" height="15.0" fill="rgb(248,198,8)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hts_itr_next (3 samples, 0.45%)</title><rect x="13.5" y="517" width="5.3" height="15.0" fill="rgb(254,130,10)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::PairPileup&lt;'a, A, B, P&gt;&gt;::case_likelihood (8 samples, 1.19%)</title><rect x="548.1" y="245" width="14.1" height="15.0" fill="rgb(206,178,8)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (40 samples, 5.96%)</title><rect x="838.3" y="261" width="70.3" height="15.0" fill="rgb(225,84,34)" rx="2" ry="2" />
<text text-anchor="" x="841.29" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt;&gt;::extend_from_slice (264 samples, 39.34%)</title><rect x="590.3" y="533" width="464.3" height="15.0" fill="rgb(236,14,23)" rx="2" ry="2" />
<text text-anchor="" x="593.33" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;alloc::vec::Vec&lt;T&gt;&gt;::extend_from_slice</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::evidence::reads::DeletionEmissionParams&lt;'a&gt; as libprosic::model::evidence::reads::RefBaseEmission&gt;::ref_base (2 samples, 0.30%)</title><rect x="249.2" y="485" width="3.5" height="15.0" fill="rgb(244,124,16)" rx="2" ry="2" />
<text text-anchor="" x="252.17" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_GI___read_nocancel (1 samples, 0.15%)</title><rect x="11.8" y="773" width="1.7" height="15.0" fill="rgb(242,202,19)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>linux_sysconf (1 samples, 0.15%)</title><rect x="11.8" y="837" width="1.7" height="15.0" fill="rgb(236,104,38)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;f64 as core::ops::arith::Add&gt;::add (8 samples, 1.19%)</title><rect x="233.3" y="485" width="14.1" height="15.0" fill="rgb(238,125,22)" rx="2" ry="2" />
<text text-anchor="" x="236.34" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (10 samples, 1.49%)</title><rect x="919.2" y="53" width="17.6" height="15.0" fill="rgb(227,87,2)" rx="2" ry="2" />
<text text-anchor="" x="922.18" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::sys::unix::fd::FileDesc::read (49 samples, 7.30%)</title><rect x="1059.9" y="485" width="86.1" height="15.0" fill="rgb(222,118,24)" rx="2" ry="2" />
<text text-anchor="" x="1062.87" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::iter::Map&lt;I, F&gt; as core::iter::traits::DoubleEndedIterator&gt;::next_back (1 samples, 0.15%)</title><rect x="544.6" y="453" width="1.8" height="15.0" fill="rgb(251,104,19)" rx="2" ry="2" />
<text text-anchor="" x="547.61" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bgzf_uncompress (12 samples, 1.79%)</title><rect x="1158.3" y="517" width="21.1" height="15.0" fill="rgb(220,145,44)" rx="2" ry="2" />
<text text-anchor="" x="1161.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;f64 as core::iter::traits::Sum&gt;::sum (12 samples, 1.79%)</title><rect x="432.1" y="453" width="21.1" height="15.0" fill="rgb(208,99,45)" rx="2" ry="2" />
<text text-anchor="" x="435.06" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (1 samples, 0.15%)</title><rect x="328.3" y="453" width="1.8" height="15.0" fill="rgb(248,139,34)" rx="2" ry="2" />
<text text-anchor="" x="331.30" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rust_htslib::bam::record::Seq::encoded_base (1 samples, 0.15%)</title><rect x="544.6" y="373" width="1.8" height="15.0" fill="rgb(225,155,9)" rx="2" ry="2" />
<text text-anchor="" x="547.61" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;f64 as bio::utils::fastexp::FastExp&lt;f64&gt;&gt;::fastexp (6 samples, 0.89%)</title><rect x="437.3" y="341" width="10.6" height="15.0" fill="rgb(215,4,12)" rx="2" ry="2" />
<text text-anchor="" x="440.33" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::min (22 samples, 3.28%)</title><rect x="500.6" y="501" width="38.7" height="15.0" fill="rgb(235,73,13)" rx="2" ry="2" />
<text text-anchor="" x="503.64" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ieee754_log_avx (1 samples, 0.15%)</title><rect x="24.1" y="309" width="1.7" height="15.0" fill="rgb(224,145,43)" rx="2" ry="2" />
<text text-anchor="" x="27.07" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::boxed::Box&lt;(dyn alloc::boxed::FnBox&lt;A, Output$u3d$R&gt; $u2b$ 'a)&gt; as core::ops::function::FnOnce&lt;A&gt;&gt;::call_once (669 samples, 99.70%)</title><rect x="13.5" y="917" width="1176.5" height="15.0" fill="rgb(227,199,48)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;alloc::boxed::Box&lt;(dyn alloc::boxed::FnBox&lt;A, Output$u3d$R&gt; $u2b$ 'a)&gt; as core::ops::function::FnOnce&lt;A&gt;&gt;::call_once</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy@plt (1 samples, 0.15%)</title><rect x="1047.6" y="485" width="1.7" height="15.0" fill="rgb(216,139,1)" rx="2" ry="2" />
<text text-anchor="" x="1050.56" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_pages_purge (8 samples, 1.19%)</title><rect x="565.7" y="485" width="14.1" height="15.0" fill="rgb(239,202,51)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_libc_start_main (1 samples, 0.15%)</title><rect x="11.8" y="965" width="1.7" height="15.0" fill="rgb(218,147,5)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_huge_ralloc (197 samples, 29.36%)</title><rect x="590.3" y="389" width="346.5" height="15.0" fill="rgb(207,153,46)" rx="2" ry="2" />
<text text-anchor="" x="593.33" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >je_huge_ralloc</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::call::pairwise::call (649 samples, 96.72%)</title><rect x="13.5" y="613" width="1141.3" height="15.0" fill="rgb(234,15,35)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::call::pairwise::call</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::fragments::IndelEvidence::prob_sample_alt::{{closure}}::{{closure}} (4 samples, 0.60%)</title><rect x="18.8" y="405" width="7.0" height="15.0" fill="rgb(225,44,43)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::Prob as core::ops::arith::Add&gt;::add (1 samples, 0.15%)</title><rect x="548.1" y="165" width="1.8" height="15.0" fill="rgb(206,146,23)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;F as alloc::boxed::FnBox&lt;A&gt;&gt;::call_box (669 samples, 99.70%)</title><rect x="13.5" y="693" width="1176.5" height="15.0" fill="rgb(242,167,41)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;F as alloc::boxed::FnBox&lt;A&gt;&gt;::call_box</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (12 samples, 1.79%)</title><rect x="915.7" y="85" width="21.1" height="15.0" fill="rgb(241,46,7)" rx="2" ry="2" />
<text text-anchor="" x="918.66" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bgzf_read_block (3 samples, 0.45%)</title><rect x="13.5" y="453" width="5.3" height="15.0" fill="rgb(232,225,54)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::evidence::reads::DeletionEmissionParams&lt;'a&gt; as bio::stats::pairhmm::EmissionParameters&gt;::prob_emit_xy (12 samples, 1.79%)</title><rect x="247.4" y="501" width="21.1" height="15.0" fill="rgb(216,157,42)" rx="2" ry="2" />
<text text-anchor="" x="250.41" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_isdalloct (16 samples, 2.38%)</title><rect x="908.6" y="357" width="28.2" height="15.0" fill="rgb(213,82,26)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="906.9" y="197" width="1.7" height="15.0" fill="rgb(224,167,42)" rx="2" ry="2" />
<text text-anchor="" x="909.87" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::f64::&lt;impl f64&gt;::log_wrapper (1 samples, 0.15%)</title><rect x="24.1" y="341" width="1.7" height="15.0" fill="rgb(229,58,9)" rx="2" ry="2" />
<text text-anchor="" x="27.07" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (16 samples, 2.38%)</title><rect x="908.6" y="149" width="28.2" height="15.0" fill="rgb(222,186,23)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;f64 as core::ops::arith::Add&gt;::add (3 samples, 0.45%)</title><rect x="331.8" y="437" width="5.3" height="15.0" fill="rgb(236,45,51)" rx="2" ry="2" />
<text text-anchor="" x="334.82" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_log1p (1 samples, 0.15%)</title><rect x="549.9" y="165" width="1.7" height="15.0" fill="rgb(241,157,35)" rx="2" ry="2" />
<text text-anchor="" x="552.88" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt;&gt;::extend_desugared (8 samples, 1.19%)</title><rect x="548.1" y="341" width="14.1" height="15.0" fill="rgb(254,104,51)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::iter::FilterMap&lt;I, F&gt; as core::iter::iterator::Iterator&gt;::fold::{{closure}} (9 samples, 1.34%)</title><rect x="432.1" y="373" width="15.8" height="15.0" fill="rgb(223,127,12)" rx="2" ry="2" />
<text text-anchor="" x="435.06" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::slice::&lt;impl core::ops::index::Index&lt;I&gt; for [T]&gt;::index (3 samples, 0.45%)</title><rect x="344.1" y="453" width="5.3" height="15.0" fill="rgb(251,57,17)" rx="2" ry="2" />
<text text-anchor="" x="347.13" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::sync::once::Once::call_once (2 samples, 0.30%)</title><rect x="337.1" y="405" width="3.5" height="15.0" fill="rgb(250,118,46)" rx="2" ry="2" />
<text text-anchor="" x="340.09" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_chunk_dalloc_huge (8 samples, 1.19%)</title><rect x="565.7" y="581" width="14.1" height="15.0" fill="rgb(228,100,39)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libgs....0] (3 samples, 0.45%)</title><rect x="18.8" y="341" width="5.3" height="15.0" fill="rgb(240,218,28)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref&gt;::deref (2 samples, 0.30%)</title><rect x="337.1" y="453" width="3.5" height="15.0" fill="rgb(209,160,22)" rx="2" ry="2" />
<text text-anchor="" x="340.09" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::num::&lt;impl usize&gt;::checked_add (2 samples, 0.30%)</title><rect x="541.1" y="485" width="3.5" height="15.0" fill="rgb(233,142,27)" rx="2" ry="2" />
<text text-anchor="" x="544.09" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itertools::Itertools::collect_vec (8 samples, 1.19%)</title><rect x="548.1" y="581" width="14.1" height="15.0" fill="rgb(249,94,10)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::f64::&lt;impl f64&gt;::ln::{{closure}} (1 samples, 0.15%)</title><rect x="24.1" y="325" width="1.7" height="15.0" fill="rgb(226,21,11)" rx="2" ry="2" />
<text text-anchor="" x="27.07" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_GI___get_nprocs (1 samples, 0.15%)</title><rect x="11.8" y="805" width="1.7" height="15.0" fill="rgb(215,205,24)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_log1p (21 samples, 3.13%)</title><rect x="453.2" y="453" width="36.9" height="15.0" fill="rgb(233,51,0)" rx="2" ry="2" />
<text text-anchor="" x="456.16" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::reads::ReadEmission::prob_match_mismatch (9 samples, 1.34%)</title><rect x="252.7" y="485" width="15.8" height="15.0" fill="rgb(242,227,45)" rx="2" ry="2" />
<text text-anchor="" x="255.68" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_unstash_purged (16 samples, 2.38%)</title><rect x="908.6" y="245" width="28.2" height="15.0" fill="rgb(247,154,7)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel&lt;libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs&gt;&gt;::joint_prob::{{closure}} (8 samples, 1.19%)</title><rect x="548.1" y="453" width="14.1" height="15.0" fill="rgb(227,222,0)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::num::&lt;impl u8&gt;::to_ascii_uppercase (9 samples, 1.34%)</title><rect x="305.4" y="469" width="15.9" height="15.0" fill="rgb(238,184,28)" rx="2" ry="2" />
<text text-anchor="" x="308.44" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for f64&gt;::partial_cmp (6 samples, 0.89%)</title><rect x="403.9" y="469" width="10.6" height="15.0" fill="rgb(245,93,38)" rx="2" ry="2" />
<text text-anchor="" x="406.92" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::slice::&lt;impl [T]&gt;::copy_from_slice (63 samples, 9.39%)</title><rect x="938.5" y="501" width="110.8" height="15.0" fill="rgb(222,25,20)" rx="2" ry="2" />
<text text-anchor="" x="941.52" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::slice::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_observation_case_control (2 samples, 0.30%)</title><rect x="562.2" y="469" width="3.5" height="15.0" fill="rgb(237,132,19)" rx="2" ry="2" />
<text text-anchor="" x="565.19" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt;&gt;::reserve (198 samples, 29.51%)</title><rect x="590.3" y="501" width="348.2" height="15.0" fill="rgb(252,168,26)" rx="2" ry="2" />
<text text-anchor="" x="593.33" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;alloc::vec::Vec&lt;T&gt;&gt;::reserve</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.15%)</title><rect x="10.0" y="837" width="1.8" height="15.0" fill="rgb(242,194,12)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup::{{closure}} (2 samples, 0.30%)</title><rect x="562.2" y="485" width="3.5" height="15.0" fill="rgb(223,46,30)" rx="2" ry="2" />
<text text-anchor="" x="565.19" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (8 samples, 1.19%)</title><rect x="565.7" y="405" width="14.1" height="15.0" fill="rgb(235,33,38)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::f64::&lt;impl f64&gt;::ln (1 samples, 0.15%)</title><rect x="24.1" y="357" width="1.7" height="15.0" fill="rgb(232,130,3)" rx="2" ry="2" />
<text text-anchor="" x="27.07" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt;&gt;::extend_desugared (4 samples, 0.60%)</title><rect x="18.8" y="437" width="7.0" height="15.0" fill="rgb(223,65,48)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ops::function::FnOnce::call_once (669 samples, 99.70%)</title><rect x="13.5" y="677" width="1176.5" height="15.0" fill="rgb(253,160,16)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::ops::function::FnOnce::call_once</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio::stats::probs::LogProb::ln_sum_exp (1 samples, 0.15%)</title><rect x="498.9" y="501" width="1.7" height="15.0" fill="rgb(228,13,38)" rx="2" ry="2" />
<text text-anchor="" x="501.88" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::sample::RecordBuffer::fill (3 samples, 0.45%)</title><rect x="13.5" y="565" width="5.3" height="15.0" fill="rgb(234,84,49)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (38 samples, 5.66%)</title><rect x="1079.2" y="357" width="66.8" height="15.0" fill="rgb(206,214,3)" rx="2" ry="2" />
<text text-anchor="" x="1082.21" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::thread::Builder::spawn::{{closure}} (669 samples, 99.70%)</title><rect x="13.5" y="885" width="1176.5" height="15.0" fill="rgb(219,7,21)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::thread::Builder::spawn::{{closure}}</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::min (5 samples, 0.75%)</title><rect x="1146.0" y="533" width="8.8" height="15.0" fill="rgb(228,131,17)" rx="2" ry="2" />
<text text-anchor="" x="1149.04" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for usize&gt;::le (6 samples, 0.89%)</title><rect x="528.8" y="469" width="10.5" height="15.0" fill="rgb(224,193,2)" rx="2" ry="2" />
<text text-anchor="" x="531.78" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rust_htslib::bam::itr_next (3 samples, 0.45%)</title><rect x="13.5" y="533" width="5.3" height="15.0" fill="rgb(221,82,28)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (16 samples, 2.38%)</title><rect x="908.6" y="117" width="28.2" height="15.0" fill="rgb(226,128,30)" rx="2" ry="2" />
<text text-anchor="" x="911.63" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::FromIterator&lt;T&gt;&gt;::from_iter (4 samples, 0.60%)</title><rect x="18.8" y="485" width="7.0" height="15.0" fill="rgb(231,159,53)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;'a mut F&gt;::call_once (8 samples, 1.19%)</title><rect x="548.1" y="293" width="14.1" height="15.0" fill="rgb(250,211,9)" rx="2" ry="2" />
<text text-anchor="" x="551.12" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_rust_maybe_catch_panic (669 samples, 99.70%)</title><rect x="13.5" y="709" width="1176.5" height="15.0" fill="rgb(215,52,25)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_rust_maybe_catch_panic</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ops::function::FnOnce::call_once (669 samples, 99.70%)</title><rect x="13.5" y="645" width="1176.5" height="15.0" fill="rgb(211,69,28)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::ops::function::FnOnce::call_once</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (38 samples, 5.66%)</title><rect x="1079.2" y="373" width="66.8" height="15.0" fill="rgb(245,132,44)" rx="2" ry="2" />
<text text-anchor="" x="1082.21" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;rust_htslib::bam::record::Seq&lt;'a&gt; as core::ops::index::Index&lt;usize&gt;&gt;::index (3 samples, 0.45%)</title><rect x="300.2" y="469" width="5.2" height="15.0" fill="rgb(229,96,1)" rx="2" ry="2" />
<text text-anchor="" x="303.16" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::reads::IndelEvidence::prob (297 samples, 44.26%)</title><rect x="25.8" y="533" width="522.3" height="15.0" fill="rgb(227,55,17)" rx="2" ry="2" />
<text text-anchor="" x="28.83" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::evidence::reads::IndelEvidence::prob</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (1 samples, 0.15%)</title><rect x="254.4" y="469" width="1.8" height="15.0" fill="rgb(243,7,22)" rx="2" ry="2" />
<text text-anchor="" x="257.44" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_libc_read (1 samples, 0.15%)</title><rect x="1156.6" y="469" width="1.7" height="15.0" fill="rgb(231,214,53)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::utils::ReferenceBuffer::seq (327 samples, 48.73%)</title><rect x="579.8" y="597" width="575.0" height="15.0" fill="rgb(235,66,38)" rx="2" ry="2" />
<text text-anchor="" x="582.78" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::utils::ReferenceBuffer::seq</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bgzf_read (19 samples, 2.83%)</title><rect x="1156.6" y="565" width="33.4" height="15.0" fill="rgb(205,182,50)" rx="2" ry="2" />
<text text-anchor="" x="1159.59" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::sys_common::thread::start_thread (669 samples, 99.70%)</title><rect x="13.5" y="933" width="1176.5" height="15.0" fill="rgb(250,131,0)" rx="2" ry="2" />
<text text-anchor="" x="16.52" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys_common::thread::start_thread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (8 samples, 1.19%)</title><rect x="565.7" y="453" width="14.1" height="15.0" fill="rgb(254,70,45)" rx="2" ry="2" />
<text text-anchor="" x="568.71" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;bio::stats::probs::LogProb as core::ops::arith::Add&gt;::add (6 samples, 0.89%)</title><rect x="184.1" y="501" width="10.5" height="15.0" fill="rgb(233,138,45)" rx="2" ry="2" />
<text text-anchor="" x="187.10" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (13 samples, 1.94%)</title><rect x="1024.7" y="405" width="22.9" height="15.0" fill="rgb(222,156,23)" rx="2" ry="2" />
<text text-anchor="" x="1027.69" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::evidence::reads::ReadEmission::prob_match_mismatch (39 samples, 5.81%)</title><rect x="272.0" y="485" width="68.6" height="15.0" fill="rgb(217,57,33)" rx="2" ry="2" />
<text text-anchor="" x="275.03" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libpros..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for f64&gt;::le (1 samples, 0.15%)</title><rect x="412.7" y="437" width="1.8" height="15.0" fill="rgb(234,145,37)" rx="2" ry="2" />
<text text-anchor="" x="415.71" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_init_hard_recursible (1 samples, 0.15%)</title><rect x="11.8" y="885" width="1.7" height="15.0" fill="rgb(229,88,36)" rx="2" ry="2" />
<text text-anchor="" x="14.76" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment