Created
November 13, 2018 16:21
-
-
Save dlaehnemann/b452366c468a89d7fe1ef7e0f1c03e3b to your computer and use it in GitHub Desktop.
libprosic flamegraph of test09 at branch precompute-pairhmm-cell-probs commit 4fcdc1ba7377704ee17e8177403fd269323051f7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" standalone="no"?> | |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
<svg version="1.1" width="1200" height="1062" onload="init(evt)" viewBox="0 0 1200 1062" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> | |
<!-- NOTES: --> | |
<defs > | |
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > | |
<stop stop-color="#eeeeee" offset="5%" /> | |
<stop stop-color="#eeeeb0" offset="95%" /> | |
</linearGradient> | |
</defs> | |
<style type="text/css"> | |
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; } | |
</style> | |
<script type="text/ecmascript"> | |
<![CDATA[ | |
var details, searchbtn, matchedtxt, svg; | |
function init(evt) { | |
details = document.getElementById("details").firstChild; | |
searchbtn = document.getElementById("search"); | |
matchedtxt = document.getElementById("matched"); | |
svg = document.getElementsByTagName("svg")[0]; | |
searching = 0; | |
} | |
// mouse-over for info | |
function s(node) { // show | |
info = g_to_text(node); | |
details.nodeValue = "Function: " + info; | |
} | |
function c() { // clear | |
details.nodeValue = ' '; | |
} | |
// ctrl-F for search | |
window.addEventListener("keydown",function (e) { | |
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { | |
e.preventDefault(); | |
search_prompt(); | |
} | |
}) | |
// functions | |
function find_child(parent, name, attr) { | |
var children = parent.childNodes; | |
for (var i=0; i<children.length;i++) { | |
if (children[i].tagName == name) | |
return (attr != undefined) ? children[i].attributes[attr].value : children[i]; | |
} | |
return; | |
} | |
function orig_save(e, attr, val) { | |
if (e.attributes["_orig_"+attr] != undefined) return; | |
if (e.attributes[attr] == undefined) return; | |
if (val == undefined) val = e.attributes[attr].value; | |
e.setAttribute("_orig_"+attr, val); | |
} | |
function orig_load(e, attr) { | |
if (e.attributes["_orig_"+attr] == undefined) return; | |
e.attributes[attr].value = e.attributes["_orig_"+attr].value; | |
e.removeAttribute("_orig_"+attr); | |
} | |
function g_to_text(e) { | |
var text = find_child(e, "title").firstChild.nodeValue; | |
return (text) | |
} | |
function g_to_func(e) { | |
var func = g_to_text(e); | |
// if there's any manipulation we want to do to the function | |
// name before it's searched, do it here before returning. | |
return (func); | |
} | |
function update_text(e) { | |
var r = find_child(e, "rect"); | |
var t = find_child(e, "text"); | |
var w = parseFloat(r.attributes["width"].value) -3; | |
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); | |
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3; | |
// Smaller than this size won't fit anything | |
if (w < 2*12*0.59) { | |
t.textContent = ""; | |
return; | |
} | |
t.textContent = txt; | |
// Fit in full text width | |
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w) | |
return; | |
for (var x=txt.length-2; x>0; x--) { | |
if (t.getSubStringLength(0, x+2) <= w) { | |
t.textContent = txt.substring(0,x) + ".."; | |
return; | |
} | |
} | |
t.textContent = ""; | |
} | |
// zoom | |
function zoom_reset(e) { | |
if (e.attributes != undefined) { | |
orig_load(e, "x"); | |
orig_load(e, "width"); | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_reset(c[i]); | |
} | |
} | |
function zoom_child(e, x, ratio) { | |
if (e.attributes != undefined) { | |
if (e.attributes["x"] != undefined) { | |
orig_save(e, "x"); | |
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10; | |
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3; | |
} | |
if (e.attributes["width"] != undefined) { | |
orig_save(e, "width"); | |
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio; | |
} | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_child(c[i], x-10, ratio); | |
} | |
} | |
function zoom_parent(e) { | |
if (e.attributes) { | |
if (e.attributes["x"] != undefined) { | |
orig_save(e, "x"); | |
e.attributes["x"].value = 10; | |
} | |
if (e.attributes["width"] != undefined) { | |
orig_save(e, "width"); | |
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2); | |
} | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_parent(c[i]); | |
} | |
} | |
function zoom(node) { | |
var attr = find_child(node, "rect").attributes; | |
var width = parseFloat(attr["width"].value); | |
var xmin = parseFloat(attr["x"].value); | |
var xmax = parseFloat(xmin + width); | |
var ymin = parseFloat(attr["y"].value); | |
var ratio = (svg.width.baseVal.value - 2*10) / width; | |
// XXX: Workaround for JavaScript float issues (fix me) | |
var fudge = 0.0001; | |
var unzoombtn = document.getElementById("unzoom"); | |
unzoombtn.style["opacity"] = "1.0"; | |
var el = document.getElementsByTagName("g"); | |
for(var i=0;i<el.length;i++){ | |
var e = el[i]; | |
var a = find_child(e, "rect").attributes; | |
var ex = parseFloat(a["x"].value); | |
var ew = parseFloat(a["width"].value); | |
// Is it an ancestor | |
if (0 == 0) { | |
var upstack = parseFloat(a["y"].value) > ymin; | |
} else { | |
var upstack = parseFloat(a["y"].value) < ymin; | |
} | |
if (upstack) { | |
// Direct ancestor | |
if (ex <= xmin && (ex+ew+fudge) >= xmax) { | |
e.style["opacity"] = "0.5"; | |
zoom_parent(e); | |
e.onclick = function(e){unzoom(); zoom(this);}; | |
update_text(e); | |
} | |
// not in current path | |
else | |
e.style["display"] = "none"; | |
} | |
// Children maybe | |
else { | |
// no common path | |
if (ex < xmin || ex + fudge >= xmax) { | |
e.style["display"] = "none"; | |
} | |
else { | |
zoom_child(e, xmin, ratio); | |
e.onclick = function(e){zoom(this);}; | |
update_text(e); | |
} | |
} | |
} | |
} | |
function unzoom() { | |
var unzoombtn = document.getElementById("unzoom"); | |
unzoombtn.style["opacity"] = "0.0"; | |
var el = document.getElementsByTagName("g"); | |
for(i=0;i<el.length;i++) { | |
el[i].style["display"] = "block"; | |
el[i].style["opacity"] = "1"; | |
zoom_reset(el[i]); | |
update_text(el[i]); | |
} | |
} | |
// search | |
function reset_search() { | |
var el = document.getElementsByTagName("rect"); | |
for (var i=0; i < el.length; i++) { | |
orig_load(el[i], "fill") | |
} | |
} | |
function search_prompt() { | |
if (!searching) { | |
var term = prompt("Enter a search term (regexp " + | |
"allowed, eg: ^ext4_)", ""); | |
if (term != null) { | |
search(term) | |
} | |
} else { | |
reset_search(); | |
searching = 0; | |
searchbtn.style["opacity"] = "0.1"; | |
searchbtn.firstChild.nodeValue = "Search" | |
matchedtxt.style["opacity"] = "0.0"; | |
matchedtxt.firstChild.nodeValue = "" | |
} | |
} | |
function search(term) { | |
var re = new RegExp(term); | |
var el = document.getElementsByTagName("g"); | |
var matches = new Object(); | |
var maxwidth = 0; | |
for (var i = 0; i < el.length; i++) { | |
var e = el[i]; | |
if (e.attributes["class"].value != "func_g") | |
continue; | |
var func = g_to_func(e); | |
var rect = find_child(e, "rect"); | |
if (rect == null) { | |
// the rect might be wrapped in an anchor | |
// if nameattr href is being used | |
if (rect = find_child(e, "a")) { | |
rect = find_child(r, "rect"); | |
} | |
} | |
if (func == null || rect == null) | |
continue; | |
// Save max width. Only works as we have a root frame | |
var w = parseFloat(rect.attributes["width"].value); | |
if (w > maxwidth) | |
maxwidth = w; | |
if (func.match(re)) { | |
// highlight | |
var x = parseFloat(rect.attributes["x"].value); | |
orig_save(rect, "fill"); | |
rect.attributes["fill"].value = | |
"rgb(230,0,230)"; | |
// remember matches | |
if (matches[x] == undefined) { | |
matches[x] = w; | |
} else { | |
if (w > matches[x]) { | |
// overwrite with parent | |
matches[x] = w; | |
} | |
} | |
searching = 1; | |
} | |
} | |
if (!searching) | |
return; | |
searchbtn.style["opacity"] = "1.0"; | |
searchbtn.firstChild.nodeValue = "Reset Search" | |
// calculate percent matched, excluding vertical overlap | |
var count = 0; | |
var lastx = -1; | |
var lastw = 0; | |
var keys = Array(); | |
for (k in matches) { | |
if (matches.hasOwnProperty(k)) | |
keys.push(k); | |
} | |
// sort the matched frames by their x location | |
// ascending, then width descending | |
keys.sort(function(a, b){ | |
return a - b; | |
}); | |
// Step through frames saving only the biggest bottom-up frames | |
// thanks to the sort order. This relies on the tree property | |
// where children are always smaller than their parents. | |
var fudge = 0.0001; // JavaScript floating point | |
for (var k in keys) { | |
var x = parseFloat(keys[k]); | |
var w = matches[keys[k]]; | |
if (x >= lastx + lastw - fudge) { | |
count += w; | |
lastx = x; | |
lastw = w; | |
} | |
} | |
// display matched percent | |
matchedtxt.style["opacity"] = "1.0"; | |
pct = 100 * count / maxwidth; | |
if (pct == 100) | |
pct = "100" | |
else | |
pct = pct.toFixed(1) | |
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; | |
} | |
function searchover(e) { | |
searchbtn.style["opacity"] = "1.0"; | |
} | |
function searchout(e) { | |
if (searching) { | |
searchbtn.style["opacity"] = "1.0"; | |
} else { | |
searchbtn.style["opacity"] = "0.1"; | |
} | |
} | |
]]> | |
</script> | |
<rect x="0.0" y="0" width="1200.0" height="1062.0" fill="url(#background)" /> | |
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text> | |
<text text-anchor="" x="10.00" y="1045" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text> | |
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text> | |
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text> | |
<text text-anchor="" x="1090.00" y="1045" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::map (3 samples, 0.22%)</title><rect x="872.4" y="597" width="2.7" height="15.0" fill="rgb(227,195,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.44" 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><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (3 samples, 0.22%)</title><rect x="121.5" y="453" width="2.6" height="15.0" fill="rgb(232,7,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="124.45" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (16 samples, 1.20%)</title><rect x="1060.0" y="101" width="14.1" height="15.0" fill="rgb(237,82,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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>test09 (1,333 samples, 99.93%)</title><rect x="10.9" y="997" width="1179.1" height="15.0" fill="rgb(214,110,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >test09</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::drop_in_place (1 samples, 0.07%)</title><rect x="10.9" y="613" width="0.9" height="15.0" fill="rgb(212,122,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" 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>_ieee754_exp_avx (52 samples, 3.90%)</title><rect x="283.3" y="453" width="46.0" height="15.0" fill="rgb(243,89,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_iee..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>arena_maybe_purge_ratio (9 samples, 0.67%)</title><rect x="875.1" y="549" width="8.0" height="15.0" fill="rgb(219,35,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" 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><core::slice::IterMut<'a, T> as core::iter::iterator::Iterator>::next (8 samples, 0.60%)</title><rect x="111.7" y="501" width="7.1" height="15.0" fill="rgb(217,66,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.72" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ops::function::FnOnce::call_once (1,333 samples, 99.93%)</title><rect x="10.9" y="645" width="1179.1" height="15.0" fill="rgb(228,143,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::ops::function::FnOnce::call_once</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><lazy_static::lazy::Lazy<T>>::get (3 samples, 0.22%)</title><rect x="209.0" y="421" width="2.7" height="15.0" fill="rgb(237,119,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="212.03" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::drop_in_place (1 samples, 0.07%)</title><rect x="10.0" y="773" width="0.9" height="15.0" fill="rgb(245,12,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" 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>je_arena_maybe_purge (9 samples, 0.67%)</title><rect x="875.1" y="565" width="8.0" height="15.0" fill="rgb(243,53,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" 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>bio::stats::probs::LogProb::ln_add_exp (169 samples, 12.67%)</title><rect x="211.7" y="501" width="149.5" height="15.0" fill="rgb(224,197,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="214.68" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::probs::..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::drop_in_place (1 samples, 0.07%)</title><rect x="10.0" y="757" width="0.9" height="15.0" fill="rgb(253,11,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" 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::rt::lang_start_internal (1 samples, 0.07%)</title><rect x="10.0" y="933" width="0.9" height="15.0" fill="rgb(250,162,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><lazy_static::lazy::Lazy<T>>::get (1 samples, 0.07%)</title><rect x="135.6" y="421" width="0.9" height="15.0" fill="rgb(241,12,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="138.61" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::resize (1 samples, 0.07%)</title><rect x="79.9" y="501" width="0.9" height="15.0" fill="rgb(252,89,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="82.88" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::alloc::realloc (197 samples, 14.77%)</title><rect x="899.9" y="437" width="174.2" height="15.0" fill="rgb(246,108,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="902.87" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >alloc::alloc::realloc</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (16 samples, 1.20%)</title><rect x="1060.0" y="149" width="14.1" height="15.0" fill="rgb(213,176,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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>std::panicking::try (1 samples, 0.07%)</title><rect x="10.0" y="901" width="0.9" height="15.0" fill="rgb(250,163,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::wrapping_sub (1 samples, 0.07%)</title><rect x="730.9" y="437" width="0.9" height="15.0" fill="rgb(226,130,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.91" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>arena_maybe_purge_ratio (16 samples, 1.20%)</title><rect x="1060.0" y="277" width="14.1" height="15.0" fill="rgb(225,93,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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>libprosic::model::sample::Sample::extract_observations (963 samples, 72.19%)</title><rect x="11.8" y="581" width="851.8" height="15.0" fill="rgb(233,49,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::sample::Sample::extract_observations</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (6 samples, 0.45%)</title><rect x="877.8" y="325" width="5.3" height="15.0" fill="rgb(251,22,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="880.75" 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>exp@plt (3 samples, 0.22%)</title><rect x="706.1" y="373" width="2.7" height="15.0" fill="rgb(205,182,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.15" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (3 samples, 0.22%)</title><rect x="872.4" y="501" width="2.7" height="15.0" fill="rgb(244,100,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.44" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &'a mut F>::call_once (10 samples, 0.75%)</title><rect x="863.6" y="293" width="8.8" height="15.0" fill="rgb(239,99,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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]] (34 samples, 2.55%)</title><rect x="1083.9" y="389" width="30.0" height="15.0" fill="rgb(251,98,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1086.85" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ifree (1 samples, 0.07%)</title><rect x="10.9" y="565" width="0.9" height="15.0" fill="rgb(241,186,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" 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><usize as core::slice::SliceIndex<[T]>>::index (1 samples, 0.07%)</title><rect x="134.7" y="421" width="0.9" height="15.0" fill="rgb(231,74,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="137.72" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (3 samples, 0.22%)</title><rect x="15.3" y="469" width="2.7" height="15.0" fill="rgb(223,208,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialOrd>::gt (18 samples, 1.35%)</title><rect x="385.9" y="485" width="16.0" height="15.0" fill="rgb(246,151,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="388.94" 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><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (5 samples, 0.37%)</title><rect x="121.5" y="469" width="4.4" height="15.0" fill="rgb(250,3,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="124.45" 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 (2 samples, 0.15%)</title><rect x="1169.7" y="533" width="1.7" height="15.0" fill="rgb(217,66,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1172.66" 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><alloc::vec::Vec<T>>::reserve (198 samples, 14.84%)</title><rect x="899.0" y="501" width="175.1" height="15.0" fill="rgb(206,204,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="901.98" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::vec::Vec<T>>::..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>inflate_block (19 samples, 1.42%)</title><rect x="1172.3" y="533" width="16.8" height="15.0" fill="rgb(249,165,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.31" 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><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (10 samples, 0.75%)</title><rect x="863.6" y="389" width="8.8" height="15.0" fill="rgb(247,60,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>je_tcache_dalloc_small (1 samples, 0.07%)</title><rect x="10.9" y="501" width="0.9" height="15.0" fill="rgb(210,82,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::ptr (6 samples, 0.45%)</title><rect x="68.4" y="469" width="5.3" height="15.0" fill="rgb(238,140,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="71.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]] (13 samples, 0.97%)</title><rect x="1158.2" y="389" width="11.5" height="15.0" fill="rgb(221,59,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1161.16" 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>core::iter::iterator::Iterator::collect (3 samples, 0.22%)</title><rect x="15.3" y="501" width="2.7" height="15.0" fill="rgb(214,98,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_sum_exp::{{closure}} (347 samples, 26.01%)</title><rect x="401.9" y="405" width="306.9" height="15.0" fill="rgb(206,162,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.86" y="415.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>start_thread (1,333 samples, 99.93%)</title><rect x="10.9" y="965" width="1179.1" height="15.0" fill="rgb(226,172,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_ieee754_exp_avx (5 samples, 0.37%)</title><rect x="866.3" y="117" width="4.4" height="15.0" fill="rgb(230,86,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="869.25" 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>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::ge (4 samples, 0.30%)</title><rect x="248.8" y="437" width="3.6" height="15.0" fill="rgb(209,180,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.83" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::DeletionEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_xy (20 samples, 1.50%)</title><rect x="118.8" y="501" width="17.7" height="15.0" fill="rgb(209,65,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="121.80" 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>@plt (10 samples, 0.75%)</title><rect x="438.1" y="357" width="8.9" height="15.0" fill="rgb(236,145,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="441.13" 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>imallocx_body (1 samples, 0.07%)</title><rect x="1189.1" y="405" width="0.9" height="15.0" fill="rgb(243,229,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.12" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mallocx (1 samples, 0.07%)</title><rect x="1189.1" y="421" width="0.9" height="15.0" fill="rgb(253,165,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.12" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (42 samples, 3.15%)</title><rect x="1022.8" y="277" width="37.2" height="15.0" fill="rgb(242,215,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1025.82" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[k..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_isqalloc (16 samples, 1.20%)</title><rect x="1060.0" y="373" width="14.1" height="15.0" fill="rgb(243,179,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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><libprosic::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref>::deref (3 samples, 0.22%)</title><rect x="209.0" y="453" width="2.7" height="15.0" fill="rgb(224,20,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="212.03" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (1,333 samples, 99.93%)</title><rect x="10.9" y="805" width="1179.1" height="15.0" fill="rgb(234,14,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_simpsons_integrate_exp (10 samples, 0.75%)</title><rect x="863.6" y="437" width="8.8" height="15.0" fill="rgb(215,208,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (18 samples, 1.35%)</title><rect x="1153.7" y="421" width="16.0" height="15.0" fill="rgb(251,10,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1156.73" 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>std::f64::<impl f64>::ln_1p (2 samples, 0.15%)</title><rect x="870.7" y="149" width="1.7" height="15.0" fill="rgb(210,112,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="873.67" 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>bgzf_read (20 samples, 1.50%)</title><rect x="1171.4" y="565" width="17.7" height="15.0" fill="rgb(219,9,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1174.42" 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><libprosic::model::evidence::reads::ReferenceEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_xy (83 samples, 6.22%)</title><rect x="138.3" y="501" width="73.4" height="15.0" fill="rgb(206,126,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="141.26" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><libpros..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::next (8 samples, 0.60%)</title><rect x="720.3" y="453" width="7.1" height="15.0" fill="rgb(206,0,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="723.30" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___clone (1,333 samples, 99.93%)</title><rect x="10.9" y="981" width="1179.1" height="15.0" fill="rgb(224,42,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_GI___clone</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Map<I, F> as core::iter::iterator::Iterator>::next (10 samples, 0.75%)</title><rect x="863.6" y="325" width="8.8" height="15.0" fill="rgb(222,209,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>_w_log1p (6 samples, 0.45%)</title><rect x="845.9" y="469" width="5.3" height="15.0" fill="rgb(236,197,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="848.91" 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><alloc::raw_vec::RawVec<T, A>>::reserve (198 samples, 14.84%)</title><rect x="899.0" y="485" width="175.1" height="15.0" fill="rgb(240,3,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="901.98" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::raw_vec::RawVe..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref>::deref::_stability (1 samples, 0.07%)</title><rect x="135.6" y="437" width="0.9" height="15.0" fill="rgb(233,87,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="138.61" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::nth (2 samples, 0.15%)</title><rect x="730.0" y="453" width="1.8" height="15.0" fill="rgb(245,160,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.03" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::sample::Sample::fragment_observation (959 samples, 71.89%)</title><rect x="15.3" y="565" width="848.3" height="15.0" fill="rgb(254,5,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::sample::Sample::fragment_observation</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (359 samples, 26.91%)</title><rect x="401.9" y="453" width="317.5" height="15.0" fill="rgb(230,26,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.86" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::slice::Iter<'a, T> as core::iter::i..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_pages_purge (16 samples, 1.20%)</title><rect x="1060.0" y="213" width="14.1" height="15.0" fill="rgb(207,66,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (1 samples, 0.07%)</title><rect x="1189.1" y="533" width="0.9" height="15.0" fill="rgb(245,223,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.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><libprosic::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref>::deref::_stability (3 samples, 0.22%)</title><rect x="209.0" y="437" width="2.7" height="15.0" fill="rgb(239,172,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="212.03" 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 (9 samples, 0.67%)</title><rect x="875.1" y="597" width="8.0" height="15.0" fill="rgb(244,209,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" 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><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (1 samples, 0.07%)</title><rect x="136.5" y="469" width="0.9" height="15.0" fill="rgb(235,4,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="139.49" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::exp (1 samples, 0.07%)</title><rect x="872.4" y="437" width="0.9" height="15.0" fill="rgb(212,178,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.44" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panicking::try (1,333 samples, 99.93%)</title><rect x="10.9" y="725" width="1179.1" height="15.0" fill="rgb(239,165,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panicking::try</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::pairhmm::PairHMM::prob_related (955 samples, 71.59%)</title><rect x="18.0" y="517" width="844.7" height="15.0" fill="rgb(252,175,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.96" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::pairhmm::PairHMM::prob_related</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (16 samples, 1.20%)</title><rect x="1060.0" y="181" width="14.1" height="15.0" fill="rgb(244,134,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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><f64 as core::ops::arith::Add>::add (2 samples, 0.15%)</title><rect x="207.3" y="437" width="1.7" height="15.0" fill="rgb(251,186,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.26" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::boxed::Box<(dyn alloc::boxed::FnBox<A, Output$u3d$R> $u2b$ 'a)> as core::ops::function::FnOnce<A>>::call_once (1,333 samples, 99.93%)</title><rect x="10.9" y="917" width="1179.1" height="15.0" fill="rgb(239,224,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::boxed::Box<(dyn alloc::boxed::FnBox<A, Output$u3d$R> $u2b$ 'a)> as core::ops::function::FnOnce<A>>::call_once</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_pages_purge (9 samples, 0.67%)</title><rect x="875.1" y="485" width="8.0" height="15.0" fill="rgb(240,179,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_tcache_event (1 samples, 0.07%)</title><rect x="1189.1" y="325" width="0.9" height="15.0" fill="rgb(234,113,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.12" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::IndexedReader::fetch (1 samples, 0.07%)</title><rect x="14.4" y="549" width="0.9" height="15.0" fill="rgb(218,100,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.42" 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_dalloc (1 samples, 0.07%)</title><rect x="10.9" y="517" width="0.9" height="15.0" fill="rgb(246,7,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" 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><libprosic::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref>::deref (1 samples, 0.07%)</title><rect x="135.6" y="453" width="0.9" height="15.0" fill="rgb(247,95,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="138.61" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (51 samples, 3.82%)</title><rect x="1014.9" y="309" width="45.1" height="15.0" fill="rgb(214,44,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1017.86" y="319.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]] (37 samples, 2.77%)</title><rect x="1081.2" y="453" width="32.7" height="15.0" fill="rgb(211,196,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1084.20" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::fold (359 samples, 26.91%)</title><rect x="401.9" y="469" width="317.5" height="15.0" fill="rgb(219,121,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.86" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::iter::Enumerate<I> as core::iter::i..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln::{{closure}} (1 samples, 0.07%)</title><rect x="17.1" y="357" width="0.9" height="15.0" fill="rgb(245,188,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.08" 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>libprosic::model::evidence::reads::IndelEvidence::prob (956 samples, 71.66%)</title><rect x="18.0" y="533" width="845.6" height="15.0" fill="rgb(206,127,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.96" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::evidence::reads::IndelEvidence::prob</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (38 samples, 2.85%)</title><rect x="1136.0" y="485" width="33.7" height="15.0" fill="rgb(241,11,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1139.04" 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::sync::once::Once::is_completed (3 samples, 0.22%)</title><rect x="209.0" y="389" width="2.7" height="15.0" fill="rgb(217,121,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="212.03" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::call::pairwise::call (1,311 samples, 98.28%)</title><rect x="11.8" y="613" width="1159.6" height="15.0" fill="rgb(235,100,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::call::pairwise::call</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bam_read1 (20 samples, 1.50%)</title><rect x="1171.4" y="581" width="17.7" height="15.0" fill="rgb(243,205,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1174.42" 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>inflate (15 samples, 1.12%)</title><rect x="1172.3" y="501" width="13.3" height="15.0" fill="rgb(225,71,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.31" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::le (2 samples, 0.15%)</title><rect x="252.4" y="437" width="1.7" height="15.0" fill="rgb(245,14,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.37" 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_arena_chunk_dalloc_huge (16 samples, 1.20%)</title><rect x="1060.0" y="309" width="14.1" height="15.0" fill="rgb(207,57,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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><alloc::raw_vec::RawVec<T, A>>::ptr (1 samples, 0.07%)</title><rect x="78.1" y="469" width="0.9" height="15.0" fill="rgb(206,81,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="81.11" 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]] (9 samples, 0.67%)</title><rect x="875.1" y="373" width="8.0" height="15.0" fill="rgb(217,218,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" 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>realloc (1 samples, 0.07%)</title><rect x="13.5" y="437" width="0.9" height="15.0" fill="rgb(209,60,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.54" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (35 samples, 2.62%)</title><rect x="1083.0" y="421" width="30.9" height="15.0" fill="rgb(247,59,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1085.97" 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><rust_htslib::bam::IndexedReader as rust_htslib::bam::Read>::read (3 samples, 0.22%)</title><rect x="11.8" y="549" width="2.6" height="15.0" fill="rgb(225,220,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" 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_chunk_dalloc_wrapper (9 samples, 0.67%)</title><rect x="875.1" y="501" width="8.0" height="15.0" fill="rgb(220,48,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::particular_miscall (8 samples, 0.60%)</title><rect x="204.6" y="469" width="7.1" height="15.0" fill="rgb(219,198,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="207.60" 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>bio::stats::probs::LogProb::ln_zero (11 samples, 0.82%)</title><rect x="853.0" y="501" width="9.7" height="15.0" fill="rgb(215,3,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.98" 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>_w_log1p (9 samples, 0.67%)</title><rect x="350.6" y="469" width="7.9" height="15.0" fill="rgb(242,180,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.55" 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::num::<impl u8>::to_ascii_uppercase (28 samples, 2.10%)</title><rect x="179.8" y="469" width="24.8" height="15.0" fill="rgb(212,135,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="182.84" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >c..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::joint_prob::{{closure}}::{{closure}} (10 samples, 0.75%)</title><rect x="863.6" y="261" width="8.8" height="15.0" fill="rgb(209,143,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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::utils::ReferenceBuffer::seq (326 samples, 24.44%)</title><rect x="883.1" y="597" width="288.3" height="15.0" fill="rgb(241,44,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="886.06" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::utils::ReferenceBuffer::seq</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_idalloctm (1 samples, 0.07%)</title><rect x="10.9" y="533" width="0.9" height="15.0" fill="rgb(234,63,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" 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><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (3 samples, 0.22%)</title><rect x="15.3" y="485" width="2.7" height="15.0" fill="rgb(222,149,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::next (8 samples, 0.60%)</title><rect x="720.3" y="469" width="7.1" height="15.0" fill="rgb(234,77,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="723.30" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::joint_prob::{{closure}} (10 samples, 0.75%)</title><rect x="863.6" y="453" width="8.8" height="15.0" fill="rgb(244,111,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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><bio::stats::probs::LogProb as core::ops::arith::Add>::add (9 samples, 0.67%)</title><rect x="80.8" y="501" width="7.9" height="15.0" fill="rgb(225,109,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="83.76" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::next (3 samples, 0.22%)</title><rect x="15.3" y="421" width="2.7" height="15.0" fill="rgb(242,207,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::PairPileup<'a, A, B, P>>::case_likelihood (3 samples, 0.22%)</title><rect x="872.4" y="533" width="2.7" height="15.0" fill="rgb(215,158,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.44" 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><f64 as core::ops::arith::Sub>::sub (3 samples, 0.22%)</title><rect x="260.3" y="469" width="2.7" height="15.0" fill="rgb(237,153,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.33" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::ge (4 samples, 0.30%)</title><rect x="248.8" y="453" width="3.6" height="15.0" fill="rgb(205,32,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.83" 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>je_arena_maybe_purge (16 samples, 1.20%)</title><rect x="1060.0" y="293" width="14.1" height="15.0" fill="rgb(246,207,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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>libprosic::model::evidence::reads::ReadEmission::prob_match_mismatch (19 samples, 1.42%)</title><rect x="119.7" y="485" width="16.8" height="15.0" fill="rgb(223,78,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="122.69" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::PairPileup<'a, A, B, P>>::case_likelihood (10 samples, 0.75%)</title><rect x="863.6" y="245" width="8.8" height="15.0" fill="rgb(206,21,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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::sample::Sample::fragment_observation::{{closure}} (956 samples, 71.66%)</title><rect x="18.0" y="549" width="845.6" height="15.0" fill="rgb(209,201,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.96" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::sample::Sample::fragment_observation::{{closure}}</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve_internal (198 samples, 14.84%)</title><rect x="899.0" y="469" width="175.1" height="15.0" fill="rgb(243,20,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="901.98" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::raw_vec::RawVe..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (3 samples, 0.22%)</title><rect x="15.3" y="453" width="2.7" height="15.0" fill="rgb(242,91,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln (1 samples, 0.07%)</title><rect x="17.1" y="389" width="0.9" height="15.0" fill="rgb(223,92,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.08" 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><core::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::fold (359 samples, 26.91%)</title><rect x="401.9" y="485" width="317.5" height="15.0" fill="rgb(208,55,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.86" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::iter::FilterMap<I, F> as core::iter..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rallocx (197 samples, 14.77%)</title><rect x="899.9" y="421" width="174.2" height="15.0" fill="rgb(253,92,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="902.87" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >rallocx</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::offset (5 samples, 0.37%)</title><rect x="715.0" y="405" width="4.4" height="15.0" fill="rgb(214,172,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="717.99" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (6 samples, 0.45%)</title><rect x="877.8" y="309" width="5.3" height="15.0" fill="rgb(234,187,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="880.75" 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>all (1,334 samples, 100%)</title><rect x="10.0" y="1013" width="1180.0" height="15.0" fill="rgb(235,206,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_log1p (14 samples, 1.05%)</title><rect x="338.2" y="469" width="12.4" height="15.0" fill="rgb(246,112,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="341.17" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup (3 samples, 0.22%)</title><rect x="872.4" y="517" width="2.7" height="15.0" fill="rgb(240,154,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.44" 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>libprosic::model::likelihood::LatentVariableModel::likelihood_observation_case_control (10 samples, 0.75%)</title><rect x="863.6" y="181" width="8.8" height="15.0" fill="rgb(230,14,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>je_malloc_mutex_lock (1 samples, 0.07%)</title><rect x="10.9" y="437" width="0.9" height="15.0" fill="rgb(253,41,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::new (1 samples, 0.07%)</title><rect x="862.7" y="517" width="0.9" height="15.0" fill="rgb(217,137,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="865.71" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (15 samples, 1.12%)</title><rect x="61.3" y="501" width="13.3" height="15.0" fill="rgb(253,115,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="64.30" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Skip<I> as core::iter::iterator::Iterator>::next (14 samples, 1.05%)</title><rect x="719.4" y="485" width="12.4" height="15.0" fill="rgb(241,200,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="722.42" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::nth::{{closure}} (1 samples, 0.07%)</title><rect x="729.1" y="437" width="0.9" height="15.0" fill="rgb(212,160,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.15" 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>itertools::Itertools::collect_vec (10 samples, 0.75%)</title><rect x="863.6" y="421" width="8.8" height="15.0" fill="rgb(209,27,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>arena_dalloc_bin_run (1 samples, 0.07%)</title><rect x="10.9" y="453" width="0.9" height="15.0" fill="rgb(229,23,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" 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.07%)</title><rect x="1189.1" y="597" width="0.9" height="15.0" fill="rgb(233,141,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.12" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_read (2 samples, 0.15%)</title><rect x="11.8" y="469" width="1.7" height="15.0" fill="rgb(217,170,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" 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><bio::stats::probs::Prob as core::ops::arith::Add>::add (2 samples, 0.15%)</title><rect x="207.3" y="453" width="1.7" height="15.0" fill="rgb(245,108,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.26" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_with (1 samples, 0.07%)</title><rect x="79.9" y="485" width="0.9" height="15.0" fill="rgb(228,189,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="82.88" 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::panic::catch_unwind (1 samples, 0.07%)</title><rect x="10.0" y="917" width="0.9" height="15.0" fill="rgb(208,11,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_chunk_dalloc_wrapper (16 samples, 1.20%)</title><rect x="1060.0" y="229" width="14.1" height="15.0" fill="rgb(241,185,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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><alloc::vec::Vec<T> as core::ops::index::IndexMut<I>>::index_mut (5 samples, 0.37%)</title><rect x="74.6" y="501" width="4.4" height="15.0" fill="rgb(240,66,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="77.57" 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::vec::Vec<T>>::reserve (1 samples, 0.07%)</title><rect x="1189.1" y="501" width="0.9" height="15.0" fill="rgb(249,195,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.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>[[kerne.allsyms]] (32 samples, 2.40%)</title><rect x="1031.7" y="229" width="28.3" height="15.0" fill="rgb(225,148,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1034.66" 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::option::Option<T>>::map (3 samples, 0.22%)</title><rect x="727.4" y="453" width="2.6" height="15.0" fill="rgb(253,154,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="730.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>je_tsd_fetch (1 samples, 0.07%)</title><rect x="13.5" y="405" width="0.9" height="15.0" fill="rgb(218,218,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.54" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::prob_insertion (1 samples, 0.07%)</title><rect x="136.5" y="485" width="0.9" height="15.0" fill="rgb(254,22,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="139.49" 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>bgzf_uncompress (2 samples, 0.15%)</title><rect x="11.8" y="421" width="1.7" height="15.0" fill="rgb(251,95,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" 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>std::sys::unix::fd::FileDesc::read (40 samples, 3.00%)</title><rect x="1078.5" y="485" width="35.4" height="15.0" fill="rgb(252,152,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.55" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >st..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_ticker_ticks (1 samples, 0.07%)</title><rect x="1189.1" y="293" width="0.9" height="15.0" fill="rgb(206,11,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.12" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[lib....1] (15 samples, 1.12%)</title><rect x="1172.3" y="485" width="13.3" height="15.0" fill="rgb(235,20,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.31" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_w_log1p (1 samples, 0.07%)</title><rect x="871.6" y="133" width="0.8" height="15.0" fill="rgb(241,115,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="874.56" 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::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::fold::{{closure}} (347 samples, 26.01%)</title><rect x="401.9" y="421" width="306.9" height="15.0" fill="rgb(226,53,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.86" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::iter::FilterMap<I, F> as core::ite..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>inflate (2 samples, 0.15%)</title><rect x="11.8" y="405" width="1.7" height="15.0" fill="rgb(217,165,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" 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><rust_htslib::bam::record::Seq<'a> as core::ops::index::Index<usize>>::index (15 samples, 1.12%)</title><rect x="166.6" y="469" width="13.2" height="15.0" fill="rgb(220,167,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.57" 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::Ord::min (2 samples, 0.15%)</title><rect x="1169.7" y="517" width="1.7" height="15.0" fill="rgb(235,28,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1172.66" 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><alloc::vec::Vec<T> as core::ops::deref::DerefMut>::deref_mut (1 samples, 0.07%)</title><rect x="79.0" y="485" width="0.9" height="15.0" fill="rgb(235,210,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="82.00" 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 (9 samples, 0.67%)</title><rect x="875.1" y="533" width="8.0" height="15.0" fill="rgb(240,125,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" 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>libprosic::model::sample::RecordBuffer::fill (4 samples, 0.30%)</title><rect x="11.8" y="565" width="3.5" height="15.0" fill="rgb(251,131,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" 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>_GI___exp (5 samples, 0.37%)</title><rect x="866.3" y="133" width="4.4" height="15.0" fill="rgb(227,6,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="869.25" 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::vec::Vec<T> as core::ops::index::Index<I>>::index (3 samples, 0.22%)</title><rect x="204.6" y="453" width="2.7" height="15.0" fill="rgb(219,229,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="207.60" 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>hts_itr_next (3 samples, 0.22%)</title><rect x="11.8" y="517" width="2.6" height="15.0" fill="rgb(208,157,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" 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><bio::io::fasta::IndexedReader<R>>::read (326 samples, 24.44%)</title><rect x="883.1" y="581" width="288.3" height="15.0" fill="rgb(243,37,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="886.06" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><bio::io::fasta::IndexedReader<R>>::read</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (34 samples, 2.55%)</title><rect x="1083.9" y="341" width="30.0" height="15.0" fill="rgb(234,110,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1086.85" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (35 samples, 2.62%)</title><rect x="1083.0" y="405" width="30.9" height="15.0" fill="rgb(215,99,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1085.97" 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>_log1p (1 samples, 0.07%)</title><rect x="865.4" y="165" width="0.9" height="15.0" fill="rgb(215,16,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="868.37" 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::slice::<impl [T]>::is_empty (7 samples, 0.52%)</title><rect x="731.8" y="485" width="6.2" height="15.0" fill="rgb(208,154,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.80" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::next (12 samples, 0.90%)</title><rect x="708.8" y="437" width="10.6" height="15.0" fill="rgb(210,64,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="711.80" 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::fs::File as std::io::Read>::read (40 samples, 3.00%)</title><rect x="1078.5" y="517" width="35.4" height="15.0" fill="rgb(218,146,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.55" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><s..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_read_block (2 samples, 0.15%)</title><rect x="11.8" y="453" width="1.7" height="15.0" fill="rgb(241,42,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bam_readrec (3 samples, 0.22%)</title><rect x="11.8" y="501" width="2.6" height="15.0" fill="rgb(217,74,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (2 samples, 0.15%)</title><rect x="124.1" y="453" width="1.8" height="15.0" fill="rgb(232,2,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="127.11" 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><bio::stats::probs::Prob as core::ops::arith::Add>::add (26 samples, 1.95%)</title><rect x="88.7" y="501" width="23.0" height="15.0" fill="rgb(222,198,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="91.73" 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>_libc_read (40 samples, 3.00%)</title><rect x="1078.5" y="469" width="35.4" height="15.0" fill="rgb(241,110,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.55" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_l..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::alloc::Global as core::alloc::Alloc>::alloc (1 samples, 0.07%)</title><rect x="1189.1" y="453" width="0.9" height="15.0" fill="rgb(217,167,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.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><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (14 samples, 1.05%)</title><rect x="61.3" y="485" width="12.4" height="15.0" fill="rgb(235,96,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="64.30" 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>bam_read1 (3 samples, 0.22%)</title><rect x="11.8" y="485" width="2.6" height="15.0" fill="rgb(240,66,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (1 samples, 0.07%)</title><rect x="134.7" y="437" width="0.9" height="15.0" fill="rgb(216,42,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="137.72" 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>rust_htslib::bam::itr_next (3 samples, 0.22%)</title><rect x="11.8" y="533" width="2.6" height="15.0" fill="rgb(236,173,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (16 samples, 1.20%)</title><rect x="1060.0" y="133" width="14.1" height="15.0" fill="rgb(240,220,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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><usize as core::slice::SliceIndex<[T]>>::index (5 samples, 0.37%)</title><rect x="162.1" y="437" width="4.5" height="15.0" fill="rgb(242,214,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.14" 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::thread::Builder::spawn::{{closure}} (1,333 samples, 99.93%)</title><rect x="10.9" y="885" width="1179.1" height="15.0" fill="rgb(210,137,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::thread::Builder::spawn::{{closure}}</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sync::once::Once::call_once (3 samples, 0.22%)</title><rect x="209.0" y="405" width="2.7" height="15.0" fill="rgb(224,137,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="212.03" 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>core::slice::<impl core::ops::index::Index<I> for [T]>::index (5 samples, 0.37%)</title><rect x="162.1" y="453" width="4.5" height="15.0" fill="rgb(221,116,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.14" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>crc32_z (4 samples, 0.30%)</title><rect x="1185.6" y="517" width="3.5" height="15.0" fill="rgb(222,15,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.58" 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>libprosic::model::evidence::fragments::IndelEvidence::prob_sample_alt (3 samples, 0.22%)</title><rect x="15.3" y="549" width="2.7" height="15.0" fill="rgb(214,216,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" 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>@plt (1 samples, 0.07%)</title><rect x="16.2" y="309" width="0.9" height="15.0" fill="rgb(207,9,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.19" 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>core::ptr::write (1 samples, 0.07%)</title><rect x="79.9" y="469" width="0.9" height="15.0" fill="rgb(244,15,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="82.88" 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>je_iralloct (197 samples, 14.77%)</title><rect x="899.9" y="405" width="174.2" height="15.0" fill="rgb(239,55,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="902.87" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >je_iralloct</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::DeletionEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_y (1 samples, 0.07%)</title><rect x="136.5" y="501" width="0.9" height="15.0" fill="rgb(217,160,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="139.49" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_tsd_fetch_impl (1 samples, 0.07%)</title><rect x="13.5" y="389" width="0.9" height="15.0" fill="rgb(213,190,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.54" 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>hts_itr_query (1 samples, 0.07%)</title><rect x="14.4" y="517" width="0.9" height="15.0" fill="rgb(241,179,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.42" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<&'a T, core::slice::Iter<'a, T>>>::spec_extend (202 samples, 15.14%)</title><rect x="899.0" y="517" width="178.7" height="15.0" fill="rgb(245,180,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="901.98" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::vec::Vec<T> as ..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::partial_cmp (12 samples, 0.90%)</title><rect x="243.5" y="469" width="10.6" height="15.0" fill="rgb(224,57,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="246.52" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (6 samples, 0.45%)</title><rect x="1054.7" y="213" width="5.3" height="15.0" fill="rgb(228,65,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1057.66" 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>je_arena_chunk_dalloc_huge (9 samples, 0.67%)</title><rect x="875.1" y="581" width="8.0" height="15.0" fill="rgb(236,229,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panicking::try::do_call (1 samples, 0.07%)</title><rect x="10.0" y="869" width="0.9" height="15.0" fill="rgb(246,76,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Map<I, F> as core::iter::iterator::Iterator>::next (10 samples, 0.75%)</title><rect x="863.6" y="501" width="8.8" height="15.0" fill="rgb(214,144,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::prob_match_mismatch (77 samples, 5.77%)</title><rect x="143.6" y="485" width="68.1" height="15.0" fill="rgb(237,30,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="146.57" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libpros..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (38 samples, 2.85%)</title><rect x="1136.0" y="501" width="33.7" height="15.0" fill="rgb(232,67,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1139.04" 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>exp@plt (4 samples, 0.30%)</title><rect x="329.3" y="469" width="3.6" height="15.0" fill="rgb(233,152,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="332.33" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::le (4 samples, 0.30%)</title><rect x="398.3" y="437" width="3.6" height="15.0" fill="rgb(240,3,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.32" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialOrd>::gt (14 samples, 1.05%)</title><rect x="241.8" y="485" width="12.3" height="15.0" fill="rgb(236,185,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.75" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_huge_dalloc (16 samples, 1.20%)</title><rect x="1060.0" y="325" width="14.1" height="15.0" fill="rgb(206,61,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_malloc (1 samples, 0.07%)</title><rect x="1189.1" y="357" width="0.9" height="15.0" fill="rgb(207,12,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.12" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl u8>::to_ascii_uppercase (7 samples, 0.52%)</title><rect x="127.6" y="469" width="6.2" height="15.0" fill="rgb(214,166,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="130.65" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T>>::post_inc_start (5 samples, 0.37%)</title><rect x="715.0" y="421" width="4.4" height="15.0" fill="rgb(241,158,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="717.99" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::fragments::IndelEvidence::prob_sample_alt::{{closure}} (3 samples, 0.22%)</title><rect x="15.3" y="533" width="2.7" height="15.0" fill="rgb(237,164,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::partial_cmp (18 samples, 1.35%)</title><rect x="385.9" y="469" width="16.0" height="15.0" fill="rgb(216,227,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="388.94" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::rt::lang_start::{{closure}} (1 samples, 0.07%)</title><rect x="10.0" y="837" width="0.9" height="15.0" fill="rgb(228,12,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>itertools::Itertools::collect_vec (3 samples, 0.22%)</title><rect x="15.3" y="517" width="2.7" height="15.0" fill="rgb(223,195,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" 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>arena_dalloc_bin_locked_impl (1 samples, 0.07%)</title><rect x="10.9" y="469" width="0.9" height="15.0" fill="rgb(220,219,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" 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>kh_get_bin (1 samples, 0.07%)</title><rect x="14.4" y="501" width="0.9" height="15.0" fill="rgb(219,229,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.42" 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::vec::Vec<T> as core::ops::index::Index<I>>::index (2 samples, 0.15%)</title><rect x="133.8" y="453" width="1.8" height="15.0" fill="rgb(237,206,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="136.84" 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><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (1 samples, 0.07%)</title><rect x="136.5" y="453" width="0.9" height="15.0" fill="rgb(217,31,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="139.49" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::particular_miscall (3 samples, 0.22%)</title><rect x="133.8" y="469" width="2.7" height="15.0" fill="rgb(246,73,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="136.84" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::IndelGapParams as bio::stats::pairhmm::StartEndGapParameters>::prob_start_gap_x (1 samples, 0.07%)</title><rect x="137.4" y="501" width="0.9" height="15.0" fill="rgb(214,3,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="140.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>libprosic::model::evidence::fragments::IndelEvidence::prob_sample_alt::{{closure}}::{{closure}} (3 samples, 0.22%)</title><rect x="15.3" y="405" width="2.7" height="15.0" fill="rgb(230,217,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" 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>main (1 samples, 0.07%)</title><rect x="10.0" y="949" width="0.9" height="15.0" fill="rgb(224,88,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (1 samples, 0.07%)</title><rect x="1189.1" y="517" width="0.9" height="15.0" fill="rgb(207,205,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.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><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::nth (5 samples, 0.37%)</title><rect x="727.4" y="469" width="4.4" height="15.0" fill="rgb(254,158,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="730.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>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::ge (6 samples, 0.45%)</title><rect x="393.0" y="437" width="5.3" height="15.0" fill="rgb(209,49,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="396.01" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::DeletionEmissionParams::ref_base (1 samples, 0.07%)</title><rect x="118.8" y="485" width="0.9" height="15.0" fill="rgb(230,23,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="121.80" 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><&'a bio::stats::probs::LogProb as core::ops::arith::Sub<bio::stats::probs::LogProb>>::sub (1 samples, 0.07%)</title><rect x="413.4" y="389" width="0.8" height="15.0" fill="rgb(207,225,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="416.36" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_sum_exp (556 samples, 41.68%)</title><rect x="361.2" y="501" width="491.8" height="15.0" fill="rgb(240,75,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="364.17" y="511.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]] (88 samples, 6.60%)</title><rect x="982.1" y="341" width="77.9" height="15.0" fill="rgb(250,123,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="985.13" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne...</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::PairCaller<A, B, P>>::pileup (963 samples, 72.19%)</title><rect x="11.8" y="597" width="851.8" height="15.0" fill="rgb(241,14,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><libprosic::model::PairCaller<A, B, P>>::pileup</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (10 samples, 0.75%)</title><rect x="863.6" y="549" width="8.8" height="15.0" fill="rgb(207,80,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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]] (9 samples, 0.67%)</title><rect x="875.1" y="453" width="8.0" height="15.0" fill="rgb(226,134,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (9 samples, 0.67%)</title><rect x="1066.2" y="85" width="7.9" height="15.0" fill="rgb(209,183,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.16" 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>_rust_maybe_catch_panic (1 samples, 0.07%)</title><rect x="10.0" y="885" width="0.9" height="15.0" fill="rgb(235,184,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_iallocztm (1 samples, 0.07%)</title><rect x="1189.1" y="373" width="0.9" height="15.0" fill="rgb(234,47,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.12" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sam_itr_queryi (1 samples, 0.07%)</title><rect x="14.4" y="533" width="0.9" height="15.0" fill="rgb(227,220,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.42" 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><rust_htslib::bam::Reader as rust_htslib::bam::Read>::read (20 samples, 1.50%)</title><rect x="1171.4" y="597" width="17.7" height="15.0" fill="rgb(207,203,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1174.42" 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>_log1p (122 samples, 9.15%)</title><rect x="738.0" y="469" width="107.9" height="15.0" fill="rgb(245,201,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="740.99" y="479.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>je_huge_ralloc (197 samples, 14.77%)</title><rect x="899.9" y="389" width="174.2" height="15.0" fill="rgb(245,148,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="902.87" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >je_huge_ralloc</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[libgs....0] (2 samples, 0.15%)</title><rect x="15.3" y="341" width="1.8" height="15.0" fill="rgb(213,168,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (34 samples, 2.55%)</title><rect x="1083.9" y="357" width="30.0" height="15.0" fill="rgb(235,113,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1086.85" 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>std::sys::unix::thread::Thread::new::thread_start (1,333 samples, 99.93%)</title><rect x="10.9" y="949" width="1179.1" height="15.0" fill="rgb(254,64,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys::unix::thread::Thread::new::thread_start</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::io::fasta::IndexedReader<R>>::read_into_buffer (326 samples, 24.44%)</title><rect x="883.1" y="565" width="288.3" height="15.0" fill="rgb(218,217,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="886.06" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><bio::io::fasta::IndexedReader<R>>::re..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libc_feholdsetround_sse_ctx (14 samples, 1.05%)</title><rect x="316.9" y="437" width="12.4" height="15.0" fill="rgb(209,15,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.94" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (13 samples, 0.97%)</title><rect x="1158.2" y="405" width="11.5" height="15.0" fill="rgb(231,173,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1161.16" 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::panic::catch_unwind (1,333 samples, 99.93%)</title><rect x="10.9" y="741" width="1179.1" height="15.0" fill="rgb(251,32,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panic::catch_unwind</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (19 samples, 1.42%)</title><rect x="1152.8" y="453" width="16.9" height="15.0" fill="rgb(245,89,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1155.85" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___exp (1 samples, 0.07%)</title><rect x="872.4" y="421" width="0.9" height="15.0" fill="rgb(229,163,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.44" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>itertools::Itertools::minmax_by_key (3 samples, 0.22%)</title><rect x="872.4" y="581" width="2.7" height="15.0" fill="rgb(224,113,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.44" 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><f64 as core::ops::arith::Add>::add (7 samples, 0.52%)</title><rect x="254.1" y="469" width="6.2" height="15.0" fill="rgb(207,180,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.14" 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]] (30 samples, 2.25%)</title><rect x="1087.4" y="325" width="26.5" height="15.0" fill="rgb(236,25,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1090.39" 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>@plt (3 samples, 0.22%)</title><rect x="280.7" y="453" width="2.6" height="15.0" fill="rgb(209,168,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.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>core::iter::iterator::Iterator::collect (10 samples, 0.75%)</title><rect x="863.6" y="565" width="8.8" height="15.0" fill="rgb(228,84,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::collect (1 samples, 0.07%)</title><rect x="1189.1" y="565" width="0.9" height="15.0" fill="rgb(210,45,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.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>std::panic::catch_unwind (1,333 samples, 99.93%)</title><rect x="10.9" y="869" width="1179.1" height="15.0" fill="rgb(233,69,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panic::catch_unwind</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::le (4 samples, 0.30%)</title><rect x="398.3" y="453" width="3.6" height="15.0" fill="rgb(247,47,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.32" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (38 samples, 2.85%)</title><rect x="1136.0" y="517" width="33.7" height="15.0" fill="rgb(250,74,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1139.04" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>inflate_block (2 samples, 0.15%)</title><rect x="11.8" y="437" width="1.7" height="15.0" fill="rgb(213,3,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" 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_isdalloct (16 samples, 1.20%)</title><rect x="1060.0" y="357" width="14.1" height="15.0" fill="rgb(208,76,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::joint_prob (10 samples, 0.75%)</title><rect x="863.6" y="597" width="8.8" height="15.0" fill="rgb(237,176,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>std::sys_common::backtrace::_rust_begin_short_backtrace (1,333 samples, 99.93%)</title><rect x="10.9" y="773" width="1179.1" height="15.0" fill="rgb(249,202,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys_common::backtrace::_rust_begin_short_backtrace</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Add>::add (18 samples, 1.35%)</title><rect x="95.8" y="485" width="15.9" height="15.0" fill="rgb(218,84,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.80" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><rust_htslib::bam::record::Seq<'a> as core::ops::index::Index<usize>>::index (2 samples, 0.15%)</title><rect x="125.9" y="469" width="1.7" height="15.0" fill="rgb(207,201,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="128.88" 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]] (18 samples, 1.35%)</title><rect x="1153.7" y="437" width="16.0" height="15.0" fill="rgb(228,215,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1156.73" 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>start (1 samples, 0.07%)</title><rect x="10.0" y="981" width="0.9" height="15.0" fill="rgb(223,152,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test::run_test::run_test_inner::{{closure}} (1,333 samples, 99.93%)</title><rect x="10.9" y="757" width="1179.1" height="15.0" fill="rgb(230,225,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >test::run_test::run_test_inner::{{closure}}</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___exp (73 samples, 5.47%)</title><rect x="264.8" y="469" width="64.5" height="15.0" fill="rgb(238,138,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.75" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_GI___exp</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::log_wrapper (1 samples, 0.07%)</title><rect x="17.1" y="373" width="0.9" height="15.0" fill="rgb(208,173,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.08" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (9 samples, 0.67%)</title><rect x="875.1" y="405" width="8.0" height="15.0" fill="rgb(246,17,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" 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>core::slice::<impl [T]>::copy_from_slice (4 samples, 0.30%)</title><rect x="1074.1" y="501" width="3.6" height="15.0" fill="rgb(216,184,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1077.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>[[kerne.allsyms]] (9 samples, 0.67%)</title><rect x="875.1" y="421" width="8.0" height="15.0" fill="rgb(253,75,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI_madvise (16 samples, 1.20%)</title><rect x="1060.0" y="197" width="14.1" height="15.0" fill="rgb(252,4,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::exp (5 samples, 0.37%)</title><rect x="866.3" y="149" width="4.4" height="15.0" fill="rgb(242,29,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="869.25" 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>std::sys_common::thread::start_thread (1,333 samples, 99.93%)</title><rect x="10.9" y="933" width="1179.1" height="15.0" fill="rgb(214,195,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys_common::thread::start_thread</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (16 samples, 1.20%)</title><rect x="1060.0" y="117" width="14.1" height="15.0" fill="rgb(226,16,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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>rust_htslib::bam::record::Seq::encoded_base (1 samples, 0.07%)</title><rect x="126.8" y="453" width="0.8" height="15.0" fill="rgb(217,126,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="129.76" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (6 samples, 0.45%)</title><rect x="1068.8" y="53" width="5.3" height="15.0" fill="rgb(252,212,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1071.82" 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><alloc::vec::Vec<T> as core::ops::drop::Drop>::drop (1 samples, 0.07%)</title><rect x="10.0" y="741" width="0.9" height="15.0" fill="rgb(227,28,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" 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>_GI___exp (327 samples, 24.51%)</title><rect x="416.9" y="373" width="289.2" height="15.0" fill="rgb(229,101,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="419.90" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_GI___exp</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::alloc::alloc (1 samples, 0.07%)</title><rect x="1189.1" y="437" width="0.9" height="15.0" fill="rgb(249,228,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.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>je_ialloc (1 samples, 0.07%)</title><rect x="1189.1" y="389" width="0.9" height="15.0" fill="rgb(231,180,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.12" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln_1p (2 samples, 0.15%)</title><rect x="873.3" y="437" width="1.8" height="15.0" fill="rgb(243,36,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="876.33" 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>_memcpy_sse2_unaligned_erms (63 samples, 4.72%)</title><rect x="1113.9" y="533" width="55.8" height="15.0" fill="rgb(238,46,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1116.93" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_memc..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_ticker_tick (1 samples, 0.07%)</title><rect x="1189.1" y="309" width="0.9" height="15.0" fill="rgb(223,132,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.12" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI_madvise (9 samples, 0.67%)</title><rect x="875.1" y="469" width="8.0" height="15.0" fill="rgb(205,62,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup::{{closure}} (10 samples, 0.75%)</title><rect x="863.6" y="197" width="8.8" height="15.0" fill="rgb(219,225,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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><alloc::vec::Vec<T>>::extend_from_slice (209 samples, 15.67%)</title><rect x="892.8" y="533" width="184.9" height="15.0" fill="rgb(236,25,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="895.79" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::vec::Vec<T>>::ex..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_log1p (1 samples, 0.07%)</title><rect x="870.7" y="133" width="0.9" height="15.0" fill="rgb(248,171,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="873.67" 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___exp (1 samples, 0.07%)</title><rect x="16.2" y="325" width="0.9" height="15.0" fill="rgb(226,14,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.19" 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><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (7 samples, 0.52%)</title><rect x="156.0" y="453" width="6.1" height="15.0" fill="rgb(243,147,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="158.95" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (88 samples, 6.60%)</title><rect x="982.1" y="325" width="77.9" height="15.0" fill="rgb(236,37,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="985.13" y="335.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>ialloc_body (1 samples, 0.07%)</title><rect x="13.5" y="421" width="0.9" height="15.0" fill="rgb(217,202,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.54" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (88 samples, 6.60%)</title><rect x="982.1" y="357" width="77.9" height="15.0" fill="rgb(252,73,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="985.13" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne...</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::ptr (1 samples, 0.07%)</title><rect x="79.0" y="469" width="0.9" height="15.0" fill="rgb(228,39,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="82.00" 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::ops::function::impls::<impl core::ops::function::FnOnce<A> for &'a mut F>::call_once (10 samples, 0.75%)</title><rect x="863.6" y="469" width="8.8" height="15.0" fill="rgb(223,109,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>je_tcache_alloc_small (1 samples, 0.07%)</title><rect x="1189.1" y="341" width="0.9" height="15.0" fill="rgb(220,98,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.12" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panicking::try::do_call (1,333 samples, 99.93%)</title><rect x="10.9" y="821" width="1179.1" height="15.0" fill="rgb(230,220,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panicking::try::do_call</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_ieee754_exp_avx (1 samples, 0.07%)</title><rect x="872.4" y="405" width="0.9" height="15.0" fill="rgb(239,41,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.44" 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>_memcpy_sse2_unaligned_erms (181 samples, 13.57%)</title><rect x="899.9" y="373" width="160.1" height="15.0" fill="rgb(218,30,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="902.87" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_memcpy_sse2_unalign..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::fold::{{closure}} (347 samples, 26.01%)</title><rect x="401.9" y="437" width="306.9" height="15.0" fill="rgb(245,162,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.86" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::iter::Enumerate<I> as core::iter::..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (10 samples, 0.75%)</title><rect x="863.6" y="517" width="8.8" height="15.0" fill="rgb(251,167,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (9 samples, 0.67%)</title><rect x="1066.2" y="69" width="7.9" height="15.0" fill="rgb(224,108,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.16" 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>libprosic::estimation::alignment_properties::AlignmentProperties::estimate (21 samples, 1.57%)</title><rect x="1171.4" y="613" width="18.6" height="15.0" fill="rgb(223,156,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1174.42" 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>std::f64::<impl f64>::exp (79 samples, 5.92%)</title><rect x="263.0" y="485" width="69.9" height="15.0" fill="rgb(243,10,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="265.98" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::f6..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test::test_main_static (1 samples, 0.07%)</title><rect x="10.0" y="821" width="0.9" height="15.0" fill="rgb(231,156,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" 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><F as alloc::boxed::FnBox<A>>::call_box (1,333 samples, 99.93%)</title><rect x="10.9" y="901" width="1179.1" height="15.0" fill="rgb(240,80,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><F as alloc::boxed::FnBox<A>>::call_box</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::collections::vec_deque::VecDeque<T> as core::ops::drop::Drop>::drop (1 samples, 0.07%)</title><rect x="10.9" y="597" width="0.9" height="15.0" fill="rgb(208,181,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (10 samples, 0.75%)</title><rect x="863.6" y="533" width="8.8" height="15.0" fill="rgb(218,165,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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]] (9 samples, 0.67%)</title><rect x="875.1" y="389" width="8.0" height="15.0" fill="rgb(225,227,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" 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>arena_unstash_purged (9 samples, 0.67%)</title><rect x="875.1" y="517" width="8.0" height="15.0" fill="rgb(215,186,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" 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>core::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::ge (6 samples, 0.45%)</title><rect x="393.0" y="453" width="5.3" height="15.0" fill="rgb(218,51,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="396.01" 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><bio::io::fasta::IndexedReader<R>>::read_line (324 samples, 24.29%)</title><rect x="884.8" y="549" width="286.6" height="15.0" fill="rgb(240,39,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="887.83" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><bio::io::fasta::IndexedReader<R>>::re..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>log1p@plt (2 samples, 0.15%)</title><rect x="851.2" y="469" width="1.8" height="15.0" fill="rgb(208,137,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.21" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::exp (333 samples, 24.96%)</title><rect x="414.2" y="389" width="294.6" height="15.0" fill="rgb(251,130,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.24" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::f64::<impl f64>::exp</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_libc_start_main (1 samples, 0.07%)</title><rect x="10.0" y="965" width="0.9" height="15.0" fill="rgb(207,31,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln_1p (130 samples, 9.75%)</title><rect x="738.0" y="485" width="115.0" height="15.0" fill="rgb(211,88,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="740.99" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::f64::<imp..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_rust_maybe_catch_panic (1,333 samples, 99.93%)</title><rect x="10.9" y="709" width="1179.1" height="15.0" fill="rgb(240,73,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_rust_maybe_catch_panic</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve (1 samples, 0.07%)</title><rect x="1189.1" y="485" width="0.9" height="15.0" fill="rgb(231,62,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.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><bio::stats::probs::LogProb as core::ops::arith::Add>::add (7 samples, 0.52%)</title><rect x="254.1" y="485" width="6.2" height="15.0" fill="rgb(224,26,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.14" 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::rt::lang_start_internal::{{closure}} (1 samples, 0.07%)</title><rect x="10.0" y="853" width="0.9" height="15.0" fill="rgb(249,61,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (1 samples, 0.07%)</title><rect x="73.7" y="485" width="0.9" height="15.0" fill="rgb(221,7,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="76.69" 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]] (28 samples, 2.10%)</title><rect x="1089.2" y="309" width="24.7" height="15.0" fill="rgb(253,216,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1092.16" 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>itertools::minmax::minmax_impl (3 samples, 0.22%)</title><rect x="872.4" y="565" width="2.7" height="15.0" fill="rgb(248,26,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.44" 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>_GI___pthread_mutex_lock (1 samples, 0.07%)</title><rect x="10.9" y="421" width="0.9" height="15.0" fill="rgb(216,47,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" 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>do_realloc_bam_data (1 samples, 0.07%)</title><rect x="13.5" y="453" width="0.9" height="15.0" fill="rgb(235,127,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.54" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::fragments::IndelEvidence::pmf (2 samples, 0.15%)</title><rect x="15.3" y="389" width="1.8" height="15.0" fill="rgb(207,22,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" 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>log1p@plt (3 samples, 0.22%)</title><rect x="358.5" y="469" width="2.7" height="15.0" fill="rgb(226,184,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="361.52" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::ops::arith::Sub>::sub (3 samples, 0.22%)</title><rect x="260.3" y="485" width="2.7" height="15.0" fill="rgb(230,155,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.33" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test::test_main (1 samples, 0.07%)</title><rect x="10.0" y="805" width="0.9" height="15.0" fill="rgb(248,123,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" 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_iqalloc (1 samples, 0.07%)</title><rect x="10.9" y="549" width="0.9" height="15.0" fill="rgb(247,137,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" 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_sdalloc (16 samples, 1.20%)</title><rect x="1060.0" y="341" width="14.1" height="15.0" fill="rgb(239,110,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::DerefMut>::deref_mut (5 samples, 0.37%)</title><rect x="74.6" y="485" width="4.4" height="15.0" fill="rgb(245,114,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="77.57" 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>gsl_cdf_ugaussian_P (2 samples, 0.15%)</title><rect x="15.3" y="357" width="1.8" height="15.0" fill="rgb(243,138,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" 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>std::panicking::try (1,333 samples, 99.93%)</title><rect x="10.9" y="853" width="1179.1" height="15.0" fill="rgb(248,181,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panicking::try</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_rust_maybe_catch_panic (1,333 samples, 99.93%)</title><rect x="10.9" y="837" width="1179.1" height="15.0" fill="rgb(225,227,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_rust_maybe_catch_panic</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (34 samples, 2.55%)</title><rect x="1029.9" y="245" width="30.1" height="15.0" fill="rgb(209,25,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1032.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>libc_feholdsetround_sse_ctx (23 samples, 1.72%)</title><rect x="685.8" y="341" width="20.3" height="15.0" fill="rgb(231,115,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="688.80" 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><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::map::{{closure}} (3 samples, 0.22%)</title><rect x="872.4" y="549" width="2.7" height="15.0" fill="rgb(250,165,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.44" 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]] (9 samples, 0.67%)</title><rect x="875.1" y="437" width="8.0" height="15.0" fill="rgb(210,127,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.10" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (42 samples, 3.15%)</title><rect x="1022.8" y="261" width="37.2" height="15.0" fill="rgb(210,51,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1025.82" y="271.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><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (10 samples, 0.75%)</title><rect x="863.6" y="213" width="8.8" height="15.0" fill="rgb(224,158,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>test::run_test::{{closure}} (1,333 samples, 99.93%)</title><rect x="10.9" y="661" width="1179.1" height="15.0" fill="rgb(231,80,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >test::run_test::{{closure}}</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (46 samples, 3.45%)</title><rect x="1019.3" y="293" width="40.7" height="15.0" fill="rgb(251,64,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1022.28" y="303.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>test::run_tests_console (1 samples, 0.07%)</title><rect x="10.0" y="789" width="0.9" height="15.0" fill="rgb(231,136,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" 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]] (6 samples, 0.45%)</title><rect x="877.8" y="341" width="5.3" height="15.0" fill="rgb(228,91,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="880.75" 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>bam_destroy1 (1 samples, 0.07%)</title><rect x="10.9" y="581" width="0.9" height="15.0" fill="rgb(220,46,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys::unix::fs::File::read (40 samples, 3.00%)</title><rect x="1078.5" y="501" width="35.4" height="15.0" fill="rgb(249,99,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.55" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >st..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index (2 samples, 0.15%)</title><rect x="124.1" y="437" width="1.8" height="15.0" fill="rgb(221,50,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="127.11" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_log1p (2 samples, 0.15%)</title><rect x="873.3" y="421" width="1.8" height="15.0" fill="rgb(210,7,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="876.33" 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><alloc::vec::Vec<T>>::extend_desugared (3 samples, 0.22%)</title><rect x="15.3" y="437" width="2.7" height="15.0" fill="rgb(224,192,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (3 samples, 0.22%)</title><rect x="204.6" y="437" width="2.7" height="15.0" fill="rgb(233,130,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="207.60" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_simpsons_integrate_exp::{{closure}} (10 samples, 0.75%)</title><rect x="863.6" y="277" width="8.8" height="15.0" fill="rgb(209,88,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>libprosic::model::likelihood::LatentVariableModel::likelihood_observation_case_control (3 samples, 0.22%)</title><rect x="872.4" y="469" width="2.7" height="15.0" fill="rgb(217,156,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.44" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_desugared (10 samples, 0.75%)</title><rect x="863.6" y="341" width="8.8" height="15.0" fill="rgb(245,117,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>bio::stats::probs::LogProb::ln_add_exp (3 samples, 0.22%)</title><rect x="872.4" y="453" width="2.7" height="15.0" fill="rgb(211,84,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.44" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_read_block (19 samples, 1.42%)</title><rect x="1172.3" y="549" width="16.8" height="15.0" fill="rgb(225,121,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.31" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (10 samples, 0.75%)</title><rect x="863.6" y="373" width="8.8" height="15.0" fill="rgb(246,209,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>arena_purge_to_limit (16 samples, 1.20%)</title><rect x="1060.0" y="261" width="14.1" height="15.0" fill="rgb(206,111,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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>realloc_bam_data (1 samples, 0.07%)</title><rect x="13.5" y="469" width="0.9" height="15.0" fill="rgb(227,214,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.54" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup::{{closure}} (3 samples, 0.22%)</title><rect x="872.4" y="485" width="2.7" height="15.0" fill="rgb(245,45,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.44" 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, 1.20%)</title><rect x="1060.0" y="165" width="14.1" height="15.0" fill="rgb(211,44,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (12 samples, 0.90%)</title><rect x="156.0" y="469" width="10.6" height="15.0" fill="rgb(226,83,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="158.95" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>itertools::Itertools::collect_vec (10 samples, 0.75%)</title><rect x="863.6" y="581" width="8.8" height="15.0" fill="rgb(249,191,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>core::ops::function::FnOnce::call_once (1,333 samples, 99.93%)</title><rect x="10.9" y="677" width="1179.1" height="15.0" fill="rgb(244,23,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::ops::function::FnOnce::call_once</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (37 samples, 2.77%)</title><rect x="1081.2" y="437" width="32.7" height="15.0" fill="rgb(210,157,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1084.20" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::collect (10 samples, 0.75%)</title><rect x="863.6" y="405" width="8.8" height="15.0" fill="rgb(219,3,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>_ieee754_log_avx (1 samples, 0.07%)</title><rect x="17.1" y="341" width="0.9" height="15.0" fill="rgb(221,134,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.08" 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><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (1 samples, 0.07%)</title><rect x="133.8" y="437" width="0.9" height="15.0" fill="rgb(222,48,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="136.84" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::le (2 samples, 0.15%)</title><rect x="252.4" y="453" width="1.7" height="15.0" fill="rgb(235,20,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.37" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln_1p (32 samples, 2.40%)</title><rect x="332.9" y="485" width="28.3" height="15.0" fill="rgb(231,100,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="335.86" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::option::Option<T>>::map (10 samples, 0.75%)</title><rect x="863.6" y="309" width="8.8" height="15.0" fill="rgb(225,213,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>_ieee754_log_avx (2 samples, 0.15%)</title><rect x="863.6" y="165" width="1.8" height="15.0" fill="rgb(224,67,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>lib::call_tumor_normal (1,333 samples, 99.93%)</title><rect x="10.9" y="629" width="1179.1" height="15.0" fill="rgb(247,61,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >lib::call_tumor_normal</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (2 samples, 0.15%)</title><rect x="1167.9" y="373" width="1.8" height="15.0" fill="rgb(228,225,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1170.89" 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>arena_unstash_purged (16 samples, 1.20%)</title><rect x="1060.0" y="245" width="14.1" height="15.0" fill="rgb(232,81,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.97" 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::evidence::fragments::isize_pmf (2 samples, 0.15%)</title><rect x="15.3" y="373" width="1.8" height="15.0" fill="rgb(245,0,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" 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>rust_htslib::bam::record::Record::unpack_cigar (1 samples, 0.07%)</title><rect x="1189.1" y="581" width="0.9" height="15.0" fill="rgb(216,139,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.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>[[kerne.allsyms]] (8 samples, 0.60%)</title><rect x="876.0" y="357" width="7.1" height="15.0" fill="rgb(240,180,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.98" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::option::Option<T>>::map (10 samples, 0.75%)</title><rect x="863.6" y="485" width="8.8" height="15.0" fill="rgb(248,137,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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]] (34 samples, 2.55%)</title><rect x="1083.9" y="373" width="30.0" height="15.0" fill="rgb(221,138,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1086.85" 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>bgzf_uncompress (15 samples, 1.12%)</title><rect x="1172.3" y="517" width="13.3" height="15.0" fill="rgb(246,132,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.31" 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>[lib....1] (2 samples, 0.15%)</title><rect x="11.8" y="389" width="1.7" height="15.0" fill="rgb(211,123,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.77" 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>rust_htslib::bam::record::Seq::encoded_base (12 samples, 0.90%)</title><rect x="169.2" y="453" width="10.6" height="15.0" fill="rgb(212,189,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="172.22" 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><F as alloc::boxed::FnBox<A>>::call_box (1,333 samples, 99.93%)</title><rect x="10.9" y="693" width="1179.1" height="15.0" fill="rgb(214,48,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><F as alloc::boxed::FnBox<A>>::call_box</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index (1 samples, 0.07%)</title><rect x="73.7" y="469" width="0.9" height="15.0" fill="rgb(237,132,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="76.69" 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>_ieee754_exp_avx (293 samples, 21.96%)</title><rect x="447.0" y="357" width="259.1" height="15.0" fill="rgb(222,62,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="449.97" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ieee754_exp_avx</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib-d3feb2225a9 (1 samples, 0.07%)</title><rect x="10.0" y="997" width="0.9" height="15.0" fill="rgb(244,228,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::push (1 samples, 0.07%)</title><rect x="79.0" y="501" width="0.9" height="15.0" fill="rgb(227,46,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="82.00" 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>bio::stats::probs::LogProb::ln_add_exp (7 samples, 0.52%)</title><rect x="866.3" y="165" width="6.1" height="15.0" fill="rgb(231,154,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="869.25" 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>je_tcache_bin_flush_small (1 samples, 0.07%)</title><rect x="10.9" y="485" width="0.9" height="15.0" fill="rgb(249,127,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" 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]] (20 samples, 1.50%)</title><rect x="1152.0" y="469" width="17.7" height="15.0" fill="rgb(220,22,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.96" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (10 samples, 0.75%)</title><rect x="863.6" y="357" width="8.8" height="15.0" fill="rgb(207,55,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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>_log1p (1 samples, 0.07%)</title><rect x="862.7" y="501" width="0.9" height="15.0" fill="rgb(244,78,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="865.71" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup (10 samples, 0.75%)</title><rect x="863.6" y="229" width="8.8" height="15.0" fill="rgb(252,1,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.60" 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><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (1 samples, 0.07%)</title><rect x="1189.1" y="549" width="0.9" height="15.0" fill="rgb(235,58,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.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><alloc::raw_vec::RawVec<T, A>>::reserve_internal (1 samples, 0.07%)</title><rect x="1189.1" y="469" width="0.9" height="15.0" fill="rgb(241,81,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.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><alloc::alloc::Global as core::alloc::Alloc>::realloc (197 samples, 14.77%)</title><rect x="899.9" y="453" width="174.2" height="15.0" fill="rgb(225,7,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="902.87" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::alloc::Global ..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for u64>::le (2 samples, 0.15%)</title><rect x="1169.7" y="501" width="1.7" height="15.0" fill="rgb(235,125,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1172.66" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::buffered::BufReader<R> as std::io::BufRead>::fill_buf (41 samples, 3.07%)</title><rect x="1077.7" y="533" width="36.2" height="15.0" fill="rgb(218,194,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1080.66" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><st..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::thread::Builder::spawn::{{closure}}::{{closure}} (1,333 samples, 99.93%)</title><rect x="10.9" y="789" width="1179.1" height="15.0" fill="rgb(228,125,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.88" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::thread::Builder::spawn::{{closure}}::{{closure}}</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (6 samples, 0.45%)</title><rect x="1068.8" y="37" width="5.3" height="15.0" fill="rgb(248,150,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1071.82" y="47.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