Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dlaehnemann/250cabbf940cee7087ce7e4d7ee4e497 to your computer and use it in GitHub Desktop.
Save dlaehnemann/250cabbf940cee7087ce7e4d7ee4e497 to your computer and use it in GitHub Desktop.
libprosic flamegraph of test09 on branch use-optimized-pairhmm at commit 4503ae6eebd6586d53f4e8ddb263b4ea28dd9ea6 -- proper debug annotations included in release binary and run on the desktop machine
<?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="1350" onload="init(evt)" viewBox="0 0 1200 1350" 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="1350.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="1333" 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="1333" 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>libprosic::model::evidence::reads::IndelEvidence::prob (348 samples, 46.59%)</title><rect x="22.6" y="821" width="549.8" height="15.0" fill="rgb(208,82,4)" rx="2" ry="2" />
<text text-anchor="" x="25.64" y="831.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>chunk_record (1 samples, 0.13%)</title><rect x="11.6" y="773" width="1.6" height="15.0" fill="rgb(218,224,43)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>&lt;core::iter::Enumerate&lt;I&gt; as core::iter::iterator::Iterator&gt;::nth (5 samples, 0.67%)</title><rect x="231.2" y="757" width="7.8" height="15.0" fill="rgb(221,193,39)" rx="2" ry="2" />
<text text-anchor="" x="234.15" 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>memcpy@plt (1 samples, 0.13%)</title><rect x="1153.7" y="821" width="1.5" height="15.0" fill="rgb(213,92,19)" rx="2" ry="2" />
<text text-anchor="" x="1156.67" 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>core::ptr::&lt;impl *const T&gt;::offset (3 samples, 0.40%)</title><rect x="378.1" y="661" width="4.7" height="15.0" fill="rgb(234,110,4)" rx="2" ry="2" />
<text text-anchor="" x="381.06" y="671.5" font-size="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 (35 samples, 4.69%)</title><rect x="572.4" y="757" width="55.2" height="15.0" fill="rgb(248,86,42)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (31 samples, 4.15%)</title><rect x="1006.8" y="709" width="48.9" height="15.0" fill="rgb(243,117,39)" rx="2" ry="2" />
<text text-anchor="" x="1009.76" y="719.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>core::iter::iterator::Iterator::collect (35 samples, 4.69%)</title><rect x="572.4" y="693" width="55.2" height="15.0" fill="rgb(235,49,17)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>log1p@plt (2 samples, 0.27%)</title><rect x="569.2" y="757" width="3.2" height="15.0" fill="rgb(210,74,20)" rx="2" ry="2" />
<text text-anchor="" x="572.20" 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>_w_log1p (2 samples, 0.27%)</title><rect x="566.0" y="757" width="3.2" height="15.0" fill="rgb(208,110,16)" rx="2" ry="2" />
<text text-anchor="" x="569.04" 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>&lt;libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel&lt;libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs&gt;&gt;::joint_prob (35 samples, 4.69%)</title><rect x="572.4" y="885" width="55.2" height="15.0" fill="rgb(239,3,30)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;libp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ops::function::FnOnce::call_once (742 samples, 99.33%)</title><rect x="17.9" y="933" width="1172.1" height="15.0" fill="rgb(207,132,9)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="943.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]] (8 samples, 1.07%)</title><rect x="648.2" y="709" width="12.6" height="15.0" fill="rgb(229,209,44)" rx="2" ry="2" />
<text text-anchor="" x="651.18" 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>arena_purge_to_limit (16 samples, 2.14%)</title><rect x="957.8" y="549" width="25.3" height="15.0" fill="rgb(247,30,0)" rx="2" ry="2" />
<text text-anchor="" x="960.79" y="559.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;alloc::alloc::Global as core::alloc::Alloc&gt;::alloc (1 samples, 0.13%)</title><rect x="1186.8" y="741" width="1.6" height="15.0" fill="rgb(239,87,52)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" 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>[[kerne.allsyms]] (2 samples, 0.27%)</title><rect x="600.8" y="197" width="3.1" height="15.0" fill="rgb(240,2,19)" rx="2" ry="2" />
<text text-anchor="" x="603.79" 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::io::stdio::print_to::{{closure}} (11 samples, 1.47%)</title><rect x="630.8" y="693" width="17.4" height="15.0" fill="rgb(252,5,4)" rx="2" ry="2" />
<text text-anchor="" x="633.80" 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>bio::stats::probs::LogProb::ln_sum_exp (241 samples, 32.26%)</title><rect x="191.7" y="789" width="380.7" height="15.0" fill="rgb(238,197,35)" rx="2" ry="2" />
<text text-anchor="" x="194.66" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::probs::LogProb::ln_sum_exp</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (2 samples, 0.27%)</title><rect x="600.8" y="165" width="3.1" height="15.0" fill="rgb(215,220,2)" rx="2" ry="2" />
<text text-anchor="" x="603.79" 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;std::panic::AssertUnwindSafe&lt;F&gt; as core::ops::function::FnOnce&lt;()&gt;&gt;::call_once (744 samples, 99.60%)</title><rect x="14.7" y="1093" width="1175.3" height="15.0" fill="rgb(232,89,32)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1103.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>core::slice::&lt;impl core::ops::index::Index&lt;I&gt; for [T]&gt;::index (1 samples, 0.13%)</title><rect x="101.6" y="773" width="1.6" height="15.0" fill="rgb(231,189,35)" rx="2" ry="2" />
<text text-anchor="" x="104.62" 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>core::ptr::drop_in_place (1 samples, 0.13%)</title><rect x="16.3" y="981" width="1.6" height="15.0" fill="rgb(213,219,51)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>alloc::slice::hack::to_vec (1 samples, 0.13%)</title><rect x="14.7" y="1013" width="1.6" height="15.0" fill="rgb(235,36,25)" rx="2" ry="2" />
<text text-anchor="" x="17.74" 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>&lt;libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel&lt;libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs&gt;&gt;::map::{{closure}} (13 samples, 1.74%)</title><rect x="627.6" y="837" width="20.6" height="15.0" fill="rgb(218,57,6)" rx="2" ry="2" />
<text text-anchor="" x="630.64" 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;core::iter::FilterMap&lt;I, F&gt; as core::iter::iterator::Iterator&gt;::fold::{{closure}} (79 samples, 10.58%)</title><rect x="239.0" y="677" width="124.8" height="15.0" fill="rgb(244,64,34)" rx="2" ry="2" />
<text text-anchor="" x="242.05" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;core::iter::Fi..</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.27%)</title><rect x="175.9" y="725" width="3.1" height="15.0" fill="rgb(215,156,5)" rx="2" ry="2" />
<text text-anchor="" x="178.86" 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>&lt;alloc::vec::Vec&lt;T&gt;&gt;::extend_from_slice (1 samples, 0.13%)</title><rect x="607.1" y="213" width="1.6" height="15.0" fill="rgb(236,78,2)" rx="2" ry="2" />
<text text-anchor="" x="610.11" 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>lib-bd13d837877 (3 samples, 0.40%)</title><rect x="10.0" y="1285" width="4.7" height="15.0" fill="rgb(249,75,5)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1295.5" font-size="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.07%)</title><rect x="648.2" y="757" width="12.6" height="15.0" fill="rgb(242,65,35)" rx="2" ry="2" />
<text text-anchor="" x="651.18" 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>core::ptr::drop_in_place (1 samples, 0.13%)</title><rect x="11.6" y="981" width="1.6" height="15.0" fill="rgb(247,159,52)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>je_isdalloct (16 samples, 2.14%)</title><rect x="957.8" y="645" width="25.3" height="15.0" fill="rgb(236,203,31)" rx="2" ry="2" />
<text text-anchor="" x="960.79" y="655.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>bgzf_read_block (19 samples, 2.54%)</title><rect x="1156.8" y="837" width="30.0" height="15.0" fill="rgb(239,166,19)" rx="2" ry="2" />
<text text-anchor="" x="1159.83" y="847.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>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.13%)</title><rect x="11.6" y="1029" width="1.6" height="15.0" fill="rgb(244,211,29)" rx="2" ry="2" />
<text text-anchor="" x="14.58" y="1039.5" font-size="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::drop_in_place (1 samples, 0.13%)</title><rect x="16.3" y="1029" width="1.6" height="15.0" fill="rgb(229,227,15)" rx="2" ry="2" />
<text text-anchor="" x="19.32" y="1039.5" font-size="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::mutex::Mutex::raw_unlock (3 samples, 0.40%)</title><rect x="632.4" y="501" width="4.7" height="15.0" fill="rgb(250,222,21)" rx="2" ry="2" />
<text text-anchor="" x="635.38" 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;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::reserve_internal (194 samples, 25.97%)</title><rect x="679.8" y="757" width="306.4" height="15.0" fill="rgb(216,53,39)" rx="2" ry="2" />
<text text-anchor="" x="682.77" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::reserve_i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bgzf_read (19 samples, 2.54%)</title><rect x="1156.8" y="853" width="30.0" height="15.0" fill="rgb(243,200,10)" rx="2" ry="2" />
<text text-anchor="" x="1159.83" y="863.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>&lt;alloc::alloc::Global as core::alloc::Alloc&gt;::dealloc (1 samples, 0.13%)</title><rect x="16.3" y="885" width="1.6" height="15.0" fill="rgb(206,148,6)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>&lt;std::collections::hash::map::HashMap&lt;K, V, S&gt;&gt;::get_mut (1 samples, 0.13%)</title><rect x="17.9" y="853" width="1.6" height="15.0" fill="rgb(222,194,25)" rx="2" ry="2" />
<text text-anchor="" x="20.90" 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>core::fmt::Formatter::write_formatted_parts::write_bytes (3 samples, 0.40%)</title><rect x="603.9" y="293" width="4.8" height="15.0" fill="rgb(206,159,29)" rx="2" ry="2" />
<text text-anchor="" x="606.95" 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>[[kerne.allsyms]] (33 samples, 4.42%)</title><rect x="905.7" y="517" width="52.1" height="15.0" fill="rgb(247,5,28)" rx="2" ry="2" />
<text text-anchor="" x="908.66" y="527.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>&lt;rust_htslib::bam::IndexedReader as rust_htslib::bam::Read&gt;::read (2 samples, 0.27%)</title><rect x="19.5" y="837" width="3.1" height="15.0" fill="rgb(240,190,38)" rx="2" ry="2" />
<text text-anchor="" x="22.48" 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>[[kerne.allsyms]] (12 samples, 1.61%)</title><rect x="964.1" y="373" width="19.0" height="15.0" fill="rgb(218,119,3)" rx="2" ry="2" />
<text text-anchor="" x="967.11" 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::ptr::drop_in_place (2 samples, 0.27%)</title><rect x="597.6" y="245" width="3.2" height="15.0" fill="rgb(227,127,26)" rx="2" ry="2" />
<text text-anchor="" x="600.63" 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>itertools::Itertools::collect_vec (35 samples, 4.69%)</title><rect x="572.4" y="709" width="55.2" height="15.0" fill="rgb(219,4,6)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >itert..</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 (1 samples, 0.13%)</title><rect x="161.6" y="741" width="1.6" height="15.0" fill="rgb(215,174,29)" rx="2" ry="2" />
<text text-anchor="" x="164.65" 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>core::cmp::min (2 samples, 0.27%)</title><rect x="989.4" y="805" width="3.1" height="15.0" fill="rgb(253,103,37)" rx="2" ry="2" />
<text text-anchor="" x="992.38" 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>[[kerne.allsyms]] (2 samples, 0.27%)</title><rect x="600.8" y="181" width="3.1" height="15.0" fill="rgb(250,100,20)" rx="2" ry="2" />
<text text-anchor="" x="603.79" 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>rust_htslib::bam::itr_next (2 samples, 0.27%)</title><rect x="19.5" y="821" width="3.1" height="15.0" fill="rgb(232,198,41)" rx="2" ry="2" />
<text text-anchor="" x="22.48" 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>core::slice::&lt;impl [T]&gt;::iter (1 samples, 0.13%)</title><rect x="382.8" y="773" width="1.6" height="15.0" fill="rgb(219,66,48)" rx="2" ry="2" />
<text text-anchor="" x="385.80" 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>&lt;bio::io::fasta::IndexedReader&lt;R&gt;&gt;::read_line (313 samples, 41.90%)</title><rect x="660.8" y="837" width="494.4" height="15.0" fill="rgb(206,24,44)" rx="2" ry="2" />
<text text-anchor="" x="663.82" y="847.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>core::ptr::drop_in_place (2 samples, 0.27%)</title><rect x="583.4" y="293" width="3.2" height="15.0" fill="rgb(226,153,3)" rx="2" ry="2" />
<text text-anchor="" x="586.41" 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>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;'a mut F&gt;::call_once (35 samples, 4.69%)</title><rect x="572.4" y="581" width="55.2" height="15.0" fill="rgb(253,154,48)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core:..</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 (1 samples, 0.13%)</title><rect x="229.6" y="741" width="1.6" height="15.0" fill="rgb(231,89,22)" rx="2" ry="2" />
<text text-anchor="" x="232.57" 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>&lt;core::cmp::Ordering as core::cmp::PartialEq&gt;::eq (2 samples, 0.27%)</title><rect x="226.4" y="757" width="3.2" height="15.0" fill="rgb(240,187,49)" rx="2" ry="2" />
<text text-anchor="" x="229.41" 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>&lt;f64 as bio::utils::fastexp::FastExp&lt;f64&gt;&gt;::fastexp (1 samples, 0.13%)</title><rect x="578.7" y="437" width="1.6" height="15.0" fill="rgb(226,148,51)" rx="2" ry="2" />
<text text-anchor="" x="581.67" 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;f64 as bio::utils::fastexp::FastExp&lt;f64&gt;&gt;::fastexp (64 samples, 8.57%)</title><rect x="262.7" y="645" width="101.1" height="15.0" fill="rgb(238,38,16)" rx="2" ry="2" />
<text text-anchor="" x="265.74" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;f64 as bio:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (25 samples, 3.35%)</title><rect x="1016.2" y="597" width="39.5" height="15.0" fill="rgb(212,197,51)" rx="2" ry="2" />
<text text-anchor="" x="1019.24" y="607.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.13%)</title><rect x="13.2" y="885" width="1.5" height="15.0" fill="rgb(234,171,40)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>je_arena_sdalloc (16 samples, 2.14%)</title><rect x="957.8" y="629" width="25.3" height="15.0" fill="rgb(237,161,42)" rx="2" ry="2" />
<text text-anchor="" x="960.79" y="639.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>bio::stats::probs::LogProb::ln_add_exp (1 samples, 0.13%)</title><rect x="629.2" y="741" width="1.6" height="15.0" fill="rgb(235,169,5)" rx="2" ry="2" />
<text text-anchor="" x="632.22" 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>std::panic::catch_unwind (742 samples, 99.33%)</title><rect x="17.9" y="1029" width="1172.1" height="15.0" fill="rgb(215,61,40)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="1039.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>core::cmp::impls::&lt;impl core::cmp::PartialOrd for f64&gt;::partial_cmp (1 samples, 0.13%)</title><rect x="629.2" y="709" width="1.6" height="15.0" fill="rgb(235,139,28)" rx="2" ry="2" />
<text text-anchor="" x="632.22" 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>_rust_maybe_catch_panic (744 samples, 99.60%)</title><rect x="14.7" y="1125" width="1175.3" height="15.0" fill="rgb(245,169,20)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1135.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>[lib....1] (17 samples, 2.28%)</title><rect x="1156.8" y="773" width="26.9" height="15.0" fill="rgb(206,26,9)" rx="2" ry="2" />
<text text-anchor="" x="1159.83" 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>core::iter::iterator::Iterator::sum (91 samples, 12.18%)</title><rect x="239.0" y="773" width="143.8" height="15.0" fill="rgb(246,179,15)" rx="2" ry="2" />
<text text-anchor="" x="242.05" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::iter::iterat..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::num::flt2dec::strategy::grisu::format_shortest (11 samples, 1.47%)</title><rect x="610.3" y="277" width="17.3" height="15.0" fill="rgb(210,102,48)" rx="2" ry="2" />
<text text-anchor="" x="613.27" 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>crc32_z (2 samples, 0.27%)</title><rect x="1183.7" y="805" width="3.1" height="15.0" fill="rgb(218,140,13)" rx="2" ry="2" />
<text text-anchor="" x="1186.68" 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>core::ptr::drop_in_place (1 samples, 0.13%)</title><rect x="16.3" y="933" width="1.6" height="15.0" fill="rgb(212,69,17)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>_libc_start_main (3 samples, 0.40%)</title><rect x="10.0" y="1253" width="4.7" height="15.0" fill="rgb(224,15,48)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1263.5" font-size="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 (2 samples, 0.27%)</title><rect x="989.4" y="773" width="3.1" height="15.0" fill="rgb(210,209,32)" rx="2" ry="2" />
<text text-anchor="" x="992.38" 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>core::fmt::Formatter::getcount (1 samples, 0.13%)</title><rect x="586.6" y="325" width="1.6" height="15.0" fill="rgb(221,105,0)" rx="2" ry="2" />
<text text-anchor="" x="589.57" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="14.7" y="949" width="1.6" height="15.0" fill="rgb(222,132,4)" rx="2" ry="2" />
<text text-anchor="" x="17.74" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="14.7" y="965" width="1.6" height="15.0" fill="rgb(238,19,42)" rx="2" ry="2" />
<text text-anchor="" x="17.74" 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>core::ptr::drop_in_place (1 samples, 0.13%)</title><rect x="11.6" y="1045" width="1.6" height="15.0" fill="rgb(238,87,24)" rx="2" ry="2" />
<text text-anchor="" x="14.58" y="1055.5" font-size="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 (1 samples, 0.13%)</title><rect x="172.7" y="757" width="1.6" height="15.0" fill="rgb(211,2,34)" rx="2" ry="2" />
<text text-anchor="" x="175.70" 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>je_iralloct (191 samples, 25.57%)</title><rect x="681.4" y="693" width="301.7" height="15.0" fill="rgb(224,87,18)" rx="2" ry="2" />
<text text-anchor="" x="684.35" y="703.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;alloc::sync::Arc&lt;T&gt;&gt;::drop_slow (1 samples, 0.13%)</title><rect x="16.3" y="997" width="1.6" height="15.0" fill="rgb(224,212,42)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::reserve (1 samples, 0.13%)</title><rect x="607.1" y="165" width="1.6" height="15.0" fill="rgb(224,175,54)" rx="2" ry="2" />
<text text-anchor="" x="610.11" 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>core::fmt::Formatter::write_formatted_parts (4 samples, 0.54%)</title><rect x="632.4" y="597" width="6.3" height="15.0" fill="rgb(237,48,48)" rx="2" ry="2" />
<text text-anchor="" x="635.38" 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>core::ptr::drop_in_place (1 samples, 0.13%)</title><rect x="11.6" y="1013" width="1.6" height="15.0" fill="rgb(230,53,48)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>libprosic::model::likelihood::LatentVariableModel::likelihood_observation_case_control (13 samples, 1.74%)</title><rect x="627.6" y="757" width="20.6" height="15.0" fill="rgb(223,14,6)" rx="2" ry="2" />
<text text-anchor="" x="630.64" 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>bgzf_uncompress (2 samples, 0.27%)</title><rect x="19.5" y="709" width="3.1" height="15.0" fill="rgb(222,204,23)" rx="2" ry="2" />
<text text-anchor="" x="22.48" 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>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup (13 samples, 1.74%)</title><rect x="627.6" y="805" width="20.6" height="15.0" fill="rgb(253,103,28)" rx="2" ry="2" />
<text text-anchor="" x="630.64" 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>libprosic::model::evidence::reads::ReadEmission::particular_miscall (7 samples, 0.94%)</title><rect x="174.3" y="757" width="11.0" height="15.0" fill="rgb(247,200,25)" rx="2" ry="2" />
<text text-anchor="" x="177.28" 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>std::panicking::try::do_call (744 samples, 99.60%)</title><rect x="14.7" y="1109" width="1175.3" height="15.0" fill="rgb(240,33,25)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1119.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>_GI___pthread_mutex_unlock (3 samples, 0.40%)</title><rect x="632.4" y="469" width="4.7" height="15.0" fill="rgb(222,197,48)" rx="2" ry="2" />
<text text-anchor="" x="635.38" 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]] (5 samples, 0.67%)</title><rect x="652.9" y="613" width="7.9" height="15.0" fill="rgb(234,101,9)" rx="2" ry="2" />
<text text-anchor="" x="655.92" y="623.5" font-size="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}} (35 samples, 4.69%)</title><rect x="572.4" y="741" width="55.2" height="15.0" fill="rgb(242,179,39)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;libp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (31 samples, 4.15%)</title><rect x="1006.8" y="693" width="48.9" height="15.0" fill="rgb(250,217,32)" rx="2" ry="2" />
<text text-anchor="" x="1009.76" y="703.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>core::fmt::write (30 samples, 4.02%)</title><rect x="580.3" y="357" width="47.3" height="15.0" fill="rgb(209,224,51)" rx="2" ry="2" />
<text text-anchor="" x="583.25" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::option::Option&lt;T&gt;&gt;::map (5 samples, 0.67%)</title><rect x="231.2" y="741" width="7.8" height="15.0" fill="rgb(237,54,31)" rx="2" ry="2" />
<text text-anchor="" x="234.15" 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>&lt;std::fs::File as std::io::Read&gt;::read (38 samples, 5.09%)</title><rect x="995.7" y="805" width="60.0" height="15.0" fill="rgb(254,149,48)" rx="2" ry="2" />
<text text-anchor="" x="998.70" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;std::..</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.27%)</title><rect x="182.2" y="741" width="3.1" height="15.0" fill="rgb(205,108,28)" rx="2" ry="2" />
<text text-anchor="" x="185.18" 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>std::sys::unix::mutex::Mutex::unlock (1 samples, 0.13%)</title><rect x="605.5" y="181" width="1.6" height="15.0" fill="rgb(215,222,30)" rx="2" ry="2" />
<text text-anchor="" x="608.53" 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;std::io::buffered::BufReader&lt;R&gt; as std::io::BufRead&gt;::consume (2 samples, 0.27%)</title><rect x="989.4" y="821" width="3.1" height="15.0" fill="rgb(234,28,29)" rx="2" ry="2" />
<text text-anchor="" x="992.38" 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>core::num::flt2dec::strategy::grisu::format_shortest_opt (4 samples, 0.54%)</title><rect x="641.9" y="549" width="6.3" height="15.0" fill="rgb(231,12,36)" rx="2" ry="2" />
<text text-anchor="" x="644.86" 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::PairPileup&lt;'a, A, B, P&gt;&gt;::case_likelihood (13 samples, 1.74%)</title><rect x="627.6" y="821" width="20.6" height="15.0" fill="rgb(207,6,30)" rx="2" ry="2" />
<text text-anchor="" x="630.64" 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]] (1 samples, 0.13%)</title><rect x="16.3" y="677" width="1.6" height="15.0" fill="rgb(215,25,14)" rx="2" ry="2" />
<text text-anchor="" x="19.32" y="687.5" font-size="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::drop_in_place (1 samples, 0.13%)</title><rect x="11.6" y="1061" width="1.6" height="15.0" fill="rgb(206,148,30)" rx="2" ry="2" />
<text text-anchor="" x="14.58" y="1071.5" font-size="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::flt2dec::strategy::grisu::format_shortest_opt (10 samples, 1.34%)</title><rect x="611.8" y="261" width="15.8" height="15.0" fill="rgb(236,18,28)" rx="2" ry="2" />
<text text-anchor="" x="614.85" 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>&lt;alloc::alloc::Global as core::alloc::Alloc&gt;::dealloc (1 samples, 0.13%)</title><rect x="11.6" y="917" width="1.6" height="15.0" fill="rgb(233,106,26)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>imallocx_body (1 samples, 0.13%)</title><rect x="1186.8" y="693" width="1.6" height="15.0" fill="rgb(205,95,13)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" 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>[[kerne.allsyms]] (21 samples, 2.81%)</title><rect x="1115.8" y="693" width="33.1" height="15.0" fill="rgb(220,27,14)" rx="2" ry="2" />
<text text-anchor="" x="1118.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>core::ptr::drop_in_place (1 samples, 0.13%)</title><rect x="637.1" y="517" width="1.6" height="15.0" fill="rgb(229,168,11)" rx="2" ry="2" />
<text text-anchor="" x="640.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>std::io::Write::write_all (1 samples, 0.13%)</title><rect x="637.1" y="549" width="1.6" height="15.0" fill="rgb(229,128,18)" rx="2" ry="2" />
<text text-anchor="" x="640.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>je_arena_chunk_dalloc_huge (16 samples, 2.14%)</title><rect x="957.8" y="597" width="25.3" height="15.0" fill="rgb(253,216,52)" rx="2" ry="2" />
<text text-anchor="" x="960.79" y="607.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>rallocx (191 samples, 25.57%)</title><rect x="681.4" y="709" width="301.7" height="15.0" fill="rgb(210,151,29)" rx="2" ry="2" />
<text text-anchor="" x="684.35" y="719.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>&lt;std::sync::mutex::MutexGuard&lt;'a, T&gt; as core::ops::drop::Drop&gt;::drop (3 samples, 0.40%)</title><rect x="632.4" y="517" width="4.7" height="15.0" fill="rgb(253,224,44)" rx="2" ry="2" />
<text text-anchor="" x="635.38" 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>std::io::Write::write_all (3 samples, 0.40%)</title><rect x="632.4" y="565" width="4.7" height="15.0" fill="rgb(231,158,54)" rx="2" ry="2" />
<text text-anchor="" x="635.38" 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;test::Sink as std::io::Write&gt;::write (3 samples, 0.40%)</title><rect x="603.9" y="245" width="4.8" height="15.0" fill="rgb(254,180,44)" rx="2" ry="2" />
<text text-anchor="" x="606.95" 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>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T, I&gt;&gt;::spec_extend (1 samples, 0.13%)</title><rect x="1186.8" y="805" width="1.6" height="15.0" fill="rgb(209,85,45)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" 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>&lt;std::thread::local::LocalKey&lt;T&gt;&gt;::with (1 samples, 0.13%)</title><rect x="594.5" y="149" width="1.6" height="15.0" fill="rgb(236,131,9)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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;core::slice::Iter&lt;'a, T&gt; as core::iter::iterator::Iterator&gt;::next (12 samples, 1.61%)</title><rect x="363.8" y="693" width="19.0" height="15.0" fill="rgb(225,98,47)" rx="2" ry="2" />
<text text-anchor="" x="366.84" 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>arena_unstash_purged (16 samples, 2.14%)</title><rect x="957.8" y="533" width="25.3" height="15.0" fill="rgb(251,160,23)" rx="2" ry="2" />
<text text-anchor="" x="960.79" y="543.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;std::sync::mutex::MutexGuard&lt;'a, T&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.27%)</title><rect x="583.4" y="277" width="3.2" height="15.0" fill="rgb(233,142,53)" rx="2" ry="2" />
<text text-anchor="" x="586.41" 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>[[kerne.allsyms]] (11 samples, 1.47%)</title><rect x="965.7" y="357" width="17.4" height="15.0" fill="rgb(223,153,7)" rx="2" ry="2" />
<text text-anchor="" x="968.69" 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;std::sync::mutex::MutexGuard&lt;'a, T&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.27%)</title><rect x="597.6" y="229" width="3.2" height="15.0" fill="rgb(237,222,38)" rx="2" ry="2" />
<text text-anchor="" x="600.63" 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>&lt;std::sync::mutex::MutexGuard&lt;'a, T&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.13%)</title><rect x="637.1" y="501" width="1.6" height="15.0" fill="rgb(218,197,21)" rx="2" ry="2" />
<text text-anchor="" x="640.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>alloc::alloc::realloc (191 samples, 25.57%)</title><rect x="681.4" y="725" width="301.7" height="15.0" fill="rgb(223,115,39)" rx="2" ry="2" />
<text text-anchor="" x="684.35" y="735.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>je_arena_maybe_purge (8 samples, 1.07%)</title><rect x="648.2" y="853" width="12.6" height="15.0" fill="rgb(241,56,35)" rx="2" ry="2" />
<text text-anchor="" x="651.18" 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>std::sys_common::mutex::Mutex::raw_unlock (1 samples, 0.13%)</title><rect x="605.5" y="197" width="1.6" height="15.0" fill="rgb(246,198,1)" rx="2" ry="2" />
<text text-anchor="" x="608.53" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="13.2" y="805" width="1.5" height="15.0" fill="rgb(245,168,44)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>&lt;libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel&lt;libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs&gt;&gt;::map (13 samples, 1.74%)</title><rect x="627.6" y="885" width="20.6" height="15.0" fill="rgb(238,77,28)" rx="2" ry="2" />
<text text-anchor="" x="630.64" 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>libprosic::utils::ReferenceBuffer::seq (313 samples, 41.90%)</title><rect x="660.8" y="885" width="494.4" height="15.0" fill="rgb(232,46,9)" rx="2" ry="2" />
<text text-anchor="" x="663.82" y="895.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>&lt;core::slice::Iter&lt;'a, T&gt;&gt;::post_inc_start (3 samples, 0.40%)</title><rect x="378.1" y="677" width="4.7" height="15.0" fill="rgb(210,28,31)" rx="2" ry="2" />
<text text-anchor="" x="381.06" y="687.5" font-size="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 (2 samples, 0.27%)</title><rect x="19.5" y="741" width="3.1" height="15.0" fill="rgb(231,135,32)" rx="2" ry="2" />
<text text-anchor="" x="22.48" 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>std::io::stdio::print_to (11 samples, 1.47%)</title><rect x="630.8" y="725" width="17.4" height="15.0" fill="rgb(233,48,10)" rx="2" ry="2" />
<text text-anchor="" x="633.80" 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.13%)</title><rect x="14.7" y="981" width="1.6" height="15.0" fill="rgb(209,130,35)" rx="2" ry="2" />
<text text-anchor="" x="17.74" 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>inflate (2 samples, 0.27%)</title><rect x="19.5" y="693" width="3.1" height="15.0" fill="rgb(231,86,54)" rx="2" ry="2" />
<text text-anchor="" x="22.48" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="13.2" y="773" width="1.5" height="15.0" fill="rgb(214,199,39)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>[[kerne.allsyms]] (27 samples, 3.61%)</title><rect x="1013.1" y="613" width="42.6" height="15.0" fill="rgb(248,222,2)" rx="2" ry="2" />
<text text-anchor="" x="1016.08" y="623.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>mallocx (1 samples, 0.13%)</title><rect x="1186.8" y="709" width="1.6" height="15.0" fill="rgb(222,146,5)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="14.7" y="917" width="1.6" height="15.0" fill="rgb(219,105,2)" rx="2" ry="2" />
<text text-anchor="" x="17.74" 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>&lt;f64 as core::iter::traits::Sum&gt;::sum::{{closure}} (8 samples, 1.07%)</title><rect x="239.0" y="661" width="12.7" height="15.0" fill="rgb(222,138,11)" rx="2" ry="2" />
<text text-anchor="" x="242.05" y="671.5" font-size="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 (742 samples, 99.33%)</title><rect x="17.9" y="1013" width="1172.1" height="15.0" fill="rgb(246,6,20)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="1023.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>arena_maybe_purge_ratio (8 samples, 1.07%)</title><rect x="648.2" y="837" width="12.6" height="15.0" fill="rgb(242,143,13)" rx="2" ry="2" />
<text text-anchor="" x="651.18" 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>[[kerne.allsyms]] (38 samples, 5.09%)</title><rect x="1088.9" y="773" width="60.0" height="15.0" fill="rgb(225,113,8)" rx="2" ry="2" />
<text text-anchor="" x="1091.90" y="783.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>main (3 samples, 0.40%)</title><rect x="10.0" y="1237" width="4.7" height="15.0" fill="rgb(244,135,44)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1247.5" font-size="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] (2 samples, 0.27%)</title><rect x="19.5" y="677" width="3.1" height="15.0" fill="rgb(212,212,29)" rx="2" ry="2" />
<text text-anchor="" x="22.48" y="687.5" font-size="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]] (57 samples, 7.63%)</title><rect x="867.8" y="597" width="90.0" height="15.0" fill="rgb(249,69,40)" rx="2" ry="2" />
<text text-anchor="" x="870.75" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne.al..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lib::call_tumor_normal (742 samples, 99.33%)</title><rect x="17.9" y="917" width="1172.1" height="15.0" fill="rgb(224,151,37)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="927.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>rust_htslib::bam::record::Seq::encoded_base (4 samples, 0.54%)</title><rect x="166.4" y="741" width="6.3" height="15.0" fill="rgb(229,118,17)" rx="2" ry="2" />
<text text-anchor="" x="169.39" 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>arena_purge_to_limit (1 samples, 0.13%)</title><rect x="11.6" y="821" width="1.6" height="15.0" fill="rgb(205,157,47)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>bio::stats::probs::LogProb::ln_simpsons_integrate_exp::{{closure}} (35 samples, 4.69%)</title><rect x="572.4" y="565" width="55.2" height="15.0" fill="rgb(241,48,39)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::..</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.13%)</title><rect x="185.3" y="725" width="1.6" height="15.0" fill="rgb(231,220,2)" rx="2" ry="2" />
<text text-anchor="" x="188.34" 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>_GI_madvise (16 samples, 2.14%)</title><rect x="957.8" y="485" width="25.3" height="15.0" fill="rgb(232,134,2)" rx="2" ry="2" />
<text text-anchor="" x="960.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>arena_purge_to_limit (1 samples, 0.13%)</title><rect x="16.3" y="789" width="1.6" height="15.0" fill="rgb(221,113,12)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>inflate_block (19 samples, 2.54%)</title><rect x="1156.8" y="821" width="30.0" height="15.0" fill="rgb(210,35,51)" rx="2" ry="2" />
<text text-anchor="" x="1159.83" y="831.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_isqalloc (16 samples, 2.14%)</title><rect x="957.8" y="661" width="25.3" height="15.0" fill="rgb(253,135,18)" rx="2" ry="2" />
<text text-anchor="" x="960.79" y="671.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::fmt::Formatter::pad_formatted_parts (1 samples, 0.13%)</title><rect x="588.2" y="309" width="1.5" height="15.0" fill="rgb(249,218,51)" rx="2" ry="2" />
<text text-anchor="" x="591.15" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="16.3" y="613" width="1.6" height="15.0" fill="rgb(206,37,18)" rx="2" ry="2" />
<text text-anchor="" x="19.32" y="623.5" font-size="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::sync::mutex::MutexGuard&lt;'mutex, T&gt;&gt;::new (1 samples, 0.13%)</title><rect x="594.5" y="229" width="1.6" height="15.0" fill="rgb(211,84,53)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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>core::ptr::drop_in_place (3 samples, 0.40%)</title><rect x="632.4" y="533" width="4.7" height="15.0" fill="rgb(247,173,29)" rx="2" ry="2" />
<text text-anchor="" x="635.38" 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::panicking::try::do_call (2 samples, 0.27%)</title><rect x="11.6" y="1157" width="3.1" height="15.0" fill="rgb(205,48,38)" rx="2" ry="2" />
<text text-anchor="" x="14.58" y="1167.5" font-size="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}} (744 samples, 99.60%)</title><rect x="14.7" y="1173" width="1175.3" height="15.0" fill="rgb(250,121,9)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1183.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::num::flt2dec::strategy::grisu::format_shortest (4 samples, 0.54%)</title><rect x="641.9" y="565" width="6.3" height="15.0" fill="rgb(234,182,8)" rx="2" ry="2" />
<text text-anchor="" x="644.86" 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]] (8 samples, 1.07%)</title><rect x="648.2" y="741" width="12.6" height="15.0" fill="rgb(233,79,3)" rx="2" ry="2" />
<text text-anchor="" x="651.18" 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>&lt;core::iter::Map&lt;I, F&gt; as core::iter::iterator::Iterator&gt;::next (35 samples, 4.69%)</title><rect x="572.4" y="613" width="55.2" height="15.0" fill="rgb(252,197,30)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;core..</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}} (3 samples, 0.40%)</title><rect x="234.3" y="725" width="4.7" height="15.0" fill="rgb(225,164,51)" rx="2" ry="2" />
<text text-anchor="" x="237.31" 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>core::cmp::Ord::min (2 samples, 0.27%)</title><rect x="989.4" y="789" width="3.1" height="15.0" fill="rgb(237,16,2)" rx="2" ry="2" />
<text text-anchor="" x="992.38" 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>core::fmt::write (11 samples, 1.47%)</title><rect x="630.8" y="645" width="17.4" height="15.0" fill="rgb(224,101,18)" rx="2" ry="2" />
<text text-anchor="" x="633.80" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_pthread_mutex_unlock_usercnt (1 samples, 0.13%)</title><rect x="637.1" y="437" width="1.6" height="15.0" fill="rgb(235,218,16)" rx="2" ry="2" />
<text text-anchor="" x="640.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>libprosic::model::sample::Sample::fragment_observation::{{closure}} (348 samples, 46.59%)</title><rect x="22.6" y="837" width="549.8" height="15.0" fill="rgb(253,137,10)" rx="2" ry="2" />
<text text-anchor="" x="25.64" y="847.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]] (5 samples, 0.67%)</title><rect x="652.9" y="629" width="7.9" height="15.0" fill="rgb(231,92,38)" rx="2" ry="2" />
<text text-anchor="" x="655.92" y="639.5" font-size="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___pthread_mutex_unlock (2 samples, 0.27%)</title><rect x="583.4" y="229" width="3.2" height="15.0" fill="rgb(207,160,4)" rx="2" ry="2" />
<text text-anchor="" x="586.41" 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>[[kerne.allsyms]] (31 samples, 4.15%)</title><rect x="1006.8" y="677" width="48.9" height="15.0" fill="rgb(251,76,29)" rx="2" ry="2" />
<text text-anchor="" x="1009.76" y="687.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;std::thread::local::LocalKey&lt;T&gt;&gt;::try_with (1 samples, 0.13%)</title><rect x="594.5" y="133" width="1.6" height="15.0" fill="rgb(205,201,33)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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>_GI___pthread_mutex_unlock (1 samples, 0.13%)</title><rect x="637.1" y="453" width="1.6" height="15.0" fill="rgb(233,208,38)" rx="2" ry="2" />
<text text-anchor="" x="640.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>&lt;test::TestEvent as core::clone::Clone&gt;::clone (1 samples, 0.13%)</title><rect x="13.2" y="1013" width="1.5" height="15.0" fill="rgb(222,60,36)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>&lt;f64 as core::ops::arith::Add&gt;::add (5 samples, 0.67%)</title><rect x="131.6" y="773" width="7.9" height="15.0" fill="rgb(236,218,1)" rx="2" ry="2" />
<text text-anchor="" x="134.63" 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>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::FromIterator&lt;T&gt;&gt;::from_iter (1 samples, 0.13%)</title><rect x="1186.8" y="837" width="1.6" height="15.0" fill="rgb(231,89,19)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" 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>[[kerne.allsyms]] (16 samples, 2.14%)</title><rect x="957.8" y="469" width="25.3" height="15.0" fill="rgb(228,153,34)" rx="2" ry="2" />
<text text-anchor="" x="960.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>core::cmp::min (3 samples, 0.40%)</title><rect x="1148.9" y="821" width="4.8" height="15.0" fill="rgb(245,44,45)" rx="2" ry="2" />
<text text-anchor="" x="1151.93" 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>start (3 samples, 0.40%)</title><rect x="10.0" y="1269" width="4.7" height="15.0" fill="rgb(226,169,27)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1279.5" font-size="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::IndexMut&lt;I&gt; for [T]&gt;::index_mut (3 samples, 0.40%)</title><rect x="109.5" y="773" width="4.8" height="15.0" fill="rgb(245,59,34)" rx="2" ry="2" />
<text text-anchor="" x="112.52" 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>[[kerne.allsyms]] (38 samples, 5.09%)</title><rect x="1088.9" y="789" width="60.0" height="15.0" fill="rgb(226,54,31)" rx="2" ry="2" />
<text text-anchor="" x="1091.90" y="799.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>alloc::alloc::dealloc (1 samples, 0.13%)</title><rect x="11.6" y="901" width="1.6" height="15.0" fill="rgb(209,187,10)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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;&gt;::extend_from_slice (1 samples, 0.13%)</title><rect x="13.2" y="949" width="1.5" height="15.0" fill="rgb(224,30,38)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::ptr (10 samples, 1.34%)</title><rect x="85.8" y="757" width="15.8" height="15.0" fill="rgb(214,221,53)" rx="2" ry="2" />
<text text-anchor="" x="88.82" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="16.3" y="581" width="1.6" height="15.0" fill="rgb(226,211,28)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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]] (36 samples, 4.82%)</title><rect x="900.9" y="533" width="56.9" height="15.0" fill="rgb(205,61,31)" rx="2" ry="2" />
<text text-anchor="" x="903.92" y="543.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>bio::stats::probs::LogProb::ln_add_exp (3 samples, 0.40%)</title><rect x="186.9" y="789" width="4.8" height="15.0" fill="rgb(226,104,37)" rx="2" ry="2" />
<text text-anchor="" x="189.92" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="13.2" y="757" width="1.5" height="15.0" fill="rgb(237,84,30)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="14.7" y="933" width="1.6" height="15.0" fill="rgb(254,180,0)" rx="2" ry="2" />
<text text-anchor="" x="17.74" 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>&lt;f64 as bio::utils::fastexp::FastExp&lt;f64&gt;&gt;::fastexp (1 samples, 0.13%)</title><rect x="186.9" y="773" width="1.6" height="15.0" fill="rgb(214,31,50)" rx="2" ry="2" />
<text text-anchor="" x="189.92" 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>_memcpy_sse2_unaligned_erms (59 samples, 7.90%)</title><rect x="1055.7" y="821" width="93.2" height="15.0" fill="rgb(215,77,27)" rx="2" ry="2" />
<text text-anchor="" x="1058.73" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_memcpy_sse..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_huge_dalloc (8 samples, 1.07%)</title><rect x="648.2" y="885" width="12.6" height="15.0" fill="rgb(218,82,43)" rx="2" ry="2" />
<text text-anchor="" x="651.18" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="16.3" y="597" width="1.6" height="15.0" fill="rgb(245,6,5)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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;::fold (91 samples, 12.18%)</title><rect x="239.0" y="725" width="143.8" height="15.0" fill="rgb(233,185,0)" rx="2" ry="2" />
<text text-anchor="" x="242.05" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;core::iter::Enume..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="16.3" y="629" width="1.6" height="15.0" fill="rgb(215,44,41)" rx="2" ry="2" />
<text text-anchor="" x="19.32" y="639.5" font-size="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 (3 samples, 0.40%)</title><rect x="147.4" y="741" width="4.8" height="15.0" fill="rgb(232,22,37)" rx="2" ry="2" />
<text text-anchor="" x="150.43" 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>core::fmt::float::float_to_decimal_common_shortest (11 samples, 1.47%)</title><rect x="630.8" y="613" width="17.4" height="15.0" fill="rgb(249,91,10)" rx="2" ry="2" />
<text text-anchor="" x="633.80" y="623.5" font-size="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.13%)</title><rect x="144.3" y="725" width="1.6" height="15.0" fill="rgb(252,156,49)" rx="2" ry="2" />
<text text-anchor="" x="147.27" 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>_log1p (115 samples, 15.39%)</title><rect x="384.4" y="757" width="181.6" height="15.0" fill="rgb(214,63,31)" rx="2" ry="2" />
<text text-anchor="" x="387.38" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_log1p</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_unstash_purged (8 samples, 1.07%)</title><rect x="648.2" y="805" width="12.6" height="15.0" fill="rgb(242,160,8)" rx="2" ry="2" />
<text text-anchor="" x="651.18" 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>core::fmt::Formatter::write_formatted_parts::write_bytes (1 samples, 0.13%)</title><rect x="637.1" y="581" width="1.6" height="15.0" fill="rgb(211,22,29)" rx="2" ry="2" />
<text text-anchor="" x="640.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>hts_itr_next (2 samples, 0.27%)</title><rect x="19.5" y="805" width="3.1" height="15.0" fill="rgb(250,12,22)" rx="2" ry="2" />
<text text-anchor="" x="22.48" 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>je_arena_maybe_purge (16 samples, 2.14%)</title><rect x="957.8" y="581" width="25.3" height="15.0" fill="rgb(215,45,25)" rx="2" ry="2" />
<text text-anchor="" x="960.79" y="591.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>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup::{{closure}} (13 samples, 1.74%)</title><rect x="627.6" y="773" width="20.6" height="15.0" fill="rgb(245,191,14)" rx="2" ry="2" />
<text text-anchor="" x="630.64" 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>core::slice::&lt;impl [T]&gt;::copy_from_slice (1 samples, 0.13%)</title><rect x="13.2" y="917" width="1.5" height="15.0" fill="rgb(219,175,9)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="602.4" y="117" width="1.5" height="15.0" fill="rgb(239,195,4)" rx="2" ry="2" />
<text text-anchor="" x="605.37" 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>_memcpy_sse2_unaligned_erms (1 samples, 0.13%)</title><rect x="13.2" y="901" width="1.5" height="15.0" fill="rgb(236,13,35)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>core::slice::&lt;impl core::ops::index::Index&lt;I&gt; for [T]&gt;::index (1 samples, 0.13%)</title><rect x="185.3" y="741" width="1.6" height="15.0" fill="rgb(212,114,30)" rx="2" ry="2" />
<text text-anchor="" x="188.34" 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>&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 (744 samples, 99.60%)</title><rect x="14.7" y="1205" width="1175.3" height="15.0" fill="rgb(243,171,30)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1215.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>&lt;libprosic::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref&gt;::deref::_stability (2 samples, 0.27%)</title><rect x="182.2" y="725" width="3.1" height="15.0" fill="rgb(216,9,15)" rx="2" ry="2" />
<text text-anchor="" x="185.18" 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]] (19 samples, 2.54%)</title><rect x="1118.9" y="677" width="30.0" height="15.0" fill="rgb(219,39,5)" rx="2" ry="2" />
<text text-anchor="" x="1121.92" y="687.5" font-size="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 (1 samples, 0.13%)</title><rect x="1186.8" y="773" width="1.6" height="15.0" fill="rgb(210,7,18)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" 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>std::sys::unix::fs::File::read (38 samples, 5.09%)</title><rect x="995.7" y="789" width="60.0" height="15.0" fill="rgb(240,40,38)" rx="2" ry="2" />
<text text-anchor="" x="998.70" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::io::impls::&lt;impl std::io::Write for alloc::vec::Vec&lt;u8&gt;&gt;::write (1 samples, 0.13%)</title><rect x="607.1" y="229" width="1.6" height="15.0" fill="rgb(218,143,19)" rx="2" ry="2" />
<text text-anchor="" x="610.11" 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>&lt;std::io::Write::write_fmt::Adaptor&lt;'a, T&gt; as core::fmt::Write&gt;::write_str (3 samples, 0.40%)</title><rect x="581.8" y="341" width="4.8" height="15.0" fill="rgb(229,32,16)" rx="2" ry="2" />
<text text-anchor="" x="584.83" 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;&gt;::reserve (1 samples, 0.13%)</title><rect x="607.1" y="181" width="1.6" height="15.0" fill="rgb(244,50,54)" rx="2" ry="2" />
<text text-anchor="" x="610.11" 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;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::dealloc_buffer (1 samples, 0.13%)</title><rect x="11.6" y="933" width="1.6" height="15.0" fill="rgb(215,203,44)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>core::ops::function::FnOnce::call_once (742 samples, 99.33%)</title><rect x="17.9" y="965" width="1172.1" height="15.0" fill="rgb(232,32,49)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="975.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>&lt;alloc::vec::Vec&lt;T&gt;&gt;::push (1 samples, 0.13%)</title><rect x="114.3" y="789" width="1.5" height="15.0" fill="rgb(205,71,18)" rx="2" ry="2" />
<text text-anchor="" x="117.26" 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>bio::stats::probs::LogProb::ln_sum_exp::{{closure}} (71 samples, 9.50%)</title><rect x="251.7" y="661" width="112.1" height="15.0" fill="rgb(215,36,24)" rx="2" ry="2" />
<text text-anchor="" x="254.69" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;test::Sink as std::io::Write&gt;::write (6 samples, 0.80%)</title><rect x="594.5" y="261" width="9.4" height="15.0" fill="rgb(252,162,33)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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>libprosic::model::evidence::reads::ReadEmission::prob_insertion (1 samples, 0.13%)</title><rect x="185.3" y="773" width="1.6" height="15.0" fill="rgb(229,13,43)" rx="2" ry="2" />
<text text-anchor="" x="188.34" 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>std::sys_common::mutex::Mutex::raw_unlock (2 samples, 0.27%)</title><rect x="597.6" y="213" width="3.2" height="15.0" fill="rgb(209,166,7)" rx="2" ry="2" />
<text text-anchor="" x="600.63" 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>inflate_block (2 samples, 0.27%)</title><rect x="19.5" y="725" width="3.1" height="15.0" fill="rgb(243,56,37)" rx="2" ry="2" />
<text text-anchor="" x="22.48" 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]] (10 samples, 1.34%)</title><rect x="967.3" y="341" width="15.8" height="15.0" fill="rgb(213,176,2)" rx="2" ry="2" />
<text text-anchor="" x="970.27" 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>std::io::stdio::print_to (30 samples, 4.02%)</title><rect x="580.3" y="437" width="47.3" height="15.0" fill="rgb(216,30,54)" rx="2" ry="2" />
<text text-anchor="" x="583.25" y="447.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>std::sys::unix::mutex::Mutex::unlock (2 samples, 0.27%)</title><rect x="583.4" y="245" width="3.2" height="15.0" fill="rgb(225,220,46)" rx="2" ry="2" />
<text text-anchor="" x="586.41" 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>_pthread_mutex_unlock_usercnt (2 samples, 0.27%)</title><rect x="597.6" y="165" width="3.2" height="15.0" fill="rgb(214,141,31)" rx="2" ry="2" />
<text text-anchor="" x="600.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>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T, I&gt;&gt;::from_iter (35 samples, 4.69%)</title><rect x="572.4" y="661" width="55.2" height="15.0" fill="rgb(223,22,14)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;allo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::io::stdio::print (30 samples, 4.02%)</title><rect x="580.3" y="453" width="47.3" height="15.0" fill="rgb(251,155,24)" rx="2" ry="2" />
<text text-anchor="" x="583.25" y="463.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>std::sys::unix::mutex::Mutex::unlock (3 samples, 0.40%)</title><rect x="632.4" y="485" width="4.7" height="15.0" fill="rgb(224,85,40)" rx="2" ry="2" />
<text text-anchor="" x="635.38" 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>std::panicking::try (2 samples, 0.27%)</title><rect x="11.6" y="1189" width="3.1" height="15.0" fill="rgb(237,152,22)" rx="2" ry="2" />
<text text-anchor="" x="14.58" y="1199.5" font-size="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::thread::local::LocalKey&lt;T&gt;&gt;::try_with (30 samples, 4.02%)</title><rect x="580.3" y="421" width="47.3" height="15.0" fill="rgb(242,219,41)" rx="2" ry="2" />
<text text-anchor="" x="583.25" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;std..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::num::diy_float::Fp::normalize (3 samples, 0.40%)</title><rect x="622.9" y="245" width="4.7" height="15.0" fill="rgb(235,117,43)" rx="2" ry="2" />
<text text-anchor="" x="625.90" 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>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup::{{closure}} (35 samples, 4.69%)</title><rect x="572.4" y="485" width="55.2" height="15.0" fill="rgb(206,25,47)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libpr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_GI_madvise (1 samples, 0.13%)</title><rect x="16.3" y="725" width="1.6" height="15.0" fill="rgb(206,170,24)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>&lt;rust_htslib::bam::record::Seq&lt;'a&gt; as core::ops::index::Index&lt;usize&gt;&gt;::index (4 samples, 0.54%)</title><rect x="145.9" y="757" width="6.3" height="15.0" fill="rgb(221,64,6)" rx="2" ry="2" />
<text text-anchor="" x="148.85" 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>&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 (196 samples, 26.24%)</title><rect x="679.8" y="805" width="309.6" height="15.0" fill="rgb(214,15,0)" rx="2" ry="2" />
<text text-anchor="" x="682.77" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecEx..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::alloc::dealloc (1 samples, 0.13%)</title><rect x="16.3" y="869" width="1.6" height="15.0" fill="rgb(229,222,47)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>&lt;rust_htslib::bam::record::Seq&lt;'a&gt; as core::ops::index::Index&lt;usize&gt;&gt;::index (6 samples, 0.80%)</title><rect x="163.2" y="757" width="9.5" height="15.0" fill="rgb(239,219,31)" rx="2" ry="2" />
<text text-anchor="" x="166.23" 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>_rust_maybe_catch_panic (742 samples, 99.33%)</title><rect x="17.9" y="997" width="1172.1" height="15.0" fill="rgb(214,225,30)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="1007.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>std::io::impls::&lt;impl std::io::Write for alloc::vec::Vec&lt;u8&gt;&gt;::write (2 samples, 0.27%)</title><rect x="600.8" y="245" width="3.1" height="15.0" fill="rgb(224,206,41)" rx="2" ry="2" />
<text text-anchor="" x="603.79" 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>bam_read1 (2 samples, 0.27%)</title><rect x="19.5" y="773" width="3.1" height="15.0" fill="rgb(254,7,32)" rx="2" ry="2" />
<text text-anchor="" x="22.48" 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>core::ptr::&lt;impl *const T&gt;::offset (1 samples, 0.13%)</title><rect x="382.8" y="741" width="1.6" height="15.0" fill="rgb(228,162,3)" rx="2" ry="2" />
<text text-anchor="" x="385.80" 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>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T, I&gt;&gt;::spec_extend (35 samples, 4.69%)</title><rect x="572.4" y="645" width="55.2" height="15.0" fill="rgb(220,194,6)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;allo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_chunk_dalloc_huge (8 samples, 1.07%)</title><rect x="648.2" y="869" width="12.6" height="15.0" fill="rgb(222,112,0)" rx="2" ry="2" />
<text text-anchor="" x="651.18" 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>std::rt::lang_start::{{closure}} (2 samples, 0.27%)</title><rect x="11.6" y="1125" width="3.1" height="15.0" fill="rgb(222,154,26)" rx="2" ry="2" />
<text text-anchor="" x="14.58" y="1135.5" font-size="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::Write::write_fmt::Adaptor&lt;'a, T&gt; as core::fmt::Write&gt;::write_str (8 samples, 1.07%)</title><rect x="591.3" y="293" width="12.6" height="15.0" fill="rgb(234,130,50)" rx="2" ry="2" />
<text text-anchor="" x="594.31" 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>bio::stats::probs::LogProb::ln_simpsons_integrate_exp (35 samples, 4.69%)</title><rect x="572.4" y="725" width="55.2" height="15.0" fill="rgb(238,179,23)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::..</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.13%)</title><rect x="572.4" y="437" width="1.5" height="15.0" fill="rgb(245,207,48)" rx="2" ry="2" />
<text text-anchor="" x="575.36" 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::sys::unix::thread::Thread::new::thread_start (744 samples, 99.60%)</title><rect x="14.7" y="1237" width="1175.3" height="15.0" fill="rgb(250,177,32)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1247.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>core::num::diy_float::Fp::mul (2 samples, 0.27%)</title><rect x="645.0" y="533" width="3.2" height="15.0" fill="rgb(213,216,14)" rx="2" ry="2" />
<text text-anchor="" x="648.02" 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>je_huge_dalloc (1 samples, 0.13%)</title><rect x="16.3" y="853" width="1.6" height="15.0" fill="rgb(221,180,36)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>core::ptr::drop_in_place (1 samples, 0.13%)</title><rect x="605.5" y="229" width="1.6" height="15.0" fill="rgb(248,171,51)" rx="2" ry="2" />
<text text-anchor="" x="608.53" 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>&lt;bio::stats::probs::Prob as core::ops::arith::Add&gt;::add (2 samples, 0.27%)</title><rect x="179.0" y="741" width="3.2" height="15.0" fill="rgb(206,189,30)" rx="2" ry="2" />
<text text-anchor="" x="182.02" 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>alloc::slice::hack::to_vec (1 samples, 0.13%)</title><rect x="13.2" y="965" width="1.5" height="15.0" fill="rgb(235,186,49)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="16.3" y="661" width="1.6" height="15.0" fill="rgb(242,161,27)" rx="2" ry="2" />
<text text-anchor="" x="19.32" y="671.5" font-size="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___pthread_mutex_unlock (2 samples, 0.27%)</title><rect x="597.6" y="181" width="3.2" height="15.0" fill="rgb(219,3,13)" rx="2" ry="2" />
<text text-anchor="" x="600.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;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 (1 samples, 0.13%)</title><rect x="607.1" y="197" width="1.6" height="15.0" fill="rgb(251,114,17)" rx="2" ry="2" />
<text text-anchor="" x="610.11" 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::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T, I&gt;&gt;::spec_extend (35 samples, 4.69%)</title><rect x="572.4" y="805" width="55.2" height="15.0" fill="rgb(254,106,27)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;allo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (8 samples, 1.07%)</title><rect x="648.2" y="693" width="12.6" height="15.0" fill="rgb(215,182,9)" rx="2" ry="2" />
<text text-anchor="" x="651.18" 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>std::sys::unix::mutex::Mutex::lock (1 samples, 0.13%)</title><rect x="596.1" y="213" width="1.5" height="15.0" fill="rgb(207,61,54)" rx="2" ry="2" />
<text text-anchor="" x="599.05" 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>std::f64::&lt;impl f64&gt;::ln_1p (2 samples, 0.27%)</title><rect x="188.5" y="773" width="3.2" height="15.0" fill="rgb(236,80,31)" rx="2" ry="2" />
<text text-anchor="" x="191.50" 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>&lt;lazy_static::lazy::Lazy&lt;T&gt;&gt;::get (2 samples, 0.27%)</title><rect x="182.2" y="709" width="3.1" height="15.0" fill="rgb(251,12,41)" rx="2" ry="2" />
<text text-anchor="" x="185.18" 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>std::f64::&lt;impl f64&gt;::ln_1p (119 samples, 15.93%)</title><rect x="384.4" y="773" width="188.0" height="15.0" fill="rgb(209,89,3)" rx="2" ry="2" />
<text text-anchor="" x="387.38" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::f64::&lt;impl f64&gt;::ln..</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 (91 samples, 12.18%)</title><rect x="239.0" y="709" width="143.8" height="15.0" fill="rgb(243,1,41)" rx="2" ry="2" />
<text text-anchor="" x="242.05" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;core::slice::Iter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_chunk_dalloc_wrapper (1 samples, 0.13%)</title><rect x="11.6" y="789" width="1.6" height="15.0" fill="rgb(222,221,45)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>libprosic::estimation::alignment_properties::AlignmentProperties::estimate (22 samples, 2.95%)</title><rect x="1155.2" y="901" width="34.8" height="15.0" fill="rgb(245,183,9)" rx="2" ry="2" />
<text text-anchor="" x="1158.25" y="911.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>&lt;test::Sink as std::io::Write&gt;::write (1 samples, 0.13%)</title><rect x="637.1" y="533" width="1.6" height="15.0" fill="rgb(251,155,23)" rx="2" ry="2" />
<text text-anchor="" x="640.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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="13.2" y="821" width="1.5" height="15.0" fill="rgb(235,4,23)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>arena_maybe_purge_ratio (1 samples, 0.13%)</title><rect x="11.6" y="837" width="1.6" height="15.0" fill="rgb(238,74,21)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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;core::cell::Cell&lt;T&gt;&gt;::replace (1 samples, 0.13%)</title><rect x="594.5" y="85" width="1.6" height="15.0" fill="rgb(253,81,3)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="602.4" y="101" width="1.5" height="15.0" fill="rgb(223,52,53)" rx="2" ry="2" />
<text text-anchor="" x="605.37" 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>je_arena_maybe_purge (1 samples, 0.13%)</title><rect x="11.6" y="853" width="1.6" height="15.0" fill="rgb(208,102,49)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>core::num::flt2dec::to_shortest_str (12 samples, 1.61%)</title><rect x="608.7" y="309" width="18.9" height="15.0" fill="rgb(225,100,36)" rx="2" ry="2" />
<text text-anchor="" x="611.69" 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>[[kerne.allsyms]] (24 samples, 3.21%)</title><rect x="1111.0" y="725" width="37.9" height="15.0" fill="rgb(238,128,6)" rx="2" ry="2" />
<text text-anchor="" x="1114.02" y="735.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;alloc::vec::Vec&lt;T&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (1 samples, 0.13%)</title><rect x="161.6" y="757" width="1.6" height="15.0" fill="rgb(240,225,16)" rx="2" ry="2" />
<text text-anchor="" x="164.65" 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>&lt;std::collections::hash::map::HashMap&lt;K, V, S&gt;&gt;::make_hash (1 samples, 0.13%)</title><rect x="17.9" y="821" width="1.6" height="15.0" fill="rgb(248,150,24)" rx="2" ry="2" />
<text text-anchor="" x="20.90" 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]] (102 samples, 13.65%)</title><rect x="796.7" y="645" width="161.1" height="15.0" fill="rgb(244,202,40)" rx="2" ry="2" />
<text text-anchor="" x="799.67" y="655.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]] (1 samples, 0.13%)</title><rect x="14.7" y="901" width="1.6" height="15.0" fill="rgb(246,197,16)" rx="2" ry="2" />
<text text-anchor="" x="17.74" 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;bio::stats::probs::Prob as core::ops::arith::Add&gt;::add (1 samples, 0.13%)</title><rect x="572.4" y="453" width="1.5" height="15.0" fill="rgb(234,192,0)" rx="2" ry="2" />
<text text-anchor="" x="575.36" 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>_memcpy_sse2_unaligned_erms (1 samples, 0.13%)</title><rect x="14.7" y="997" width="1.6" height="15.0" fill="rgb(214,62,3)" rx="2" ry="2" />
<text text-anchor="" x="17.74" 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>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::FromIterator&lt;T&gt;&gt;::from_iter (35 samples, 4.69%)</title><rect x="572.4" y="837" width="55.2" height="15.0" fill="rgb(238,195,16)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;allo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="13.2" y="853" width="1.5" height="15.0" fill="rgb(252,0,47)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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;libprosic::model::evidence::reads::DeletionEmissionParams&lt;'a&gt; as bio::stats::pairhmm::EmissionParameters&gt;::prob_emit_xy (8 samples, 1.07%)</title><rect x="139.5" y="789" width="12.7" height="15.0" fill="rgb(228,133,23)" rx="2" ry="2" />
<text text-anchor="" x="142.53" 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>[[kerne.allsyms]] (16 samples, 2.14%)</title><rect x="957.8" y="421" width="25.3" height="15.0" fill="rgb(226,63,6)" rx="2" ry="2" />
<text text-anchor="" x="960.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>&lt;alloc::vec::Vec&lt;T&gt;&gt;::reserve (1 samples, 0.13%)</title><rect x="1186.8" y="789" width="1.6" height="15.0" fill="rgb(208,184,50)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" 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;alloc::vec::Vec&lt;T&gt; as core::clone::Clone&gt;::clone (1 samples, 0.13%)</title><rect x="13.2" y="997" width="1.5" height="15.0" fill="rgb(223,43,12)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>&lt;libprosic::model::evidence::reads::ReferenceEmissionParams&lt;'a&gt; as bio::stats::pairhmm::EmissionParameters&gt;::prob_emit_xy (21 samples, 2.81%)</title><rect x="152.2" y="789" width="33.1" height="15.0" fill="rgb(248,228,35)" rx="2" ry="2" />
<text text-anchor="" x="155.17" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;l..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ops::function::FnMut::call_mut (11 samples, 1.47%)</title><rect x="610.3" y="293" width="17.3" height="15.0" fill="rgb(232,119,37)" rx="2" ry="2" />
<text text-anchor="" x="613.27" 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>_pthread_mutex_unlock_usercnt (2 samples, 0.27%)</title><rect x="583.4" y="213" width="3.2" height="15.0" fill="rgb(221,199,13)" rx="2" ry="2" />
<text text-anchor="" x="586.41" 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;core::iter::FilterMap&lt;I, F&gt; as core::iter::iterator::Iterator&gt;::fold (91 samples, 12.18%)</title><rect x="239.0" y="741" width="143.8" height="15.0" fill="rgb(216,154,20)" rx="2" ry="2" />
<text text-anchor="" x="242.05" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;core::iter::Filte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::sys_common::backtrace::_rust_begin_short_backtrace (744 samples, 99.60%)</title><rect x="14.7" y="1061" width="1175.3" height="15.0" fill="rgb(212,215,0)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1071.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;f64 as core::ops::arith::Sub&gt;::sub (1 samples, 0.13%)</title><rect x="261.2" y="629" width="1.5" height="15.0" fill="rgb(216,17,46)" rx="2" ry="2" />
<text text-anchor="" x="264.16" y="639.5" font-size="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 (2 samples, 0.27%)</title><rect x="175.9" y="741" width="3.1" height="15.0" fill="rgb(235,122,2)" rx="2" ry="2" />
<text text-anchor="" x="178.86" 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>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup (35 samples, 4.69%)</title><rect x="572.4" y="517" width="55.2" height="15.0" fill="rgb(209,200,6)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libpr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::io::stdio::print_to::{{closure}} (30 samples, 4.02%)</title><rect x="580.3" y="405" width="47.3" height="15.0" fill="rgb(247,127,22)" rx="2" ry="2" />
<text text-anchor="" x="583.25" y="415.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]] (8 samples, 1.07%)</title><rect x="648.2" y="725" width="12.6" height="15.0" fill="rgb(230,207,13)" rx="2" ry="2" />
<text text-anchor="" x="651.18" 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>&lt;core::iter::Map&lt;I, F&gt; as core::iter::iterator::Iterator&gt;::next (35 samples, 4.69%)</title><rect x="572.4" y="789" width="55.2" height="15.0" fill="rgb(239,177,50)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;core..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="13.2" y="789" width="1.5" height="15.0" fill="rgb(231,71,15)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>libprosic::model::sample::Sample::fragment_observation (348 samples, 46.59%)</title><rect x="22.6" y="853" width="549.8" height="15.0" fill="rgb(207,201,48)" rx="2" ry="2" />
<text text-anchor="" x="25.64" y="863.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>test::run_test::run_test_inner::{{closure}} (744 samples, 99.60%)</title><rect x="14.7" y="1045" width="1175.3" height="15.0" fill="rgb(219,75,54)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1055.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]] (29 samples, 3.88%)</title><rect x="1009.9" y="645" width="45.8" height="15.0" fill="rgb(245,89,32)" rx="2" ry="2" />
<text text-anchor="" x="1012.92" y="655.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;libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel&lt;libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs&gt;&gt;::joint_prob::{{closure}}::{{closure}} (35 samples, 4.69%)</title><rect x="572.4" y="549" width="55.2" height="15.0" fill="rgb(220,124,4)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;libp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bgzf_uncompress (17 samples, 2.28%)</title><rect x="1156.8" y="805" width="26.9" height="15.0" fill="rgb(223,62,0)" rx="2" ry="2" />
<text text-anchor="" x="1159.83" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >b..</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 (351 samples, 46.99%)</title><rect x="17.9" y="885" width="554.5" height="15.0" fill="rgb(251,65,4)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="895.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>itertools::minmax::minmax_impl (13 samples, 1.74%)</title><rect x="627.6" y="853" width="20.6" height="15.0" fill="rgb(214,58,41)" rx="2" ry="2" />
<text text-anchor="" x="630.64" 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>bio::stats::pairhmm::PairHMM::prob_related (348 samples, 46.59%)</title><rect x="22.6" y="805" width="549.8" height="15.0" fill="rgb(250,160,16)" rx="2" ry="2" />
<text text-anchor="" x="25.64" y="815.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>bam_read1 (19 samples, 2.54%)</title><rect x="1156.8" y="869" width="30.0" height="15.0" fill="rgb(209,20,33)" rx="2" ry="2" />
<text text-anchor="" x="1159.83" y="879.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>core::fmt::Formatter::run (26 samples, 3.48%)</title><rect x="586.6" y="341" width="41.0" height="15.0" fill="rgb(224,59,22)" rx="2" ry="2" />
<text text-anchor="" x="589.57" y="351.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>test::run_tests_console::{{closure}} (1 samples, 0.13%)</title><rect x="13.2" y="1045" width="1.5" height="15.0" fill="rgb(235,51,40)" rx="2" ry="2" />
<text text-anchor="" x="16.16" y="1055.5" font-size="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.13%)</title><rect x="13.2" y="837" width="1.5" height="15.0" fill="rgb(233,4,12)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>test09 (744 samples, 99.60%)</title><rect x="14.7" y="1285" width="1175.3" height="15.0" fill="rgb(227,32,18)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1295.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>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::cap (1 samples, 0.13%)</title><rect x="607.1" y="133" width="1.6" height="15.0" fill="rgb(212,184,9)" rx="2" ry="2" />
<text text-anchor="" x="610.11" 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>alloc::alloc::alloc (1 samples, 0.13%)</title><rect x="1186.8" y="725" width="1.6" height="15.0" fill="rgb(231,14,6)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" 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>start_thread (744 samples, 99.60%)</title><rect x="14.7" y="1253" width="1175.3" height="15.0" fill="rgb(247,194,49)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1263.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>std::rt::lang_start_internal::{{closure}} (2 samples, 0.27%)</title><rect x="11.6" y="1141" width="3.1" height="15.0" fill="rgb(207,32,11)" rx="2" ry="2" />
<text text-anchor="" x="14.58" y="1151.5" font-size="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.27%)</title><rect x="188.5" y="757" width="3.2" height="15.0" fill="rgb(234,169,38)" rx="2" ry="2" />
<text text-anchor="" x="191.50" 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>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::reserve_internal (1 samples, 0.13%)</title><rect x="607.1" y="149" width="1.6" height="15.0" fill="rgb(227,137,8)" rx="2" ry="2" />
<text text-anchor="" x="610.11" 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___pthread_mutex_lock (1 samples, 0.13%)</title><rect x="596.1" y="197" width="1.5" height="15.0" fill="rgb(246,184,17)" rx="2" ry="2" />
<text text-anchor="" x="599.05" 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>itertools::Itertools::minmax_by_key (13 samples, 1.74%)</title><rect x="627.6" y="869" width="20.6" height="15.0" fill="rgb(209,112,34)" rx="2" ry="2" />
<text text-anchor="" x="630.64" 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>chunk_hooks_assure_initialized_impl (1 samples, 0.13%)</title><rect x="11.6" y="741" width="1.6" height="15.0" fill="rgb(217,12,10)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>alloc::slice::&lt;impl [T]&gt;::to_vec (1 samples, 0.13%)</title><rect x="14.7" y="1029" width="1.6" height="15.0" fill="rgb(211,147,53)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1039.5" font-size="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.02%)</title><rect x="1101.5" y="741" width="47.4" height="15.0" fill="rgb(242,16,54)" rx="2" ry="2" />
<text text-anchor="" x="1104.54" y="751.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>_GI___pthread_mutex_unlock (1 samples, 0.13%)</title><rect x="605.5" y="165" width="1.6" height="15.0" fill="rgb(228,143,50)" rx="2" ry="2" />
<text text-anchor="" x="608.53" 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>std::panicking::update_panic_count (1 samples, 0.13%)</title><rect x="594.5" y="165" width="1.6" height="15.0" fill="rgb(217,208,20)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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>_libc_read (38 samples, 5.09%)</title><rect x="995.7" y="757" width="60.0" height="15.0" fill="rgb(224,21,33)" rx="2" ry="2" />
<text text-anchor="" x="998.70" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_libc_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::io::stdio::print (11 samples, 1.47%)</title><rect x="630.8" y="741" width="17.4" height="15.0" fill="rgb(208,161,44)" rx="2" ry="2" />
<text text-anchor="" x="633.80" 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>[[kerne.allsyms]] (8 samples, 1.07%)</title><rect x="648.2" y="677" width="12.6" height="15.0" fill="rgb(210,78,50)" rx="2" ry="2" />
<text text-anchor="" x="651.18" y="687.5" font-size="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::Write::write_fmt::Adaptor&lt;'a, T&gt; as core::fmt::Write&gt;::write_str (3 samples, 0.40%)</title><rect x="632.4" y="581" width="4.7" height="15.0" fill="rgb(206,120,25)" rx="2" ry="2" />
<text text-anchor="" x="635.38" 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>&lt;std::io::Write::write_fmt::Adaptor&lt;'a, T&gt; as core::fmt::Write&gt;::write_str (3 samples, 0.40%)</title><rect x="603.9" y="277" width="4.8" height="15.0" fill="rgb(222,198,29)" rx="2" ry="2" />
<text text-anchor="" x="606.95" 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>std::sys::unix::mutex::Mutex::unlock (1 samples, 0.13%)</title><rect x="637.1" y="469" width="1.6" height="15.0" fill="rgb(208,225,34)" rx="2" ry="2" />
<text text-anchor="" x="640.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;bio::io::fasta::IndexedReader&lt;R&gt;&gt;::read_into_buffer (313 samples, 41.90%)</title><rect x="660.8" y="853" width="494.4" height="15.0" fill="rgb(252,0,23)" rx="2" ry="2" />
<text text-anchor="" x="663.82" y="863.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>&lt;bio::stats::probs::LogProb as core::cmp::PartialOrd&gt;::gt (1 samples, 0.13%)</title><rect x="629.2" y="725" width="1.6" height="15.0" fill="rgb(242,144,5)" rx="2" ry="2" />
<text text-anchor="" x="632.22" 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>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::deref::DerefMut&gt;::deref_mut (4 samples, 0.54%)</title><rect x="103.2" y="773" width="6.3" height="15.0" fill="rgb(223,10,5)" rx="2" ry="2" />
<text text-anchor="" x="106.20" 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>[[kerne.allsyms]] (30 samples, 4.02%)</title><rect x="1101.5" y="757" width="47.4" height="15.0" fill="rgb(215,43,27)" rx="2" ry="2" />
<text text-anchor="" x="1104.54" y="767.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>[[kerne.allsyms]] (31 samples, 4.15%)</title><rect x="1006.8" y="661" width="48.9" height="15.0" fill="rgb(222,133,4)" rx="2" ry="2" />
<text text-anchor="" x="1009.76" y="671.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>inflate (17 samples, 2.28%)</title><rect x="1156.8" y="789" width="26.9" height="15.0" fill="rgb(232,80,9)" rx="2" ry="2" />
<text text-anchor="" x="1159.83" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::iter::iterator::Iterator::collect (1 samples, 0.13%)</title><rect x="1186.8" y="853" width="1.6" height="15.0" fill="rgb(238,195,2)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" 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;std::collections::hash::map::HashMap&lt;K, V, S&gt;&gt;::search_mut (1 samples, 0.13%)</title><rect x="17.9" y="837" width="1.6" height="15.0" fill="rgb(243,45,11)" rx="2" ry="2" />
<text text-anchor="" x="20.90" 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>je_arena_chunk_dalloc_huge (1 samples, 0.13%)</title><rect x="16.3" y="837" width="1.6" height="15.0" fill="rgb(253,12,16)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>arena_unstash_purged (1 samples, 0.13%)</title><rect x="16.3" y="773" width="1.6" height="15.0" fill="rgb(221,174,2)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>&lt;core::iter::Skip&lt;I&gt; as core::iter::iterator::Iterator&gt;::next (5 samples, 0.67%)</title><rect x="231.2" y="773" width="7.8" height="15.0" fill="rgb(238,110,6)" rx="2" ry="2" />
<text text-anchor="" x="234.15" 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>core::mem::replace (1 samples, 0.13%)</title><rect x="594.5" y="69" width="1.6" height="15.0" fill="rgb(239,30,2)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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>_memcpy_sse2_unaligned_erms (175 samples, 23.43%)</title><rect x="681.4" y="661" width="276.4" height="15.0" fill="rgb(212,33,40)" rx="2" ry="2" />
<text text-anchor="" x="684.35" y="671.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>_memcpy_sse2_unaligned_erms (2 samples, 0.27%)</title><rect x="600.8" y="229" width="3.1" height="15.0" fill="rgb(250,118,21)" rx="2" ry="2" />
<text text-anchor="" x="603.79" 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>test::run_tests (1 samples, 0.13%)</title><rect x="13.2" y="1061" width="1.5" height="15.0" fill="rgb(237,207,53)" rx="2" ry="2" />
<text text-anchor="" x="16.16" y="1071.5" font-size="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_maybe_purge_ratio (1 samples, 0.13%)</title><rect x="16.3" y="805" width="1.6" height="15.0" fill="rgb(205,182,2)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>&lt;std::sync::mutex::MutexGuard&lt;'a, T&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.13%)</title><rect x="605.5" y="213" width="1.6" height="15.0" fill="rgb(244,53,50)" rx="2" ry="2" />
<text text-anchor="" x="608.53" 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>std::io::impls::&lt;impl std::io::Write for alloc::boxed::Box&lt;W&gt;&gt;::write_fmt (30 samples, 4.02%)</title><rect x="580.3" y="389" width="47.3" height="15.0" fill="rgb(247,90,47)" rx="2" ry="2" />
<text text-anchor="" x="583.25" y="399.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>core::ptr::drop_in_place (1 samples, 0.13%)</title><rect x="16.3" y="949" width="1.6" height="15.0" fill="rgb(230,161,43)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>std::panic::catch_unwind (2 samples, 0.27%)</title><rect x="11.6" y="1205" width="3.1" height="15.0" fill="rgb(248,28,11)" rx="2" ry="2" />
<text text-anchor="" x="14.58" y="1215.5" font-size="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_tests_console (2 samples, 0.27%)</title><rect x="11.6" y="1077" width="3.1" height="15.0" fill="rgb(227,216,19)" rx="2" ry="2" />
<text text-anchor="" x="14.58" y="1087.5" font-size="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 (35 samples, 4.69%)</title><rect x="572.4" y="597" width="55.2" height="15.0" fill="rgb(219,133,45)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;core..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::&lt;impl *const T&gt;::add (1 samples, 0.13%)</title><rect x="382.8" y="757" width="1.6" height="15.0" fill="rgb(227,97,44)" rx="2" ry="2" />
<text text-anchor="" x="385.80" 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>core::num::&lt;impl usize&gt;::wrapping_sub (2 samples, 0.27%)</title><rect x="983.1" y="741" width="3.1" height="15.0" fill="rgb(205,221,48)" rx="2" ry="2" />
<text text-anchor="" x="986.07" 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>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::index::IndexMut&lt;I&gt;&gt;::index_mut (7 samples, 0.94%)</title><rect x="103.2" y="789" width="11.1" height="15.0" fill="rgb(251,199,23)" rx="2" ry="2" />
<text text-anchor="" x="106.20" 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>[[kerne.allsyms]] (5 samples, 0.67%)</title><rect x="652.9" y="645" width="7.9" height="15.0" fill="rgb(207,121,16)" rx="2" ry="2" />
<text text-anchor="" x="655.92" y="655.5" font-size="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 (7 samples, 0.94%)</title><rect x="128.5" y="789" width="11.0" height="15.0" fill="rgb(219,74,6)" rx="2" ry="2" />
<text text-anchor="" x="131.47" 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>core::num::flt2dec::to_shortest_str (6 samples, 0.80%)</title><rect x="638.7" y="597" width="9.5" height="15.0" fill="rgb(215,42,43)" rx="2" ry="2" />
<text text-anchor="" x="641.70" 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]] (34 samples, 4.55%)</title><rect x="1002.0" y="725" width="53.7" height="15.0" fill="rgb(254,75,46)" rx="2" ry="2" />
<text text-anchor="" x="1005.02" y="735.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>std::sys_common::mutex::Mutex::raw_lock (1 samples, 0.13%)</title><rect x="596.1" y="229" width="1.5" height="15.0" fill="rgb(242,51,24)" rx="2" ry="2" />
<text text-anchor="" x="599.05" 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>_ieee754_log_avx (1 samples, 0.13%)</title><rect x="627.6" y="741" width="1.6" height="15.0" fill="rgb(228,127,47)" rx="2" ry="2" />
<text text-anchor="" x="630.64" 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>[[kerne.allsyms]] (2 samples, 0.27%)</title><rect x="600.8" y="213" width="3.1" height="15.0" fill="rgb(242,50,13)" rx="2" ry="2" />
<text text-anchor="" x="603.79" 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;alloc::vec::Vec&lt;T&gt;&gt;::extend_from_slice (199 samples, 26.64%)</title><rect x="675.0" y="821" width="314.4" height="15.0" fill="rgb(249,36,17)" rx="2" ry="2" />
<text text-anchor="" x="678.03" y="831.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;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::reserve (194 samples, 25.97%)</title><rect x="679.8" y="773" width="306.4" height="15.0" fill="rgb(207,180,52)" rx="2" ry="2" />
<text text-anchor="" x="682.77" y="783.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>all (747 samples, 100%)</title><rect x="10.0" y="1301" width="1180.0" height="15.0" fill="rgb(232,49,2)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1311.5" font-size="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]] (43 samples, 5.76%)</title><rect x="889.9" y="549" width="67.9" height="15.0" fill="rgb(250,19,8)" rx="2" ry="2" />
<text text-anchor="" x="892.87" y="559.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::Reader as rust_htslib::bam::Read&gt;::read (19 samples, 2.54%)</title><rect x="1156.8" y="885" width="30.0" height="15.0" fill="rgb(222,207,23)" rx="2" ry="2" />
<text text-anchor="" x="1159.83" y="895.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>std::collections::hash::table::make_hash (1 samples, 0.13%)</title><rect x="17.9" y="805" width="1.6" height="15.0" fill="rgb(223,55,52)" rx="2" ry="2" />
<text text-anchor="" x="20.90" 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>test::run_test::{{closure}} (742 samples, 99.33%)</title><rect x="17.9" y="949" width="1172.1" height="15.0" fill="rgb(252,39,26)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="959.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>core::cmp::Ord::min (3 samples, 0.40%)</title><rect x="1148.9" y="805" width="4.8" height="15.0" fill="rgb(212,153,19)" rx="2" ry="2" />
<text text-anchor="" x="1151.93" 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>&lt;bio::io::fasta::IndexedReader&lt;R&gt;&gt;::read (313 samples, 41.90%)</title><rect x="660.8" y="869" width="494.4" height="15.0" fill="rgb(233,221,18)" rx="2" ry="2" />
<text text-anchor="" x="663.82" y="879.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>&lt;core::iter::Enumerate&lt;I&gt; as core::iter::iterator::Iterator&gt;::fold::{{closure}} (79 samples, 10.58%)</title><rect x="239.0" y="693" width="124.8" height="15.0" fill="rgb(215,100,1)" rx="2" ry="2" />
<text text-anchor="" x="242.05" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;core::iter::En..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (102 samples, 13.65%)</title><rect x="796.7" y="613" width="161.1" height="15.0" fill="rgb(247,25,45)" rx="2" ry="2" />
<text text-anchor="" x="799.67" y="623.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>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T, I&gt;&gt;::from_iter (1 samples, 0.13%)</title><rect x="1186.8" y="821" width="1.6" height="15.0" fill="rgb(253,160,43)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" 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>alloc::slice::&lt;impl [T]&gt;::to_vec (1 samples, 0.13%)</title><rect x="13.2" y="981" width="1.5" height="15.0" fill="rgb(231,204,48)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>je_chunk_dalloc_wrapper (16 samples, 2.14%)</title><rect x="957.8" y="517" width="25.3" height="15.0" fill="rgb(218,186,10)" rx="2" ry="2" />
<text text-anchor="" x="960.79" y="527.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>test::test_main_static (2 samples, 0.27%)</title><rect x="11.6" y="1109" width="3.1" height="15.0" fill="rgb(235,147,48)" rx="2" ry="2" />
<text text-anchor="" x="14.58" y="1119.5" font-size="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 (35 samples, 4.69%)</title><rect x="572.4" y="629" width="55.2" height="15.0" fill="rgb(234,93,45)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;allo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_huge_dalloc (1 samples, 0.13%)</title><rect x="11.6" y="885" width="1.6" height="15.0" fill="rgb(205,144,48)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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::io::Write::write_fmt (11 samples, 1.47%)</title><rect x="630.8" y="661" width="17.4" height="15.0" fill="rgb(231,85,29)" rx="2" ry="2" />
<text text-anchor="" x="633.80" y="671.5" font-size="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.09%)</title><rect x="1088.9" y="805" width="60.0" height="15.0" fill="rgb(214,35,9)" rx="2" ry="2" />
<text text-anchor="" x="1091.90" y="815.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>arena_purge_to_limit (8 samples, 1.07%)</title><rect x="648.2" y="821" width="12.6" height="15.0" fill="rgb(211,201,4)" rx="2" ry="2" />
<text text-anchor="" x="651.18" 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]] (44 samples, 5.89%)</title><rect x="888.3" y="565" width="69.5" height="15.0" fill="rgb(237,187,19)" rx="2" ry="2" />
<text text-anchor="" x="891.29" y="575.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;bio::stats::probs::LogProb as core::ops::arith::Add&gt;::add (8 samples, 1.07%)</title><rect x="115.8" y="789" width="12.7" height="15.0" fill="rgb(212,103,24)" rx="2" ry="2" />
<text text-anchor="" x="118.84" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="16.3" y="693" width="1.6" height="15.0" fill="rgb(243,109,37)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::reserve_internal (1 samples, 0.13%)</title><rect x="1186.8" y="757" width="1.6" height="15.0" fill="rgb(222,223,24)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" 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>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::ptr (2 samples, 0.27%)</title><rect x="106.4" y="757" width="3.1" height="15.0" fill="rgb(241,194,16)" rx="2" ry="2" />
<text text-anchor="" x="109.36" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="16.3" y="645" width="1.6" height="15.0" fill="rgb(228,75,25)" rx="2" ry="2" />
<text text-anchor="" x="19.32" y="655.5" font-size="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.13%)</title><rect x="229.6" y="757" width="1.6" height="15.0" fill="rgb(240,221,35)" rx="2" ry="2" />
<text text-anchor="" x="232.57" 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>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::deref::Deref&gt;::deref (12 samples, 1.61%)</title><rect x="82.7" y="773" width="18.9" height="15.0" fill="rgb(206,77,3)" rx="2" ry="2" />
<text text-anchor="" x="85.66" 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>&lt;core::slice::Iter&lt;'a, T&gt; as core::iter::iterator::Iterator&gt;::fold (35 samples, 4.69%)</title><rect x="572.4" y="501" width="55.2" height="15.0" fill="rgb(211,27,52)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;core..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_tsd_fetch_impl (1 samples, 0.13%)</title><rect x="1186.8" y="661" width="1.6" height="15.0" fill="rgb(217,127,50)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" y="671.5" font-size="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.13%)</title><rect x="101.6" y="757" width="1.6" height="15.0" fill="rgb(250,202,2)" rx="2" ry="2" />
<text text-anchor="" x="104.62" 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>std::sys_common::mutex::Mutex::raw_unlock (2 samples, 0.27%)</title><rect x="583.4" y="261" width="3.2" height="15.0" fill="rgb(224,225,37)" rx="2" ry="2" />
<text text-anchor="" x="586.41" 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>std::sys_common::poison::Flag::borrow (1 samples, 0.13%)</title><rect x="594.5" y="213" width="1.6" height="15.0" fill="rgb(229,35,10)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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;alloc::vec::Vec&lt;T&gt; as core::iter::traits::FromIterator&lt;T&gt;&gt;::from_iter (35 samples, 4.69%)</title><rect x="572.4" y="677" width="55.2" height="15.0" fill="rgb(211,88,22)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;allo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_log1p (3 samples, 0.40%)</title><rect x="573.9" y="453" width="4.8" height="15.0" fill="rgb(226,66,42)" rx="2" ry="2" />
<text text-anchor="" x="576.94" 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::sync::Arc&lt;T&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.13%)</title><rect x="16.3" y="1013" width="1.6" height="15.0" fill="rgb(223,154,16)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>&lt;alloc::vec::Vec&lt;T&gt;&gt;::reserve (194 samples, 25.97%)</title><rect x="679.8" y="789" width="306.4" height="15.0" fill="rgb(239,30,27)" rx="2" ry="2" />
<text text-anchor="" x="682.77" y="799.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>test::test_main (2 samples, 0.27%)</title><rect x="11.6" y="1093" width="3.1" height="15.0" fill="rgb(250,4,42)" rx="2" ry="2" />
<text text-anchor="" x="14.58" y="1103.5" font-size="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::fmt::Formatter::run (11 samples, 1.47%)</title><rect x="630.8" y="629" width="17.4" height="15.0" fill="rgb(215,183,10)" rx="2" ry="2" />
<text text-anchor="" x="633.80" y="639.5" font-size="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 (2 samples, 0.27%)</title><rect x="19.5" y="757" width="3.1" height="15.0" fill="rgb(241,160,26)" rx="2" ry="2" />
<text text-anchor="" x="22.48" 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>&lt;test::Sink as std::io::Write&gt;::write (3 samples, 0.40%)</title><rect x="632.4" y="549" width="4.7" height="15.0" fill="rgb(206,154,45)" rx="2" ry="2" />
<text text-anchor="" x="635.38" 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.21%)</title><rect x="1111.0" y="709" width="37.9" height="15.0" fill="rgb(211,134,16)" rx="2" ry="2" />
<text text-anchor="" x="1114.02" y="719.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;core::option::Option&lt;T&gt;&gt;::map (35 samples, 4.69%)</title><rect x="572.4" y="773" width="55.2" height="15.0" fill="rgb(225,100,43)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;core..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="14.7" y="869" width="1.6" height="15.0" fill="rgb(205,93,44)" rx="2" ry="2" />
<text text-anchor="" x="17.74" 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>_pthread_mutex_unlock_usercnt (1 samples, 0.13%)</title><rect x="605.5" y="149" width="1.6" height="15.0" fill="rgb(227,82,51)" rx="2" ry="2" />
<text text-anchor="" x="608.53" 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::ops::function::FnMut::call_mut (4 samples, 0.54%)</title><rect x="641.9" y="581" width="6.3" height="15.0" fill="rgb(217,53,4)" rx="2" ry="2" />
<text text-anchor="" x="644.86" 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>&lt;alloc::raw_vec::RawVec&lt;T, A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.13%)</title><rect x="11.6" y="949" width="1.6" height="15.0" fill="rgb(241,192,44)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (17 samples, 2.28%)</title><rect x="76.3" y="789" width="26.9" height="15.0" fill="rgb(215,28,26)" rx="2" ry="2" />
<text text-anchor="" x="79.35" y="799.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>_rust_maybe_catch_panic (2 samples, 0.27%)</title><rect x="11.6" y="1173" width="3.1" height="15.0" fill="rgb(236,8,34)" rx="2" ry="2" />
<text text-anchor="" x="14.58" y="1183.5" font-size="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::thread::local::LocalKey&lt;T&gt;&gt;::try_with (11 samples, 1.47%)</title><rect x="630.8" y="709" width="17.4" height="15.0" fill="rgb(249,75,54)" rx="2" ry="2" />
<text text-anchor="" x="633.80" 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>[[kerne.allsyms]] (16 samples, 2.14%)</title><rect x="957.8" y="389" width="25.3" height="15.0" fill="rgb(252,49,49)" rx="2" ry="2" />
<text text-anchor="" x="960.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>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::dealloc_buffer (1 samples, 0.13%)</title><rect x="16.3" y="901" width="1.6" height="15.0" fill="rgb(236,58,15)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>core::slice::&lt;impl [T]&gt;::copy_from_slice (2 samples, 0.27%)</title><rect x="986.2" y="789" width="3.2" height="15.0" fill="rgb(230,27,5)" rx="2" ry="2" />
<text text-anchor="" x="989.22" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="14.7" y="885" width="1.6" height="15.0" fill="rgb(251,117,1)" rx="2" ry="2" />
<text text-anchor="" x="17.74" 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>je_pages_purge (8 samples, 1.07%)</title><rect x="648.2" y="773" width="12.6" height="15.0" fill="rgb(220,226,50)" rx="2" ry="2" />
<text text-anchor="" x="651.18" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="16.3" y="709" width="1.6" height="15.0" fill="rgb(213,114,15)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>&lt;alloc::vec::Vec&lt;T&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (1 samples, 0.13%)</title><rect x="144.3" y="757" width="1.6" height="15.0" fill="rgb(234,157,42)" rx="2" ry="2" />
<text text-anchor="" x="147.27" 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>je_huge_ralloc (191 samples, 25.57%)</title><rect x="681.4" y="677" width="301.7" height="15.0" fill="rgb(237,80,14)" rx="2" ry="2" />
<text text-anchor="" x="684.35" y="687.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::model::evidence::reads::ReadEmission::prob_match_mismatch (21 samples, 2.81%)</title><rect x="152.2" y="773" width="33.1" height="15.0" fill="rgb(249,26,38)" rx="2" ry="2" />
<text text-anchor="" x="155.17" y="783.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.14%)</title><rect x="957.8" y="453" width="25.3" height="15.0" fill="rgb(233,55,14)" rx="2" ry="2" />
<text text-anchor="" x="960.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;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 (1 samples, 0.13%)</title><rect x="13.2" y="933" width="1.5" height="15.0" fill="rgb(215,141,35)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>core::ptr::swap_nonoverlapping_one (1 samples, 0.13%)</title><rect x="594.5" y="37" width="1.6" height="15.0" fill="rgb(249,226,45)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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::fmt::float::float_to_decimal_common_shortest (25 samples, 3.35%)</title><rect x="588.2" y="325" width="39.4" height="15.0" fill="rgb(246,189,49)" rx="2" ry="2" />
<text text-anchor="" x="591.15" y="335.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>[[kerne.allsyms]] (3 samples, 0.40%)</title><rect x="953.1" y="501" width="4.7" height="15.0" fill="rgb(212,154,14)" rx="2" ry="2" />
<text text-anchor="" x="956.05" 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]] (1 samples, 0.13%)</title><rect x="13.2" y="869" width="1.5" height="15.0" fill="rgb(211,116,39)" rx="2" ry="2" />
<text text-anchor="" x="16.16" 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>std::thread::panicking (1 samples, 0.13%)</title><rect x="594.5" y="197" width="1.6" height="15.0" fill="rgb(212,226,49)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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>core::num::flt2dec::digits_to_dec_str (1 samples, 0.13%)</title><rect x="640.3" y="581" width="1.6" height="15.0" fill="rgb(220,218,14)" rx="2" ry="2" />
<text text-anchor="" x="643.28" 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]] (1 samples, 0.13%)</title><rect x="602.4" y="85" width="1.5" height="15.0" fill="rgb(208,66,45)" rx="2" ry="2" />
<text text-anchor="" x="605.37" 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>_memcmp_sse4_1 (1 samples, 0.13%)</title><rect x="11.6" y="725" width="1.6" height="15.0" fill="rgb(222,2,41)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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]] (53 samples, 7.10%)</title><rect x="874.1" y="581" width="83.7" height="15.0" fill="rgb(253,208,33)" rx="2" ry="2" />
<text text-anchor="" x="877.07" y="591.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>core::ptr::drop_in_place (1 samples, 0.13%)</title><rect x="11.6" y="965" width="1.6" height="15.0" fill="rgb(215,76,7)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>&lt;&amp;'a bio::stats::probs::LogProb as core::ops::arith::Sub&lt;bio::stats::probs::LogProb&gt;&gt;::sub (1 samples, 0.13%)</title><rect x="261.2" y="645" width="1.5" height="15.0" fill="rgb(237,176,26)" rx="2" ry="2" />
<text text-anchor="" x="264.16" y="655.5" font-size="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.14%)</title><rect x="957.8" y="437" width="25.3" height="15.0" fill="rgb(223,144,18)" rx="2" ry="2" />
<text text-anchor="" x="960.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>je_huge_dalloc (16 samples, 2.14%)</title><rect x="957.8" y="613" width="25.3" height="15.0" fill="rgb(232,177,35)" rx="2" ry="2" />
<text text-anchor="" x="960.79" y="623.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>std::rt::lang_start_internal (3 samples, 0.40%)</title><rect x="10.0" y="1221" width="4.7" height="15.0" fill="rgb(206,35,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1231.5" font-size="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::drop_in_place (1 samples, 0.13%)</title><rect x="16.3" y="965" width="1.6" height="15.0" fill="rgb(227,17,50)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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::RecordBuffer::fill (2 samples, 0.27%)</title><rect x="19.5" y="853" width="3.1" height="15.0" fill="rgb(245,129,19)" rx="2" ry="2" />
<text text-anchor="" x="22.48" 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>[[kerne.allsyms]] (1 samples, 0.13%)</title><rect x="602.4" y="133" width="1.5" height="15.0" fill="rgb(249,121,43)" rx="2" ry="2" />
<text text-anchor="" x="605.37" 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>core::fmt::Formatter::write_formatted_parts (12 samples, 1.61%)</title><rect x="589.7" y="309" width="19.0" height="15.0" fill="rgb(239,34,38)" rx="2" ry="2" />
<text text-anchor="" x="592.73" 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>rust_htslib::bam::record::Record::unpack_cigar (1 samples, 0.13%)</title><rect x="1186.8" y="869" width="1.6" height="15.0" fill="rgb(228,174,21)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" 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>bio::stats::probs::LogProb::ln_add_exp (1 samples, 0.13%)</title><rect x="578.7" y="453" width="1.6" height="15.0" fill="rgb(209,38,53)" rx="2" ry="2" />
<text text-anchor="" x="581.67" 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::Write::write_fmt::Adaptor&lt;'a, T&gt; as core::fmt::Write&gt;::write_str (1 samples, 0.13%)</title><rect x="637.1" y="565" width="1.6" height="15.0" fill="rgb(208,145,5)" rx="2" ry="2" />
<text text-anchor="" x="640.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>je_arena_chunk_dalloc_huge (1 samples, 0.13%)</title><rect x="11.6" y="869" width="1.6" height="15.0" fill="rgb(215,64,39)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>&lt;usize as core::slice::SliceIndex&lt;[T]&gt;&gt;::index_mut (3 samples, 0.40%)</title><rect x="109.5" y="757" width="4.8" height="15.0" fill="rgb(211,132,31)" rx="2" ry="2" />
<text text-anchor="" x="112.52" 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>std::sys_common::thread::start_thread (744 samples, 99.60%)</title><rect x="14.7" y="1221" width="1175.3" height="15.0" fill="rgb(216,188,26)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1231.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>&lt;alloc::alloc::Global as core::alloc::Alloc&gt;::realloc (191 samples, 25.57%)</title><rect x="681.4" y="741" width="301.7" height="15.0" fill="rgb(253,189,28)" rx="2" ry="2" />
<text text-anchor="" x="684.35" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;alloc::alloc::Global as core::alloc::Al..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (34 samples, 4.55%)</title><rect x="1002.0" y="741" width="53.7" height="15.0" fill="rgb(243,113,46)" rx="2" ry="2" />
<text text-anchor="" x="1005.02" y="751.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>core::iter::iterator::Iterator::collect (35 samples, 4.69%)</title><rect x="572.4" y="853" width="55.2" height="15.0" fill="rgb(215,87,41)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core:..</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 (35 samples, 4.69%)</title><rect x="572.4" y="533" width="55.2" height="15.0" fill="rgb(240,38,24)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;libp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::panicking::try (744 samples, 99.60%)</title><rect x="14.7" y="1141" width="1175.3" height="15.0" fill="rgb(241,51,29)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1151.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;alloc::raw_vec::RawVec&lt;T, A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.13%)</title><rect x="16.3" y="917" width="1.6" height="15.0" fill="rgb(218,54,20)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>je_chunk_dalloc_wrapper (8 samples, 1.07%)</title><rect x="648.2" y="789" width="12.6" height="15.0" fill="rgb(243,125,21)" rx="2" ry="2" />
<text text-anchor="" x="651.18" 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>_pthread_mutex_unlock_usercnt (3 samples, 0.40%)</title><rect x="632.4" y="453" width="4.7" height="15.0" fill="rgb(219,168,38)" rx="2" ry="2" />
<text text-anchor="" x="635.38" 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::Record::cigar (1 samples, 0.13%)</title><rect x="1186.8" y="885" width="1.6" height="15.0" fill="rgb(218,155,7)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" 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>test::run_tests_console::callback (1 samples, 0.13%)</title><rect x="13.2" y="1029" width="1.5" height="15.0" fill="rgb(219,131,42)" rx="2" ry="2" />
<text text-anchor="" x="16.16" y="1039.5" font-size="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::sync::mutex::Mutex&lt;T&gt;&gt;::lock (2 samples, 0.27%)</title><rect x="594.5" y="245" width="3.1" height="15.0" fill="rgb(228,128,38)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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]] (5 samples, 0.67%)</title><rect x="652.9" y="597" width="7.9" height="15.0" fill="rgb(218,89,25)" rx="2" ry="2" />
<text text-anchor="" x="655.92" 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;f64 as core::ops::arith::Add&gt;::add (2 samples, 0.27%)</title><rect x="179.0" y="725" width="3.2" height="15.0" fill="rgb(229,139,14)" rx="2" ry="2" />
<text text-anchor="" x="182.02" 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>std::io::Write::write_fmt (30 samples, 4.02%)</title><rect x="580.3" y="373" width="47.3" height="15.0" fill="rgb(222,5,52)" rx="2" ry="2" />
<text text-anchor="" x="583.25" y="383.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>std::sys_common::mutex::Mutex::raw_unlock (1 samples, 0.13%)</title><rect x="637.1" y="485" width="1.6" height="15.0" fill="rgb(216,142,41)" rx="2" ry="2" />
<text text-anchor="" x="640.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>[[kerne.allsyms]] (16 samples, 2.14%)</title><rect x="957.8" y="405" width="25.3" height="15.0" fill="rgb(253,19,5)" rx="2" ry="2" />
<text text-anchor="" x="960.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>std::io::Write::write_all (8 samples, 1.07%)</title><rect x="591.3" y="277" width="12.6" height="15.0" fill="rgb(208,106,24)" rx="2" ry="2" />
<text text-anchor="" x="594.31" 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>std::panicking::panicking (1 samples, 0.13%)</title><rect x="594.5" y="181" width="1.6" height="15.0" fill="rgb(247,163,0)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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>std::sys::unix::mutex::Mutex::unlock (2 samples, 0.27%)</title><rect x="597.6" y="197" width="3.2" height="15.0" fill="rgb(229,2,39)" rx="2" ry="2" />
<text text-anchor="" x="600.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>arena_unstash_purged (1 samples, 0.13%)</title><rect x="11.6" y="805" width="1.6" height="15.0" fill="rgb(211,92,40)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>&lt;F as alloc::boxed::FnBox&lt;A&gt;&gt;::call_box (742 samples, 99.33%)</title><rect x="17.9" y="981" width="1172.1" height="15.0" fill="rgb(218,182,5)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="991.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]] (1 samples, 0.13%)</title><rect x="16.3" y="565" width="1.6" height="15.0" fill="rgb(228,160,16)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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;F as alloc::boxed::FnBox&lt;A&gt;&gt;::call_box (744 samples, 99.60%)</title><rect x="14.7" y="1189" width="1175.3" height="15.0" fill="rgb(245,33,38)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1199.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>je_arena_maybe_purge (1 samples, 0.13%)</title><rect x="16.3" y="821" width="1.6" height="15.0" fill="rgb(206,171,40)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>libprosic::call::pairwise::call (720 samples, 96.39%)</title><rect x="17.9" y="901" width="1137.3" height="15.0" fill="rgb(244,123,29)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="911.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>std::panic::catch_unwind (744 samples, 99.60%)</title><rect x="14.7" y="1157" width="1175.3" height="15.0" fill="rgb(250,213,26)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1167.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>std::sync::once::Once::call_once (1 samples, 0.13%)</title><rect x="183.8" y="693" width="1.5" height="15.0" fill="rgb(241,55,39)" rx="2" ry="2" />
<text text-anchor="" x="186.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>je_tsd_fetch (1 samples, 0.13%)</title><rect x="1186.8" y="677" width="1.6" height="15.0" fill="rgb(231,80,46)" rx="2" ry="2" />
<text text-anchor="" x="1189.84" y="687.5" font-size="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.14%)</title><rect x="957.8" y="501" width="25.3" height="15.0" fill="rgb(235,126,14)" rx="2" ry="2" />
<text text-anchor="" x="960.79" y="511.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>std::io::impls::&lt;impl std::io::Write for alloc::boxed::Box&lt;W&gt;&gt;::write_fmt (11 samples, 1.47%)</title><rect x="630.8" y="677" width="17.4" height="15.0" fill="rgb(217,111,28)" rx="2" ry="2" />
<text text-anchor="" x="633.80" y="687.5" font-size="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 (38 samples, 5.09%)</title><rect x="995.7" y="773" width="60.0" height="15.0" fill="rgb(237,214,39)" rx="2" ry="2" />
<text text-anchor="" x="998.70" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (1 samples, 0.13%)</title><rect x="11.6" y="997" width="1.6" height="15.0" fill="rgb(209,60,36)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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]] (102 samples, 13.65%)</title><rect x="796.7" y="629" width="161.1" height="15.0" fill="rgb(230,147,28)" rx="2" ry="2" />
<text text-anchor="" x="799.67" y="639.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>je_pages_purge (1 samples, 0.13%)</title><rect x="16.3" y="741" width="1.6" height="15.0" fill="rgb(229,220,34)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>je_chunk_dalloc_wrapper (1 samples, 0.13%)</title><rect x="16.3" y="757" width="1.6" height="15.0" fill="rgb(253,46,38)" rx="2" ry="2" />
<text text-anchor="" x="19.32" 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>[[kerne.allsyms]] (2 samples, 0.27%)</title><rect x="600.8" y="149" width="3.1" height="15.0" fill="rgb(246,226,19)" rx="2" ry="2" />
<text text-anchor="" x="603.79" 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>rust_htslib::bam::record::Record::is_unmapped (1 samples, 0.13%)</title><rect x="1188.4" y="885" width="1.6" height="15.0" fill="rgb(224,102,2)" rx="2" ry="2" />
<text text-anchor="" x="1191.42" 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>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T, I&gt;&gt;::from_iter (35 samples, 4.69%)</title><rect x="572.4" y="821" width="55.2" height="15.0" fill="rgb(211,168,3)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;allo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;test::Sink as std::io::Write&gt;::write (3 samples, 0.40%)</title><rect x="581.8" y="309" width="4.8" height="15.0" fill="rgb(221,81,34)" rx="2" ry="2" />
<text text-anchor="" x="584.83" 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>[[kerne.allsyms]] (9 samples, 1.20%)</title><rect x="968.8" y="325" width="14.3" height="15.0" fill="rgb(219,6,45)" rx="2" ry="2" />
<text text-anchor="" x="971.85" 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>libprosic::model::evidence::reads::ReadEmission::prob_match_mismatch (7 samples, 0.94%)</title><rect x="141.1" y="773" width="11.1" height="15.0" fill="rgb(213,198,23)" rx="2" ry="2" />
<text text-anchor="" x="144.11" 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>std::thread::Builder::spawn::{{closure}}::{{closure}} (744 samples, 99.60%)</title><rect x="14.7" y="1077" width="1175.3" height="15.0" fill="rgb(219,64,4)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1087.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>&lt;f64 as core::iter::traits::Sum&gt;::sum (91 samples, 12.18%)</title><rect x="239.0" y="757" width="143.8" height="15.0" fill="rgb(244,49,22)" rx="2" ry="2" />
<text text-anchor="" x="242.05" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;f64 as core::iter..</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.13%)</title><rect x="185.3" y="757" width="1.6" height="15.0" fill="rgb(230,202,19)" rx="2" ry="2" />
<text text-anchor="" x="188.34" 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>std::panicking::update_panic_count::{{closure}} (1 samples, 0.13%)</title><rect x="594.5" y="117" width="1.6" height="15.0" fill="rgb(253,224,24)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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>_GI___clone (744 samples, 99.60%)</title><rect x="14.7" y="1269" width="1175.3" height="15.0" fill="rgb(225,167,14)" rx="2" ry="2" />
<text text-anchor="" x="17.74" y="1279.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>[[kerne.allsyms]] (8 samples, 1.07%)</title><rect x="648.2" y="661" width="12.6" height="15.0" fill="rgb(250,210,26)" rx="2" ry="2" />
<text text-anchor="" x="651.18" y="671.5" font-size="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 (2 samples, 0.27%)</title><rect x="19.5" y="789" width="3.1" height="15.0" fill="rgb(209,120,34)" rx="2" ry="2" />
<text text-anchor="" x="22.48" 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>core::cmp::impls::&lt;impl core::cmp::PartialOrd for u64&gt;::le (2 samples, 0.27%)</title><rect x="1150.5" y="789" width="3.2" height="15.0" fill="rgb(242,159,6)" rx="2" ry="2" />
<text text-anchor="" x="1153.51" 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>core::slice::&lt;impl core::ops::index::Index&lt;I&gt; for [T]&gt;::index (1 samples, 0.13%)</title><rect x="144.3" y="741" width="1.6" height="15.0" fill="rgb(207,209,18)" rx="2" ry="2" />
<text text-anchor="" x="147.27" 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>arena_maybe_purge_ratio (16 samples, 2.14%)</title><rect x="957.8" y="565" width="25.3" height="15.0" fill="rgb(238,98,42)" rx="2" ry="2" />
<text text-anchor="" x="960.79" y="575.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>core::cmp::impls::&lt;impl core::cmp::PartialOrd for f64&gt;::ge (1 samples, 0.13%)</title><rect x="229.6" y="725" width="1.6" height="15.0" fill="rgb(252,112,51)" rx="2" ry="2" />
<text text-anchor="" x="232.57" 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.13%)</title><rect x="1054.1" y="581" width="1.6" height="15.0" fill="rgb(252,155,9)" rx="2" ry="2" />
<text text-anchor="" x="1057.15" 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]] (1 samples, 0.13%)</title><rect x="1054.1" y="565" width="1.6" height="15.0" fill="rgb(249,213,8)" rx="2" ry="2" />
<text text-anchor="" x="1057.15" 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>std::io::Write::write_all (3 samples, 0.40%)</title><rect x="581.8" y="325" width="4.8" height="15.0" fill="rgb(237,64,35)" rx="2" ry="2" />
<text text-anchor="" x="584.83" 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::slice::Iter&lt;'a, T&gt; as core::iter::iterator::Iterator&gt;::fold (13 samples, 1.74%)</title><rect x="627.6" y="789" width="20.6" height="15.0" fill="rgb(225,69,27)" rx="2" ry="2" />
<text text-anchor="" x="630.64" 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;libprosic::model::evidence::reads::ReferenceEmissionParams&lt;'a&gt; as bio::stats::pairhmm::EmissionParameters&gt;::prob_emit_y (1 samples, 0.13%)</title><rect x="185.3" y="789" width="1.6" height="15.0" fill="rgb(248,92,44)" rx="2" ry="2" />
<text text-anchor="" x="188.34" 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;std::io::buffered::BufReader&lt;R&gt; as std::io::BufRead&gt;::fill_buf (40 samples, 5.35%)</title><rect x="992.5" y="821" width="63.2" height="15.0" fill="rgb(220,9,28)" rx="2" ry="2" />
<text text-anchor="" x="995.54" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;std::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_observation_case_control (35 samples, 4.69%)</title><rect x="572.4" y="469" width="55.2" height="15.0" fill="rgb(212,35,26)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libpr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (29 samples, 3.88%)</title><rect x="1009.9" y="629" width="45.8" height="15.0" fill="rgb(205,77,35)" rx="2" ry="2" />
<text text-anchor="" x="1012.92" y="639.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>core::mem::swap (1 samples, 0.13%)</title><rect x="594.5" y="53" width="1.6" height="15.0" fill="rgb(238,216,8)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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>libprosic::model::sample::Sample::extract_observations (351 samples, 46.99%)</title><rect x="17.9" y="869" width="554.5" height="15.0" fill="rgb(237,115,51)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="879.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>&lt;core::cell::Cell&lt;T&gt;&gt;::set (1 samples, 0.13%)</title><rect x="594.5" y="101" width="1.6" height="15.0" fill="rgb(227,68,18)" rx="2" ry="2" />
<text text-anchor="" x="597.47" 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>chunk_hooks_assure_initialized_locked (1 samples, 0.13%)</title><rect x="11.6" y="757" width="1.6" height="15.0" fill="rgb(245,45,10)" rx="2" ry="2" />
<text text-anchor="" x="14.58" 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>std::io::Write::write_all (3 samples, 0.40%)</title><rect x="603.9" y="261" width="4.8" height="15.0" fill="rgb(206,6,12)" rx="2" ry="2" />
<text text-anchor="" x="606.95" 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>&lt;bio::stats::probs::LogProb as core::cmp::PartialOrd&gt;::gt (3 samples, 0.40%)</title><rect x="226.4" y="773" width="4.8" height="15.0" fill="rgb(253,220,44)" rx="2" ry="2" />
<text text-anchor="" x="229.41" 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>itertools::Itertools::collect_vec (35 samples, 4.69%)</title><rect x="572.4" y="869" width="55.2" height="15.0" fill="rgb(208,174,21)" rx="2" ry="2" />
<text text-anchor="" x="575.36" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >itert..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[kerne.allsyms]] (3 samples, 0.40%)</title><rect x="1144.2" y="661" width="4.7" height="15.0" fill="rgb(217,219,45)" rx="2" ry="2" />
<text text-anchor="" x="1147.19" y="671.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