Created
November 16, 2018 10:13
-
-
Save dlaehnemann/168804c07fd51e7bc698f59a1b0ab341 to your computer and use it in GitHub Desktop.
libprosic flamegraph of test09 on branch use-fastexp at commit 7f2b5842c5cb1dee8769c47f24e21fdfcd8e9dc8
This file contains hidden or 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="1222" onload="init(evt)" viewBox="0 0 1200 1222" 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="1222.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="1205" 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="1205" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<&'a T, core::slice::Iter<'a, T>>>::spec_extend (224 samples, 19.48%)</title><rect x="759.0" y="677" width="229.9" height="15.0" fill="rgb(240,7,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="762.04" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::vec::Vec<T> as alloc::..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="724.2" y="581" width="1.0" height="15.0" fill="rgb(219,16,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1072.0" y="213" width="1.0" height="15.0" fill="rgb(234,194,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.00" 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><rust_htslib::bam::Reader as rust_htslib::bam::Read>::read (22 samples, 1.91%)</title><rect x="1165.4" y="757" width="22.5" height="15.0" fill="rgb(218,214,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="10.0" y="981" width="1.0" height="15.0" fill="rgb(235,144,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::collect (1 samples, 0.09%)</title><rect x="1187.9" y="725" width="1.1" height="15.0" fill="rgb(234,28,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.95" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys_common::poison::Flag::borrow (1 samples, 0.09%)</title><rect x="697.5" y="69" width="1.0" height="15.0" fill="rgb(206,10,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.48" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (27 samples, 2.35%)</title><rect x="1128.4" y="581" width="27.7" height="15.0" fill="rgb(223,102,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1131.43" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="89.0" y="597" width="1.0" height="15.0" fill="rgb(241,190,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="92.01" 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>_w_log1p (5 samples, 0.43%)</title><rect x="651.3" y="629" width="5.1" height="15.0" fill="rgb(217,18,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.30" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_pthread_mutex_unlock_usercnt (1 samples, 0.09%)</title><rect x="718.0" y="309" width="1.0" height="15.0" fill="rgb(219,23,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="721.00" 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>std::sys::unix::fd::FileDesc::read (78 samples, 6.78%)</title><rect x="995.0" y="645" width="80.1" height="15.0" fill="rgb(232,162,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="998.04" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys:..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>arena_purge_to_limit (19 samples, 1.65%)</title><rect x="964.3" y="421" width="19.5" height="15.0" fill="rgb(223,86,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_fmt (1 samples, 0.09%)</title><rect x="709.8" y="277" width="1.0" height="15.0" fill="rgb(238,142,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" 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>core::num::diy_float::Fp::normalize (1 samples, 0.09%)</title><rect x="723.1" y="405" width="1.1" height="15.0" fill="rgb(247,175,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="726.13" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_fmt (33 samples, 2.87%)</title><rect x="675.9" y="245" width="33.9" height="15.0" fill="rgb(243,59,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="678.93" y="255.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>core::ptr::drop_in_place (1 samples, 0.09%)</title><rect x="718.0" y="389" width="1.0" height="15.0" fill="rgb(238,88,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="721.00" 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::ptr::drop_in_place (1 samples, 0.09%)</title><rect x="17.2" y="725" width="1.0" height="15.0" fill="rgb(221,115,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.18" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::rt::lang_start_internal (1 samples, 0.09%)</title><rect x="13.1" y="1093" width="1.0" height="15.0" fill="rgb(232,160,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_maybe_purge (9 samples, 0.78%)</title><rect x="724.2" y="725" width="9.2" height="15.0" fill="rgb(241,123,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::prob_insertion (1 samples, 0.09%)</title><rect x="162.9" y="645" width="1.0" height="15.0" fill="rgb(208,50,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.89" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_rust_maybe_catch_panic (1,145 samples, 99.57%)</title><rect x="15.1" y="997" width="1174.9" height="15.0" fill="rgb(211,153,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_rust_maybe_catch_panic</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::Prob as core::ops::arith::Add>::add (1 samples, 0.09%)</title><rect x="666.7" y="325" width="1.0" height="15.0" fill="rgb(221,114,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" 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>std::panicking::panicking (1 samples, 0.09%)</title><rect x="697.5" y="37" width="1.0" height="15.0" fill="rgb(206,28,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.48" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for usize>::le (1 samples, 0.09%)</title><rect x="990.9" y="645" width="1.1" height="15.0" fill="rgb(237,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="993.94" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_log1p (2 samples, 0.17%)</title><rect x="710.8" y="613" width="2.1" height="15.0" fill="rgb(221,13,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.82" 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>rust_htslib::bam::record::Seq::encoded_base (2 samples, 0.17%)</title><rect x="188.5" y="613" width="2.1" height="15.0" fill="rgb(240,37,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="191.54" 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>core::fmt::Formatter::run (27 samples, 2.35%)</title><rect x="682.1" y="213" width="27.7" height="15.0" fill="rgb(208,214,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="685.09" y="223.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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1072.0" y="197" width="1.0" height="15.0" fill="rgb(227,143,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.00" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="501" width="1.0" height="15.0" fill="rgb(236,123,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="597" width="1.0" height="15.0" fill="rgb(228,75,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" 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,145 samples, 99.57%)</title><rect x="15.1" y="933" width="1174.9" height="15.0" fill="rgb(235,224,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="943.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><alloc::vec::Vec<T>>::extend_from_slice (231 samples, 20.09%)</title><rect x="751.9" y="693" width="237.0" height="15.0" fill="rgb(243,215,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="754.86" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::vec::Vec<T>>::extend_fr..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (8 samples, 0.70%)</title><rect x="725.2" y="549" width="8.2" height="15.0" fill="rgb(238,91,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.18" 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><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::map (13 samples, 1.13%)</title><rect x="710.8" y="757" width="13.4" height="15.0" fill="rgb(249,223,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.82" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup (42 samples, 3.65%)</title><rect x="666.7" y="389" width="43.1" height="15.0" fill="rgb(254,136,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libp..</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 (42 samples, 3.65%)</title><rect x="666.7" y="453" width="43.1" height="15.0" fill="rgb(250,157,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_chunk_dalloc_wrapper (8 samples, 0.70%)</title><rect x="725.2" y="661" width="8.2" height="15.0" fill="rgb(241,21,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.18" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (18 samples, 1.57%)</title><rect x="965.3" y="341" width="18.5" height="15.0" fill="rgb(224,157,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (8 samples, 0.70%)</title><rect x="725.2" y="565" width="8.2" height="15.0" fill="rgb(253,27,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.18" 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>inflate (19 samples, 1.65%)</title><rect x="1166.4" y="661" width="19.5" height="15.0" fill="rgb(226,33,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1169.40" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1155.1" y="501" width="1.0" height="15.0" fill="rgb(232,176,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1158.11" 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::deref::DerefMut>::deref_mut (10 samples, 0.87%)</title><rect x="94.1" y="645" width="10.3" height="15.0" fill="rgb(234,141,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="97.14" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="549" width="1.0" height="15.0" fill="rgb(249,129,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" 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::alloc::realloc (217 samples, 18.87%)</title><rect x="761.1" y="597" width="222.7" height="15.0" fill="rgb(254,122,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.10" y="607.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>main (1 samples, 0.09%)</title><rect x="13.1" y="1109" width="1.0" height="15.0" fill="rgb(210,154,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::PairPileup<'a, A, B, P>>::case_likelihood (42 samples, 3.65%)</title><rect x="666.7" y="405" width="43.1" height="15.0" fill="rgb(217,4,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><lib..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::stdio::print_to::{{closure}} (10 samples, 0.87%)</title><rect x="713.9" y="565" width="10.3" height="15.0" fill="rgb(217,46,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.90" 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><alloc::vec::Vec<T>>::extend_desugared (2 samples, 0.17%)</title><rect x="21.3" y="597" width="2.0" height="15.0" fill="rgb(223,181,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" 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>start_thread (1,145 samples, 99.57%)</title><rect x="15.1" y="1125" width="1174.9" height="15.0" fill="rgb(212,55,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="1135.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><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (13 samples, 1.13%)</title><rect x="710.8" y="661" width="13.4" height="15.0" fill="rgb(205,95,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.82" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::ge (9 samples, 0.78%)</title><rect x="338.3" y="597" width="9.3" height="15.0" fill="rgb(240,105,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="341.35" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="10.0" y="1093" width="1.0" height="15.0" fill="rgb(243,223,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup::{{closure}} (42 samples, 3.65%)</title><rect x="666.7" y="357" width="43.1" height="15.0" fill="rgb(239,110,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libp..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (9 samples, 0.78%)</title><rect x="974.5" y="197" width="9.3" height="15.0" fill="rgb(243,32,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="977.52" 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 (1 samples, 0.09%)</title><rect x="715.9" y="389" width="1.1" height="15.0" fill="rgb(239,4,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="718.95" 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::fmt::Formatter::write_formatted_parts (5 samples, 0.43%)</title><rect x="713.9" y="469" width="5.1" height="15.0" fill="rgb(235,3,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.90" 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::sync::once::Once::is_completed (1 samples, 0.09%)</title><rect x="161.9" y="549" width="1.0" height="15.0" fill="rgb(225,43,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.86" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_simpsons_integrate_exp::{{closure}} (1 samples, 0.09%)</title><rect x="709.8" y="469" width="1.0" height="15.0" fill="rgb(238,61,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::flt2dec::to_shortest_str (5 samples, 0.43%)</title><rect x="719.0" y="469" width="5.2" height="15.0" fill="rgb(234,50,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="722.03" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1072.0" y="149" width="1.0" height="15.0" fill="rgb(217,3,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.00" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::drop_in_place (1 samples, 0.09%)</title><rect x="17.2" y="661" width="1.0" height="15.0" fill="rgb(252,52,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.18" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::cmp::Ordering as core::cmp::PartialEq>::eq (1 samples, 0.09%)</title><rect x="323.0" y="629" width="1.0" height="15.0" fill="rgb(205,197,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="325.96" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::flt2dec::decoder::decode (1 samples, 0.09%)</title><rect x="700.6" y="165" width="1.0" height="15.0" fill="rgb(253,46,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="703.56" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_all (2 samples, 0.17%)</title><rect x="717.0" y="421" width="2.0" height="15.0" fill="rgb(222,64,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.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>update_loff (1 samples, 0.09%)</title><rect x="1189.0" y="661" width="1.0" height="15.0" fill="rgb(227,191,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.97" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Formatter::pad_formatted_parts (1 samples, 0.09%)</title><rect x="683.1" y="181" width="1.0" height="15.0" fill="rgb(231,9,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="686.11" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index (2 samples, 0.17%)</title><rect x="152.6" y="597" width="2.1" height="15.0" fill="rgb(215,9,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="155.63" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Formatter::write_formatted_parts (16 samples, 1.39%)</title><rect x="684.1" y="181" width="16.5" height="15.0" fill="rgb(233,19,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="687.14" 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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1072.0" y="261" width="1.0" height="15.0" fill="rgb(245,79,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.00" 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><alloc::vec::Vec<T>>::extend_desugared (42 samples, 3.65%)</title><rect x="666.7" y="501" width="43.1" height="15.0" fill="rgb(210,149,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><all..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (98 samples, 8.52%)</title><rect x="863.7" y="517" width="100.6" height="15.0" fill="rgb(250,62,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.70" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne.alls..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib::call_tumor_normal (1,144 samples, 99.48%)</title><rect x="16.2" y="789" width="1173.8" height="15.0" fill="rgb(229,30,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="799.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>arena_dalloc_bin_locked_impl (1 samples, 0.09%)</title><rect x="16.2" y="629" width="1.0" height="15.0" fill="rgb(213,94,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::path::Path::exists (1 samples, 0.09%)</title><rect x="1164.3" y="741" width="1.1" height="15.0" fill="rgb(239,0,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.35" 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>bgzf_read (22 samples, 1.91%)</title><rect x="1165.4" y="725" width="22.5" height="15.0" fill="rgb(245,40,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >b..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sync::once::Once::call_once (3 samples, 0.26%)</title><rect x="201.9" y="565" width="3.1" height="15.0" fill="rgb(211,194,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.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>std::io::stdio::print_to (1 samples, 0.09%)</title><rect x="709.8" y="341" width="1.0" height="15.0" fill="rgb(236,36,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (1 samples, 0.09%)</title><rect x="709.8" y="405" width="1.0" height="15.0" fill="rgb(232,212,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::ge (2 samples, 0.17%)</title><rect x="247.0" y="613" width="2.1" height="15.0" fill="rgb(219,77,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="250.03" 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>_memcpy_sse2_unaligned_erms (1 samples, 0.09%)</title><rect x="15.1" y="869" width="1.1" height="15.0" fill="rgb(240,194,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panicking::try (1,144 samples, 99.48%)</title><rect x="16.2" y="885" width="1173.8" height="15.0" fill="rgb(219,186,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="895.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>core::num::flt2dec::strategy::grisu::format_shortest_opt (8 samples, 0.70%)</title><rect x="701.6" y="133" width="8.2" height="15.0" fill="rgb(206,25,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="704.58" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="437" width="1.0" height="15.0" fill="rgb(238,14,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.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>alloc::alloc::alloc (1 samples, 0.09%)</title><rect x="1187.9" y="597" width="1.1" height="15.0" fill="rgb(237,28,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.95" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="14.1" y="917" width="1.0" height="15.0" fill="rgb(212,59,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" 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>libprosic::model::sample::Sample::extract_observations (633 samples, 55.04%)</title><rect x="17.2" y="741" width="649.5" height="15.0" fill="rgb(213,128,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.18" y="751.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]] (3 samples, 0.26%)</title><rect x="961.2" y="357" width="3.1" height="15.0" fill="rgb(226,207,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.18" 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><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (12 samples, 1.04%)</title><rect x="81.8" y="661" width="12.3" height="15.0" fill="rgb(225,41,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="84.83" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::clone::Clone>::clone (1 samples, 0.09%)</title><rect x="13.1" y="869" width="1.0" height="15.0" fill="rgb(236,91,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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>_log1p (1 samples, 0.09%)</title><rect x="712.9" y="581" width="1.0" height="15.0" fill="rgb(236,186,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="715.87" 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>rust_htslib::bam::record::Record::unpack_cigar (1 samples, 0.09%)</title><rect x="1187.9" y="741" width="1.1" height="15.0" fill="rgb(228,19,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.95" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::slice::hack::to_vec (1 samples, 0.09%)</title><rect x="15.1" y="885" width="1.1" height="15.0" fill="rgb(238,23,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1072.0" y="181" width="1.0" height="15.0" fill="rgb(233,99,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.00" 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><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::next (3 samples, 0.26%)</title><rect x="492.3" y="613" width="3.0" height="15.0" fill="rgb(245,18,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.26" 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>[[kerne.allsyms]] (23 samples, 2.00%)</title><rect x="1132.5" y="565" width="23.6" height="15.0" fill="rgb(213,176,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1135.54" 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><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (2 samples, 0.17%)</title><rect x="152.6" y="629" width="2.1" height="15.0" fill="rgb(223,0,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="155.63" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref>::deref::_stability (4 samples, 0.35%)</title><rect x="200.9" y="597" width="4.1" height="15.0" fill="rgb(254,70,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="203.85" 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>libprosic::model::evidence::reads::IndelEvidence::prob (625 samples, 54.35%)</title><rect x="25.4" y="693" width="641.3" height="15.0" fill="rgb(239,19,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.39" y="703.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]] (21 samples, 1.83%)</title><rect x="1051.5" y="421" width="21.5" height="15.0" fill="rgb(219,157,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1054.48" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="14.1" y="789" width="1.0" height="15.0" fill="rgb(219,186,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" 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><rust_htslib::bam::record::CigarString as core::fmt::Display>::fmt (2 samples, 0.17%)</title><rect x="23.3" y="629" width="2.1" height="15.0" fill="rgb(235,152,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.34" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_huge_dalloc (19 samples, 1.65%)</title><rect x="964.3" y="485" width="19.5" height="15.0" fill="rgb(249,212,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" 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><f64 as core::ops::arith::Add>::add (1 samples, 0.09%)</title><rect x="666.7" y="309" width="1.0" height="15.0" fill="rgb(217,175,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" 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><libprosic::model::PairPileup<'a, A, B, P>>::case_likelihood (13 samples, 1.13%)</title><rect x="710.8" y="693" width="13.4" height="15.0" fill="rgb(234,127,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.82" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>refill_buffer (1 samples, 0.09%)</title><rect x="1165.4" y="661" width="1.0" height="15.0" fill="rgb(241,115,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (4 samples, 0.35%)</title><rect x="1152.0" y="533" width="4.1" height="15.0" fill="rgb(243,108,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1155.03" 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>test::run_tests_console::{{closure}} (1 samples, 0.09%)</title><rect x="13.1" y="917" width="1.0" height="15.0" fill="rgb(249,226,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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>itertools::minmax::minmax_impl (13 samples, 1.13%)</title><rect x="710.8" y="725" width="13.4" height="15.0" fill="rgb(227,34,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.82" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::nth (1 samples, 0.09%)</title><rect x="498.4" y="613" width="1.0" height="15.0" fill="rgb(249,8,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.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><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (2 samples, 0.17%)</title><rect x="205.0" y="613" width="2.0" height="15.0" fill="rgb(242,209,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="207.96" 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>[[kerne.allsyms]] (52 samples, 4.52%)</title><rect x="1102.8" y="661" width="53.3" height="15.0" fill="rgb(220,89,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1105.78" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ker..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::flt2dec::to_shortest_str (9 samples, 0.78%)</title><rect x="700.6" y="181" width="9.2" height="15.0" fill="rgb(205,47,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="703.56" 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>arena_purge_stashed (1 samples, 0.09%)</title><rect x="724.2" y="677" width="1.0" height="15.0" fill="rgb(243,133,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_run_regind (1 samples, 0.09%)</title><rect x="16.2" y="597" width="1.0" height="15.0" fill="rgb(238,171,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::fmt::Write::write_fmt::Adapter<'a, T> as core::fmt::Write>::write_char (1 samples, 0.09%)</title><rect x="23.3" y="565" width="1.1" height="15.0" fill="rgb(230,88,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.34" 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>arena_maybe_purge_ratio (9 samples, 0.78%)</title><rect x="724.2" y="709" width="9.2" height="15.0" fill="rgb(205,222,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup (13 samples, 1.13%)</title><rect x="710.8" y="677" width="13.4" height="15.0" fill="rgb(229,134,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.82" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (37 samples, 3.22%)</title><rect x="1118.2" y="629" width="37.9" height="15.0" fill="rgb(226,227,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1121.17" y="639.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><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::joint_prob::{{closure}}::{{closure}} (1 samples, 0.09%)</title><rect x="709.8" y="453" width="1.0" height="15.0" fill="rgb(208,181,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::impls::<impl std::io::Write for alloc::vec::Vec<u8>>::write (1 samples, 0.09%)</title><rect x="681.1" y="165" width="1.0" height="15.0" fill="rgb(253,187,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="684.06" 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::raw_vec::RawVec<T, A>>::reserve_internal (1 samples, 0.09%)</title><rect x="1187.9" y="629" width="1.1" height="15.0" fill="rgb(219,150,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.95" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sync::once::Once::is_completed (1 samples, 0.09%)</title><rect x="203.9" y="549" width="1.1" height="15.0" fill="rgb(238,168,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.93" 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>rust_htslib::bam::record::Record::cigar (1 samples, 0.09%)</title><rect x="1187.9" y="757" width="1.1" height="15.0" fill="rgb(247,125,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.95" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="14.1" y="949" width="1.0" height="15.0" fill="rgb(214,70,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" 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>_GI___pthread_mutex_lock (1 samples, 0.09%)</title><rect x="717.0" y="341" width="1.0" height="15.0" fill="rgb(239,167,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.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>rust_htslib::bcf::Reader::from_path (1 samples, 0.09%)</title><rect x="1164.3" y="757" width="1.1" height="15.0" fill="rgb(219,220,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.35" 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><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (1 samples, 0.09%)</title><rect x="196.7" y="613" width="1.1" height="15.0" fill="rgb(246,131,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="199.75" 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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="453" width="1.0" height="15.0" fill="rgb(234,117,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.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>je_arena_sdalloc (19 samples, 1.65%)</title><rect x="964.3" y="501" width="19.5" height="15.0" fill="rgb(208,105,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" 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>_GI___pthread_mutex_unlock (1 samples, 0.09%)</title><rect x="718.0" y="325" width="1.0" height="15.0" fill="rgb(252,216,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="721.00" 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><std::fs::File as std::io::Read>::read (78 samples, 6.78%)</title><rect x="995.0" y="677" width="80.1" height="15.0" fill="rgb(246,43,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="998.04" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><std::fs:..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (52 samples, 4.52%)</title><rect x="1102.8" y="645" width="53.3" height="15.0" fill="rgb(239,165,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1105.78" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ker..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::slice::<impl [T]>::to_vec (1 samples, 0.09%)</title><rect x="13.1" y="853" width="1.0" height="15.0" fill="rgb(238,89,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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><test::Sink as std::io::Write>::write (3 samples, 0.26%)</title><rect x="697.5" y="117" width="3.1" height="15.0" fill="rgb(228,182,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.48" 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::num::<impl u8>::to_ascii_uppercase (6 samples, 0.52%)</title><rect x="190.6" y="629" width="6.1" height="15.0" fill="rgb(247,220,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="193.59" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_tcache_bin_flush_small (1 samples, 0.09%)</title><rect x="16.2" y="645" width="1.0" height="15.0" fill="rgb(245,72,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="14.1" y="837" width="1.0" height="15.0" fill="rgb(219,48,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (18 samples, 1.57%)</title><rect x="965.3" y="309" width="18.5" height="15.0" fill="rgb(219,10,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.29" 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>_pthread_disable_asynccancel (1 samples, 0.09%)</title><rect x="1073.0" y="613" width="1.1" height="15.0" fill="rgb(209,206,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.03" 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>core::fmt::Formatter::write_formatted_parts::write_bytes (5 samples, 0.43%)</title><rect x="695.4" y="165" width="5.2" height="15.0" fill="rgb(254,129,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="698.43" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Formatter::write_fmt (2 samples, 0.17%)</title><rect x="23.3" y="613" width="2.1" height="15.0" fill="rgb(253,130,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.34" 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>je_tcache_dalloc_small (1 samples, 0.09%)</title><rect x="16.2" y="661" width="1.0" height="15.0" fill="rgb(215,162,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (24 samples, 2.09%)</title><rect x="1048.4" y="453" width="24.6" height="15.0" fill="rgb(254,132,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1051.40" 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]] (1 samples, 0.09%)</title><rect x="1165.4" y="389" width="1.0" height="15.0" fill="rgb(223,33,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" 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><alloc::raw_vec::RawVec<T, A> as core::ops::drop::Drop>::drop (1 samples, 0.09%)</title><rect x="17.2" y="613" width="1.0" height="15.0" fill="rgb(252,228,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.18" 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><core::slice::Iter<'a, T>>::post_inc_start (1 samples, 0.09%)</title><rect x="494.3" y="597" width="1.0" height="15.0" fill="rgb(240,156,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="497.31" 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><libprosic::model::evidence::reads::ReferenceEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_xy (40 samples, 3.48%)</title><rect x="163.9" y="661" width="41.1" height="15.0" fill="rgb(228,154,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.91" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><li..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (2 samples, 0.17%)</title><rect x="21.3" y="645" width="2.0" height="15.0" fill="rgb(221,91,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::next (20 samples, 1.74%)</title><rect x="471.7" y="597" width="20.6" height="15.0" fill="rgb(205,178,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.74" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (42 samples, 3.65%)</title><rect x="666.7" y="373" width="43.1" height="15.0" fill="rgb(243,221,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><cor..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::prob_match_mismatch (38 samples, 3.30%)</title><rect x="166.0" y="645" width="39.0" height="15.0" fill="rgb(242,204,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.97" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >lib..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::write (2 samples, 0.17%)</title><rect x="23.3" y="597" width="2.1" height="15.0" fill="rgb(244,201,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.34" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (3 samples, 0.26%)</title><rect x="961.2" y="341" width="3.1" height="15.0" fill="rgb(254,211,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.18" 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 as core::ops::arith::Sub>::sub (2 samples, 0.17%)</title><rect x="254.2" y="645" width="2.1" height="15.0" fill="rgb(221,54,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.21" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1155.1" y="453" width="1.0" height="15.0" fill="rgb(207,111,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1158.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>_log1p (18 samples, 1.57%)</title><rect x="263.4" y="629" width="18.5" height="15.0" fill="rgb(241,2,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.44" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::option::Option<T>>::map (3 samples, 0.26%)</title><rect x="495.3" y="613" width="3.1" height="15.0" fill="rgb(234,177,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="498.34" 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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="341" width="1.0" height="15.0" fill="rgb(247,223,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" 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 alloc::vec::SpecExtend<T, I>>::spec_extend (2 samples, 0.17%)</title><rect x="21.3" y="613" width="2.0" height="15.0" fill="rgb(227,149,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" 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>bgzf_read_block (3 samples, 0.26%)</title><rect x="18.2" y="613" width="3.1" height="15.0" fill="rgb(232,127,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.21" 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>libprosic::model::evidence::reads::ReadEmission::particular_miscall (3 samples, 0.26%)</title><rect x="159.8" y="629" width="3.1" height="15.0" fill="rgb(251,147,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="162.81" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bam_destroy1 (1 samples, 0.09%)</title><rect x="16.2" y="741" width="1.0" height="15.0" fill="rgb(221,123,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panic::catch_unwind (1 samples, 0.09%)</title><rect x="13.1" y="1077" width="1.0" height="15.0" fill="rgb(209,84,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (138 samples, 12.00%)</title><rect x="350.7" y="613" width="141.6" height="15.0" fill="rgb(216,94,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.66" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::slice::Iter..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::sync::mutex::Mutex<T>>::lock (1 samples, 0.09%)</title><rect x="717.0" y="389" width="1.0" height="15.0" fill="rgb(209,143,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.97" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::sample::RecordBuffer::fill (3 samples, 0.26%)</title><rect x="18.2" y="725" width="3.1" height="15.0" fill="rgb(251,207,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.21" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dl_main (1 samples, 0.09%)</title><rect x="14.1" y="1077" width="1.0" height="15.0" fill="rgb(237,70,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys::unix::fs::File::read (78 samples, 6.78%)</title><rect x="995.0" y="661" width="80.1" height="15.0" fill="rgb(252,133,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="998.04" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys:..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::sample::Sample::fragment_observation::{{closure}} (625 samples, 54.35%)</title><rect x="25.4" y="709" width="641.3" height="15.0" fill="rgb(221,135,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.39" y="719.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><rust_htslib::bam::record::Seq<'a> as core::ops::index::Index<usize>>::index (3 samples, 0.26%)</title><rect x="187.5" y="629" width="3.1" height="15.0" fill="rgb(220,165,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="190.51" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::le (1 samples, 0.09%)</title><rect x="249.1" y="597" width="1.0" height="15.0" fill="rgb(239,167,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.08" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ops::range::Range<usize> as core::slice::SliceIndex<[T]>>::index (1 samples, 0.09%)</title><rect x="1075.1" y="661" width="1.0" height="15.0" fill="rgb(253,173,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1078.08" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::option::Option<T>>::map (42 samples, 3.65%)</title><rect x="666.7" y="469" width="43.1" height="15.0" fill="rgb(241,116,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><cor..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve (217 samples, 18.87%)</title><rect x="761.1" y="645" width="222.7" height="15.0" fill="rgb(251,129,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.10" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::raw_vec::RawVec<T, A>..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_huge_dalloc (9 samples, 0.78%)</title><rect x="724.2" y="757" width="9.2" height="15.0" fill="rgb(228,46,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test::run_tests_console (1 samples, 0.09%)</title><rect x="13.1" y="949" width="1.0" height="15.0" fill="rgb(228,107,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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><rust_htslib::bam::IndexedReader as rust_htslib::bam::Read>::read (3 samples, 0.26%)</title><rect x="18.2" y="709" width="3.1" height="15.0" fill="rgb(214,190,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.21" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::ptr (4 samples, 0.35%)</title><rect x="84.9" y="629" width="4.1" height="15.0" fill="rgb(207,130,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="87.90" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_from_slice (1 samples, 0.09%)</title><rect x="13.1" y="821" width="1.0" height="15.0" fill="rgb(226,108,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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>std::sys_common::mutex::Mutex::raw_unlock (2 samples, 0.17%)</title><rect x="679.0" y="133" width="2.1" height="15.0" fill="rgb(233,126,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.01" 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>hread2 (1 samples, 0.09%)</title><rect x="1165.4" y="677" width="1.0" height="15.0" fill="rgb(231,99,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::offset (1 samples, 0.09%)</title><rect x="502.5" y="613" width="1.0" height="15.0" fill="rgb(208,221,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.52" 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><bio::stats::probs::Prob as core::ops::arith::Add>::add (3 samples, 0.26%)</title><rect x="197.8" y="613" width="3.1" height="15.0" fill="rgb(215,180,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="200.77" 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>core::fmt::Formatter::pad_integral (1 samples, 0.09%)</title><rect x="24.4" y="549" width="1.0" height="15.0" fill="rgb(236,205,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.37" 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><std::io::Write::write_fmt::Adaptor<'a, T> as core::fmt::Write>::write_str (11 samples, 0.96%)</title><rect x="684.1" y="165" width="11.3" height="15.0" fill="rgb(226,60,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="687.14" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Formatter::run (2 samples, 0.17%)</title><rect x="23.3" y="581" width="2.1" height="15.0" fill="rgb(206,228,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.34" 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]] (63 samples, 5.48%)</title><rect x="1008.4" y="517" width="64.6" height="15.0" fill="rgb(246,124,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1011.38" y="527.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>_libc_read (78 samples, 6.78%)</title><rect x="995.0" y="629" width="80.1" height="15.0" fill="rgb(216,128,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="998.04" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_libc_read</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::collect (43 samples, 3.74%)</title><rect x="666.7" y="565" width="44.1" height="15.0" fill="rgb(219,116,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::ge (2 samples, 0.17%)</title><rect x="247.0" y="597" width="2.1" height="15.0" fill="rgb(207,89,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="250.03" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (6 samples, 0.52%)</title><rect x="181.4" y="613" width="6.1" height="15.0" fill="rgb(208,125,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="184.36" 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>hread (1 samples, 0.09%)</title><rect x="1165.4" y="693" width="1.0" height="15.0" fill="rgb(223,9,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as bio::utils::fastexp::FastExp<f64>>::fastexp (1 samples, 0.09%)</title><rect x="665.7" y="629" width="1.0" height="15.0" fill="rgb(244,186,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="668.67" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::sync::atomic::atomic_load (1 samples, 0.09%)</title><rect x="203.9" y="517" width="1.1" height="15.0" fill="rgb(237,53,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.93" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="964.3" y="293" width="1.0" height="15.0" fill="rgb(220,214,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" 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>std::thread::Builder::spawn::{{closure}} (1,145 samples, 99.57%)</title><rect x="15.1" y="1045" width="1174.9" height="15.0" fill="rgb(249,120,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="1055.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>bgzf_read_block (21 samples, 1.83%)</title><rect x="1165.4" y="709" width="21.5" height="15.0" fill="rgb(220,106,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >b..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (19 samples, 1.65%)</title><rect x="1136.6" y="549" width="19.5" height="15.0" fill="rgb(240,83,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1139.64" 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]] (64 samples, 5.57%)</title><rect x="898.6" y="469" width="65.7" height="15.0" fill="rgb(209,113,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="901.59" y="479.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><f64 as core::ops::arith::Sub>::sub (3 samples, 0.26%)</title><rect x="372.2" y="533" width="3.1" height="15.0" fill="rgb(226,186,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="375.21" 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>hts_idx_load_local (1 samples, 0.09%)</title><rect x="1189.0" y="709" width="1.0" height="15.0" fill="rgb(232,14,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.97" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (2 samples, 0.17%)</title><rect x="21.3" y="629" width="2.0" height="15.0" fill="rgb(220,151,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_iqalloc (1 samples, 0.09%)</title><rect x="16.2" y="709" width="1.0" height="15.0" fill="rgb(221,205,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::Prob as core::ops::arith::Add>::add (1 samples, 0.09%)</title><rect x="160.8" y="613" width="1.1" height="15.0" fill="rgb(215,115,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.83" 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>[[kerne.allsyms]] (58 samples, 5.04%)</title><rect x="904.7" y="453" width="59.6" height="15.0" fill="rgb(226,172,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="907.75" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kern..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>itertools::Itertools::minmax_by_key (13 samples, 1.13%)</title><rect x="710.8" y="741" width="13.4" height="15.0" fill="rgb(230,97,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.82" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::collect (43 samples, 3.74%)</title><rect x="666.7" y="725" width="44.1" height="15.0" fill="rgb(247,34,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dl_map_segments (1 samples, 0.09%)</title><rect x="14.1" y="981" width="1.0" height="15.0" fill="rgb(207,33,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" 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>std::rt::lang_start::{{closure}} (1 samples, 0.09%)</title><rect x="13.1" y="997" width="1.0" height="15.0" fill="rgb(227,17,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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>core::ops::function::FnMut::call_mut (5 samples, 0.43%)</title><rect x="719.0" y="453" width="5.2" height="15.0" fill="rgb(221,5,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="722.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><core::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::fold (138 samples, 12.00%)</title><rect x="350.7" y="645" width="141.6" height="15.0" fill="rgb(240,89,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.66" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::iter::Filte..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_pages_purge (1 samples, 0.09%)</title><rect x="964.3" y="389" width="1.0" height="15.0" fill="rgb(254,147,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" 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::io::stdio::print_to (10 samples, 0.87%)</title><rect x="713.9" y="597" width="10.3" height="15.0" fill="rgb(208,179,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.90" 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>je_pages_purge (1 samples, 0.09%)</title><rect x="724.2" y="661" width="1.0" height="15.0" fill="rgb(245,194,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::new (2 samples, 0.17%)</title><rect x="664.6" y="677" width="2.1" height="15.0" fill="rgb(245,207,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.64" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::num::dec2flt::rawfp::RawFloat>::classify (1 samples, 0.09%)</title><rect x="700.6" y="149" width="1.0" height="15.0" fill="rgb(235,164,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="703.56" 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><libprosic::model::PairCaller<A, B, P>>::pileup (633 samples, 55.04%)</title><rect x="17.2" y="757" width="649.5" height="15.0" fill="rgb(226,9,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.18" y="767.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>dl_sysdep_start (1 samples, 0.09%)</title><rect x="14.1" y="1093" width="1.0" height="15.0" fill="rgb(213,29,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_read (3 samples, 0.26%)</title><rect x="18.2" y="629" width="3.1" height="15.0" fill="rgb(247,228,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.21" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::drop_in_place (1 samples, 0.09%)</title><rect x="17.2" y="709" width="1.0" height="15.0" fill="rgb(241,67,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.18" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dl_start_final (1 samples, 0.09%)</title><rect x="14.1" y="1109" width="1.0" height="15.0" fill="rgb(238,133,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="10.0" y="997" width="1.0" height="15.0" fill="rgb(230,36,36)" 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><std::collections::hash::table::RawTable<K, V> as core::ops::drop::Drop>::drop (1 samples, 0.09%)</title><rect x="17.2" y="693" width="1.0" height="15.0" fill="rgb(214,75,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.18" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___xstat (1 samples, 0.09%)</title><rect x="1164.3" y="693" width="1.1" height="15.0" fill="rgb(242,82,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.35" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Skip<I> as core::iter::iterator::Iterator>::next (7 samples, 0.61%)</title><rect x="492.3" y="645" width="7.1" height="15.0" fill="rgb(205,182,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.26" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="89.0" y="613" width="1.0" height="15.0" fill="rgb(218,169,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="92.01" 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::panicking::try::do_call (1 samples, 0.09%)</title><rect x="13.1" y="1029" width="1.0" height="15.0" fill="rgb(229,128,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_sse2_unaligned_erms (198 samples, 17.22%)</title><rect x="761.1" y="533" width="203.2" height="15.0" fill="rgb(205,225,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.10" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_memcpy_sse2_unaligned_erms</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_log1p (3 samples, 0.26%)</title><rect x="672.9" y="293" width="3.0" height="15.0" fill="rgb(212,193,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="675.85" 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><test::TestEvent as core::clone::Clone>::clone (1 samples, 0.09%)</title><rect x="13.1" y="885" width="1.0" height="15.0" fill="rgb(222,89,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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>core::ops::function::FnOnce::call_once (1,144 samples, 99.48%)</title><rect x="16.2" y="805" width="1173.8" height="15.0" fill="rgb(219,140,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="815.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>hts_idx_load_core (1 samples, 0.09%)</title><rect x="1189.0" y="677" width="1.0" height="15.0" fill="rgb(231,23,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.97" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::write (2 samples, 0.17%)</title><rect x="23.3" y="661" width="2.1" height="15.0" fill="rgb(246,142,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.34" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (18 samples, 1.57%)</title><rect x="965.3" y="293" width="18.5" height="15.0" fill="rgb(208,181,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.29" 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]] (1 samples, 0.09%)</title><rect x="10.0" y="949" width="1.0" height="15.0" fill="rgb(215,190,5)" 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>_ieee754_exp_avx (1 samples, 0.09%)</title><rect x="21.3" y="469" width="1.0" height="15.0" fill="rgb(228,26,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" 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::option::Option<T>>::map (43 samples, 3.74%)</title><rect x="666.7" y="645" width="44.1" height="15.0" fill="rgb(220,208,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><cor..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_observation_case_control (1 samples, 0.09%)</title><rect x="709.8" y="373" width="1.0" height="15.0" fill="rgb(247,106,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_huge_ralloc (217 samples, 18.87%)</title><rect x="761.1" y="549" width="222.7" height="15.0" fill="rgb(249,188,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.10" y="559.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><usize as core::slice::SliceIndex<[T]>>::index (3 samples, 0.26%)</title><rect x="207.0" y="597" width="3.1" height="15.0" fill="rgb(224,46,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.01" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (4 samples, 0.35%)</title><rect x="90.0" y="645" width="4.1" height="15.0" fill="rgb(230,223,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="93.03" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::log_wrapper (1 samples, 0.09%)</title><rect x="22.3" y="533" width="1.0" height="15.0" fill="rgb(218,152,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.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::slice::<impl core::ops::index::Index<I> for [T]>::index (1 samples, 0.09%)</title><rect x="1075.1" y="677" width="1.0" height="15.0" fill="rgb(215,208,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1078.08" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>itertools::Itertools::collect_vec (2 samples, 0.17%)</title><rect x="21.3" y="677" width="2.0" height="15.0" fill="rgb(252,104,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialOrd>::gt (11 samples, 0.96%)</title><rect x="238.8" y="645" width="11.3" height="15.0" fill="rgb(246,78,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="241.82" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::sync::mutex::MutexGuard<'a, T> as core::ops::drop::Drop>::drop (1 samples, 0.09%)</title><rect x="718.0" y="373" width="1.0" height="15.0" fill="rgb(221,117,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="721.00" 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><alloc::collections::vec_deque::VecDeque<T> as core::ops::drop::Drop>::drop (1 samples, 0.09%)</title><rect x="16.2" y="757" width="1.0" height="15.0" fill="rgb(213,179,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="89.0" y="581" width="1.0" height="15.0" fill="rgb(218,89,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="92.01" 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>libprosic::utils::ReferenceBuffer::seq (420 samples, 36.52%)</title><rect x="733.4" y="757" width="430.9" height="15.0" fill="rgb(209,122,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="736.39" y="767.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><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::next (3 samples, 0.26%)</title><rect x="492.3" y="629" width="3.0" height="15.0" fill="rgb(234,77,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.26" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1164.3" y="645" width="1.1" height="15.0" fill="rgb(238,15,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.35" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (98 samples, 8.52%)</title><rect x="863.7" y="501" width="100.6" height="15.0" fill="rgb(213,31,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.70" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne.alls..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (3 samples, 0.26%)</title><rect x="961.2" y="277" width="3.1" height="15.0" fill="rgb(245,108,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.18" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (2 samples, 0.17%)</title><rect x="1071.0" y="309" width="2.0" height="15.0" fill="rgb(252,227,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1073.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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="14.1" y="821" width="1.0" height="15.0" fill="rgb(234,177,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="964.3" y="341" width="1.0" height="15.0" fill="rgb(241,161,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::next (2 samples, 0.17%)</title><rect x="21.3" y="581" width="2.0" height="15.0" fill="rgb(239,96,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" 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::io::impls::<impl std::io::Write for alloc::boxed::Box<W>>::write_fmt (33 samples, 2.87%)</title><rect x="675.9" y="261" width="33.9" height="15.0" fill="rgb(217,24,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="678.93" y="271.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><alloc::vec::Vec<T>>::reserve (217 samples, 18.87%)</title><rect x="761.1" y="661" width="222.7" height="15.0" fill="rgb(214,195,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.10" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::vec::Vec<T>>::reserve</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_sum_exp::{{closure}} (118 samples, 10.26%)</title><rect x="350.7" y="565" width="121.0" height="15.0" fill="rgb(245,139,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.66" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::pro..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_rust_maybe_catch_panic (1,144 samples, 99.48%)</title><rect x="16.2" y="869" width="1173.8" height="15.0" fill="rgb(210,95,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="879.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>bio::stats::probs::LogProb::ln_simpsons_integrate_exp (43 samples, 3.74%)</title><rect x="666.7" y="597" width="44.1" height="15.0" fill="rgb(222,205,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio:..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_chunk_dalloc_wrapper (18 samples, 1.57%)</title><rect x="965.3" y="389" width="18.5" height="15.0" fill="rgb(224,200,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.29" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::ReferenceEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_y (5 samples, 0.43%)</title><rect x="205.0" y="661" width="5.1" height="15.0" fill="rgb(209,102,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="207.96" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::fold (138 samples, 12.00%)</title><rect x="350.7" y="629" width="141.6" height="15.0" fill="rgb(238,67,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.66" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::iter::Enume..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::sync::mutex::MutexGuard<'a, T> as core::ops::drop::Drop>::drop (2 samples, 0.17%)</title><rect x="679.0" y="149" width="2.1" height="15.0" fill="rgb(249,89,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.01" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::drop_in_place (1 samples, 0.09%)</title><rect x="17.2" y="645" width="1.0" height="15.0" fill="rgb(223,138,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.18" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (8 samples, 0.70%)</title><rect x="956.1" y="373" width="8.2" height="15.0" fill="rgb(236,13,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="959.05" 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::<impl [T]>::copy_from_slice (4 samples, 0.35%)</title><rect x="984.8" y="661" width="4.1" height="15.0" fill="rgb(229,67,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="987.78" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (1 samples, 0.09%)</title><rect x="694.4" y="133" width="1.0" height="15.0" fill="rgb(228,121,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="697.40" 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><bio::stats::probs::LogProb as core::ops::arith::Add>::add (4 samples, 0.35%)</title><rect x="250.1" y="645" width="4.1" height="15.0" fill="rgb(221,216,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.10" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI_madvise (1 samples, 0.09%)</title><rect x="964.3" y="373" width="1.0" height="15.0" fill="rgb(216,75,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" 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>std::f64::<impl f64>::ln_1p (1 samples, 0.09%)</title><rect x="712.9" y="597" width="1.0" height="15.0" fill="rgb(213,141,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="715.87" 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>bio::stats::probs::LogProb::ln_add_exp (1 samples, 0.09%)</title><rect x="712.9" y="613" width="1.0" height="15.0" fill="rgb(241,221,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="715.87" 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>_GI___exp (1 samples, 0.09%)</title><rect x="21.3" y="485" width="1.0" height="15.0" fill="rgb(222,180,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::partial_cmp (6 samples, 0.52%)</title><rect x="243.9" y="629" width="6.2" height="15.0" fill="rgb(209,5,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="246.95" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_all (2 samples, 0.17%)</title><rect x="714.9" y="437" width="2.1" height="15.0" fill="rgb(251,99,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="717.92" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="11.0" y="1045" width="1.1" height="15.0" fill="rgb(209,89,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.03" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialOrd>::gt (27 samples, 2.35%)</title><rect x="323.0" y="645" width="27.7" height="15.0" fill="rgb(235,136,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="325.96" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="14.1" y="805" width="1.0" height="15.0" fill="rgb(249,140,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (8 samples, 0.70%)</title><rect x="725.2" y="533" width="8.2" height="15.0" fill="rgb(212,142,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.18" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Map<I, F> as core::iter::iterator::Iterator>::next (1 samples, 0.09%)</title><rect x="709.8" y="517" width="1.0" height="15.0" fill="rgb(231,182,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rallocx (217 samples, 18.87%)</title><rect x="761.1" y="581" width="222.7" height="15.0" fill="rgb(253,56,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.10" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >rallocx</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::prob_insertion (5 samples, 0.43%)</title><rect x="205.0" y="645" width="5.1" height="15.0" fill="rgb(224,58,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="207.96" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::io::fasta::IndexedReader<R>>::read_line (420 samples, 36.52%)</title><rect x="733.4" y="709" width="430.9" height="15.0" fill="rgb(241,173,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="736.39" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><bio::io::fasta::IndexedReader<R>>::read_line</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::IndexMut<I> for [T]>::index_mut (1 samples, 0.09%)</title><rect x="104.4" y="645" width="1.0" height="15.0" fill="rgb(252,2,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="107.40" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_sum_exp (354 samples, 30.78%)</title><rect x="294.2" y="661" width="363.3" height="15.0" fill="rgb(224,51,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.23" y="671.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]] (1 samples, 0.09%)</title><rect x="1164.3" y="661" width="1.1" height="15.0" fill="rgb(240,197,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.35" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1155.1" y="469" width="1.0" height="15.0" fill="rgb(248,13,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1158.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]] (10 samples, 0.87%)</title><rect x="973.5" y="245" width="10.3" height="15.0" fill="rgb(240,80,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.50" 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><test::Sink as std::io::Write>::write (1 samples, 0.09%)</title><rect x="715.9" y="421" width="1.1" height="15.0" fill="rgb(252,138,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="718.95" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::dealloc_buffer (1 samples, 0.09%)</title><rect x="17.2" y="597" width="1.0" height="15.0" fill="rgb(216,167,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.18" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (59 samples, 5.13%)</title><rect x="1012.5" y="501" width="60.5" height="15.0" fill="rgb(248,2,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1015.49" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kern..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="10.0" y="1045" width="1.0" height="15.0" fill="rgb(225,157,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref>::deref (1 samples, 0.09%)</title><rect x="161.9" y="613" width="1.0" height="15.0" fill="rgb(231,78,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.86" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (1 samples, 0.09%)</title><rect x="1187.9" y="693" width="1.1" height="15.0" fill="rgb(224,64,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.95" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Write::write_fmt (2 samples, 0.17%)</title><rect x="23.3" y="677" width="2.1" height="15.0" fill="rgb(207,89,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.34" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::impls::<impl std::io::Write for alloc::boxed::Box<W>>::write_fmt (10 samples, 0.87%)</title><rect x="713.9" y="549" width="10.3" height="15.0" fill="rgb(252,23,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.90" 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]] (1 samples, 0.09%)</title><rect x="1165.4" y="373" width="1.0" height="15.0" fill="rgb(212,68,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="10.0" y="1029" width="1.0" height="15.0" fill="rgb(238,110,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="964.3" y="277" width="1.0" height="15.0" fill="rgb(237,211,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="533" width="1.0" height="15.0" fill="rgb(228,221,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="565" width="1.0" height="15.0" fill="rgb(208,188,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" 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>test::test_main_static (1 samples, 0.09%)</title><rect x="13.1" y="981" width="1.0" height="15.0" fill="rgb(246,170,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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::Sink as std::io::Write>::write (3 samples, 0.26%)</title><rect x="679.0" y="181" width="3.1" height="15.0" fill="rgb(206,178,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.01" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln_1p (30 samples, 2.61%)</title><rect x="263.4" y="645" width="30.8" height="15.0" fill="rgb(217,102,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.44" y="655.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>test::run_test::run_test_inner::{{closure}} (1,145 samples, 99.57%)</title><rect x="15.1" y="917" width="1174.9" height="15.0" fill="rgb(210,139,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="927.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>test::run_tests_console::callback (1 samples, 0.09%)</title><rect x="13.1" y="901" width="1.0" height="15.0" fill="rgb(231,223,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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>arena_unstash_purged (18 samples, 1.57%)</title><rect x="965.3" y="405" width="18.5" height="15.0" fill="rgb(221,217,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.29" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (42 samples, 3.65%)</title><rect x="666.7" y="517" width="43.1" height="15.0" fill="rgb(250,33,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><all..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::Ord::min (6 samples, 0.52%)</title><rect x="1156.1" y="677" width="6.2" height="15.0" fill="rgb(210,109,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1159.14" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><test::Sink as std::io::Write>::write (8 samples, 0.70%)</title><rect x="686.2" y="133" width="8.2" height="15.0" fill="rgb(249,76,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.19" 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>arena_purge_to_limit (9 samples, 0.78%)</title><rect x="724.2" y="693" width="9.2" height="15.0" fill="rgb(230,219,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::reserve (1 samples, 0.09%)</title><rect x="1187.9" y="661" width="1.1" height="15.0" fill="rgb(215,41,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.95" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (3 samples, 0.26%)</title><rect x="961.2" y="293" width="3.1" height="15.0" fill="rgb(225,14,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.18" 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>std::panicking::try::do_call (1,145 samples, 99.57%)</title><rect x="15.1" y="981" width="1174.9" height="15.0" fill="rgb(218,49,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="991.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>je_isqalloc (19 samples, 1.65%)</title><rect x="964.3" y="533" width="19.5" height="15.0" fill="rgb(232,28,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::ln_1m_exp (1 samples, 0.09%)</title><rect x="665.7" y="645" width="1.0" height="15.0" fill="rgb(247,152,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="668.67" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test::run_tests (1 samples, 0.09%)</title><rect x="13.1" y="933" width="1.0" height="15.0" fill="rgb(253,134,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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>libprosic::model::evidence::reads::ReadEmission::particular_miscall (8 samples, 0.70%)</title><rect x="196.7" y="629" width="8.3" height="15.0" fill="rgb(222,1,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="199.75" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="14.1" y="773" width="1.0" height="15.0" fill="rgb(215,2,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" 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><f64 as core::ops::arith::Add>::add (1 samples, 0.09%)</title><rect x="160.8" y="597" width="1.1" height="15.0" fill="rgb(244,18,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.83" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (5 samples, 0.43%)</title><rect x="728.3" y="469" width="5.1" height="15.0" fill="rgb(231,215,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="731.26" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::fold::{{closure}} (118 samples, 10.26%)</title><rect x="350.7" y="597" width="121.0" height="15.0" fill="rgb(221,40,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.66" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::iter::En..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index (4 samples, 0.35%)</title><rect x="90.0" y="629" width="4.1" height="15.0" fill="rgb(207,38,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="93.03" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_rust_maybe_catch_panic (1 samples, 0.09%)</title><rect x="13.1" y="1045" width="1.0" height="15.0" fill="rgb(248,140,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (18 samples, 1.57%)</title><rect x="965.3" y="325" width="18.5" height="15.0" fill="rgb(212,53,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.29" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::option::Option<T>>::map (1 samples, 0.09%)</title><rect x="709.8" y="501" width="1.0" height="15.0" fill="rgb(246,228,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>itertools::Itertools::collect_vec (43 samples, 3.74%)</title><rect x="666.7" y="741" width="44.1" height="15.0" fill="rgb(244,224,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >iter..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (3 samples, 0.26%)</title><rect x="961.2" y="309" width="3.1" height="15.0" fill="rgb(208,213,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.18" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="89.0" y="629" width="1.0" height="15.0" fill="rgb(242,126,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="92.01" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hts_idx_load (1 samples, 0.09%)</title><rect x="1189.0" y="741" width="1.0" height="15.0" fill="rgb(228,221,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.97" 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>[libgs....0] (1 samples, 0.09%)</title><rect x="21.3" y="501" width="1.0" height="15.0" fill="rgb(212,200,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" 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::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::joint_prob (43 samples, 3.74%)</title><rect x="666.7" y="757" width="44.1" height="15.0" fill="rgb(220,79,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><lib..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (31 samples, 2.70%)</title><rect x="1124.3" y="613" width="31.8" height="15.0" fill="rgb(214,108,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1127.33" 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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1072.0" y="165" width="1.0" height="15.0" fill="rgb(226,179,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.00" 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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1072.0" y="293" width="1.0" height="15.0" fill="rgb(215,62,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.00" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::IterMut<'a, T> as core::iter::iterator::Iterator>::next (4 samples, 0.35%)</title><rect x="147.5" y="661" width="4.1" height="15.0" fill="rgb(215,162,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="150.50" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>read (1 samples, 0.09%)</title><rect x="1165.4" y="629" width="1.0" height="15.0" fill="rgb(207,204,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Formatter::write_formatted_parts::write_bytes (2 samples, 0.17%)</title><rect x="717.0" y="453" width="2.0" height="15.0" fill="rgb(232,14,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.97" 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]] (23 samples, 2.00%)</title><rect x="1049.4" y="437" width="23.6" height="15.0" fill="rgb(227,226,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1052.43" 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 (1 samples, 0.09%)</title><rect x="162.9" y="613" width="1.0" height="15.0" fill="rgb(221,43,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.89" 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>hts_idx_load_core (1 samples, 0.09%)</title><rect x="1189.0" y="693" width="1.0" height="15.0" fill="rgb(212,33,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.97" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::sync::mutex::Mutex<T>>::lock (3 samples, 0.26%)</title><rect x="697.5" y="101" width="3.1" height="15.0" fill="rgb(227,218,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.48" 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>[lib....1] (3 samples, 0.26%)</title><rect x="18.2" y="549" width="3.1" height="15.0" fill="rgb(249,24,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.21" 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]] (1 samples, 0.09%)</title><rect x="10.0" y="1125" width="1.0" height="15.0" fill="rgb(236,115,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_run_to_miscelm (1 samples, 0.09%)</title><rect x="16.2" y="581" width="1.0" height="15.0" fill="rgb(231,192,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" 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>je_arena_maybe_purge (19 samples, 1.65%)</title><rect x="964.3" y="453" width="19.5" height="15.0" fill="rgb(251,60,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.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><f64 as bio::utils::fastexp::FastExp<f64>>::fastexp (7 samples, 0.61%)</title><rect x="256.3" y="645" width="7.1" height="15.0" fill="rgb(247,129,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="259.26" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::stdio::print_to (33 samples, 2.87%)</title><rect x="675.9" y="309" width="33.9" height="15.0" fill="rgb(219,31,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="678.93" y="319.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><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (43 samples, 3.74%)</title><rect x="666.7" y="549" width="44.1" height="15.0" fill="rgb(215,227,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><all..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (5 samples, 0.43%)</title><rect x="1067.9" y="341" width="5.1" height="15.0" fill="rgb(234,224,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1070.90" 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>arena_unstash_purged (8 samples, 0.70%)</title><rect x="725.2" y="677" width="8.2" height="15.0" fill="rgb(221,65,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.18" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="14.1" y="885" width="1.0" height="15.0" fill="rgb(243,180,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" 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>inflate_block (20 samples, 1.74%)</title><rect x="1166.4" y="693" width="20.5" height="15.0" fill="rgb(246,181,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1169.40" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Add>::add (2 samples, 0.17%)</title><rect x="198.8" y="597" width="2.1" height="15.0" fill="rgb(206,43,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="201.80" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="14.1" y="869" width="1.0" height="15.0" fill="rgb(209,44,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys_common::thread::start_thread (1,145 samples, 99.57%)</title><rect x="15.1" y="1093" width="1174.9" height="15.0" fill="rgb(232,64,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="1103.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><usize as core::slice::SliceIndex<[T]>>::index (6 samples, 0.52%)</title><rect x="181.4" y="597" width="6.1" height="15.0" fill="rgb(246,49,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="184.36" 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>_ieee754_log_avx (1 samples, 0.09%)</title><rect x="667.7" y="325" width="1.0" height="15.0" fill="rgb(228,165,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="670.72" 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>std::io::stdio::print (10 samples, 0.87%)</title><rect x="713.9" y="613" width="10.3" height="15.0" fill="rgb(205,22,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.90" 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><bio::io::fasta::IndexedReader<R>>::read_into_buffer (420 samples, 36.52%)</title><rect x="733.4" y="725" width="430.9" height="15.0" fill="rgb(232,154,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="736.39" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><bio::io::fasta::IndexedReader<R>>::read_into_buffer</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panicking::try (1,145 samples, 99.57%)</title><rect x="15.1" y="1013" width="1174.9" height="15.0" fill="rgb(252,205,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panicking::try</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="10.0" y="933" width="1.0" height="15.0" fill="rgb(229,25,14)" 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>[[kerne.allsyms]] (5 samples, 0.43%)</title><rect x="728.3" y="485" width="5.1" height="15.0" fill="rgb(252,149,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="731.26" 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::sys_common::mutex::Mutex::raw_unlock (1 samples, 0.09%)</title><rect x="718.0" y="357" width="1.0" height="15.0" fill="rgb(207,137,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="721.00" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1072.0" y="245" width="1.0" height="15.0" fill="rgb(242,45,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.00" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (65 samples, 5.65%)</title><rect x="1006.3" y="533" width="66.7" height="15.0" fill="rgb(248,167,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1009.33" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::DeletionEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_xy (11 samples, 0.96%)</title><rect x="151.6" y="661" width="11.3" height="15.0" fill="rgb(245,117,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="154.60" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="469" width="1.0" height="15.0" fill="rgb(244,176,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>log1p@plt (6 samples, 0.52%)</title><rect x="288.1" y="629" width="6.1" height="15.0" fill="rgb(224,66,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="291.07" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Sub>::sub (2 samples, 0.17%)</title><rect x="254.2" y="629" width="2.1" height="15.0" fill="rgb(210,86,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.21" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::boxed::Box<(dyn alloc::boxed::FnBox<A, Output$u3d$R> $u2b$ 'a)> as core::ops::function::FnOnce<A>>::call_once (1,145 samples, 99.57%)</title><rect x="15.1" y="1077" width="1174.9" height="15.0" fill="rgb(209,181,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="1087.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>core::num::flt2dec::strategy::grisu::format_shortest (8 samples, 0.70%)</title><rect x="701.6" y="149" width="8.2" height="15.0" fill="rgb(206,101,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="704.58" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ops::range::Range<usize> as core::slice::SliceIndex<[T]>>::index (1 samples, 0.09%)</title><rect x="694.4" y="101" width="1.0" height="15.0" fill="rgb(210,64,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="697.40" 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>core::fmt::Formatter::pad_integral::{{closure}} (1 samples, 0.09%)</title><rect x="24.4" y="533" width="1.0" height="15.0" fill="rgb(212,146,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.37" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="13.1" y="741" width="1.0" height="15.0" fill="rgb(231,58,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::sync::atomic::AtomicUsize::load (1 samples, 0.09%)</title><rect x="203.9" y="533" width="1.1" height="15.0" fill="rgb(216,9,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.93" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::range::<impl core::iter::iterator::Iterator for core::ops::range::Range<A>>::next (3 samples, 0.26%)</title><rect x="661.6" y="661" width="3.0" height="15.0" fill="rgb(218,206,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="664.57" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="724.2" y="613" width="1.0" height="15.0" fill="rgb(249,21,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" 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><f64 as bio::utils::fastexp::FastExp<f64>>::fastexp (2 samples, 0.17%)</title><rect x="670.8" y="309" width="2.1" height="15.0" fill="rgb(230,45,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="673.80" 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>std::sys::unix::mutex::Mutex::lock (3 samples, 0.26%)</title><rect x="687.2" y="85" width="3.1" height="15.0" fill="rgb(208,8,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="690.22" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="485" width="1.0" height="15.0" fill="rgb(228,143,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref>::deref::_stability (1 samples, 0.09%)</title><rect x="161.9" y="597" width="1.0" height="15.0" fill="rgb(232,125,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.86" 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>dl_map_object_deps (1 samples, 0.09%)</title><rect x="14.1" y="1061" width="1.0" height="15.0" fill="rgb(225,60,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys::unix::fs::stat (1 samples, 0.09%)</title><rect x="1164.3" y="709" width="1.1" height="15.0" fill="rgb(237,32,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.35" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="964.3" y="325" width="1.0" height="15.0" fill="rgb(238,50,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" 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>inflate_block (3 samples, 0.26%)</title><rect x="18.2" y="597" width="3.1" height="15.0" fill="rgb(226,182,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.21" 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>dl_start (1 samples, 0.09%)</title><rect x="14.1" y="1125" width="1.0" height="15.0" fill="rgb(229,83,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="10.0" y="965" width="1.0" height="15.0" fill="rgb(247,175,51)" 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><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (5 samples, 0.43%)</title><rect x="176.2" y="613" width="5.2" height="15.0" fill="rgb(225,59,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="179.23" 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>init (1 samples, 0.09%)</title><rect x="12.1" y="1141" width="1.0" height="15.0" fill="rgb(231,3,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.05" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Add>::add (4 samples, 0.35%)</title><rect x="250.1" y="629" width="4.1" height="15.0" fill="rgb(230,63,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.10" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::le (1 samples, 0.09%)</title><rect x="249.1" y="613" width="1.0" height="15.0" fill="rgb(217,78,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.08" 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><lazy_static::lazy::Lazy<T>>::get (4 samples, 0.35%)</title><rect x="200.9" y="581" width="4.1" height="15.0" fill="rgb(251,56,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="203.85" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln_1p (3 samples, 0.26%)</title><rect x="672.9" y="309" width="3.0" height="15.0" fill="rgb(215,99,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="675.85" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (6 samples, 0.52%)</title><rect x="1066.9" y="357" width="6.1" height="15.0" fill="rgb(250,220,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.87" 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::io::impls::<impl std::io::Write for alloc::vec::Vec<u8>>::write (4 samples, 0.35%)</title><rect x="690.3" y="117" width="4.1" height="15.0" fill="rgb(232,3,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="693.30" 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>_libc_sigaction (1 samples, 0.09%)</title><rect x="12.1" y="1109" width="1.0" height="15.0" fill="rgb(227,12,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.05" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (12 samples, 1.04%)</title><rect x="1060.7" y="389" width="12.3" height="15.0" fill="rgb(229,92,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.71" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1072.0" y="117" width="1.0" height="15.0" fill="rgb(211,147,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.00" 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<'a> as core::ops::index::Index<usize>>::index (5 samples, 0.43%)</title><rect x="154.7" y="629" width="5.1" height="15.0" fill="rgb(216,59,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="157.68" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln (1 samples, 0.09%)</title><rect x="22.3" y="549" width="1.0" height="15.0" fill="rgb(251,94,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.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>[[kerne.allsyms]] (10 samples, 0.87%)</title><rect x="973.5" y="229" width="10.3" height="15.0" fill="rgb(251,161,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.50" 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::deref::Deref>::deref (1 samples, 0.09%)</title><rect x="196.7" y="597" width="1.1" height="15.0" fill="rgb(254,112,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="199.75" 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><F as alloc::boxed::FnBox<A>>::call_box (1,145 samples, 99.57%)</title><rect x="15.1" y="1061" width="1174.9" height="15.0" fill="rgb(214,201,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="1071.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>_GI___clone (1 samples, 0.09%)</title><rect x="11.0" y="1141" width="1.1" height="15.0" fill="rgb(226,50,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.03" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::copy_from_slice (1 samples, 0.09%)</title><rect x="13.1" y="789" width="1.0" height="15.0" fill="rgb(247,56,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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>_log (1 samples, 0.09%)</title><rect x="668.7" y="325" width="1.1" height="15.0" fill="rgb(224,199,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.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>core::num::diy_float::Fp::mul (1 samples, 0.09%)</title><rect x="706.7" y="117" width="1.0" height="15.0" fill="rgb(237,13,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.71" 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><std::thread::local::LocalKey<T>>::try_with (10 samples, 0.87%)</title><rect x="713.9" y="581" width="10.3" height="15.0" fill="rgb(245,183,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.90" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="517" width="1.0" height="15.0" fill="rgb(230,163,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" 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::alloc::Global as core::alloc::Alloc>::alloc (1 samples, 0.09%)</title><rect x="1187.9" y="613" width="1.1" height="15.0" fill="rgb(246,92,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.95" 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><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::map::{{closure}} (13 samples, 1.13%)</title><rect x="710.8" y="709" width="13.4" height="15.0" fill="rgb(228,149,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.82" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::fragments::IndelEvidence::prob_sample_alt::{{closure}} (2 samples, 0.17%)</title><rect x="21.3" y="693" width="2.0" height="15.0" fill="rgb(206,49,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bam_readrec (3 samples, 0.26%)</title><rect x="18.2" y="661" width="3.1" height="15.0" fill="rgb(235,34,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.21" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::float::float_to_decimal_common_shortest (10 samples, 0.87%)</title><rect x="713.9" y="485" width="10.3" height="15.0" fill="rgb(241,169,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.90" 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::fmt::float::float_to_decimal_common_shortest (26 samples, 2.26%)</title><rect x="683.1" y="197" width="26.7" height="15.0" fill="rgb(209,214,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="686.11" y="207.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>memcpy (1 samples, 0.09%)</title><rect x="1186.9" y="709" width="1.0" height="15.0" fill="rgb(212,21,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.92" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_sse2_unaligned_erms (1 samples, 0.09%)</title><rect x="1186.9" y="693" width="1.0" height="15.0" fill="rgb(229,16,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.92" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys_common::mutex::Mutex::raw_lock (1 samples, 0.09%)</title><rect x="717.0" y="373" width="1.0" height="15.0" fill="rgb(214,138,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.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>bio::stats::probs::LogProb::ln_add_exp (82 samples, 7.13%)</title><rect x="210.1" y="661" width="84.1" height="15.0" fill="rgb(212,189,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="213.09" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stat..</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.17%)</title><rect x="152.6" y="613" width="2.1" height="15.0" fill="rgb(246,120,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="155.63" 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>_GI___pthread_mutex_lock (3 samples, 0.26%)</title><rect x="687.2" y="69" width="3.1" height="15.0" fill="rgb(244,214,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="690.22" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (5 samples, 0.43%)</title><rect x="728.3" y="501" width="5.1" height="15.0" fill="rgb(254,171,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="731.26" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="13.1" y="725" width="1.0" height="15.0" fill="rgb(209,2,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::diy_float::Fp::mul (1 samples, 0.09%)</title><rect x="722.1" y="405" width="1.0" height="15.0" fill="rgb(213,36,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="725.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>[[kerne.allsyms]] (98 samples, 8.52%)</title><rect x="863.7" y="485" width="100.6" height="15.0" fill="rgb(233,6,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.70" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne.alls..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::collect (2 samples, 0.17%)</title><rect x="21.3" y="661" width="2.0" height="15.0" fill="rgb(248,96,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_isdalloct (19 samples, 1.65%)</title><rect x="964.3" y="517" width="19.5" height="15.0" fill="rgb(253,155,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" 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::stats::probs::LogProb::ln_one_minus_exp (1 samples, 0.09%)</title><rect x="665.7" y="661" width="1.0" height="15.0" fill="rgb(209,161,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="668.67" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="14.1" y="757" width="1.0" height="15.0" fill="rgb(223,218,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" 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::f64::<impl f64>::ln_1p (150 samples, 13.04%)</title><rect x="503.5" y="645" width="154.0" height="15.0" fill="rgb(237,200,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.55" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::f64::<impl f64..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_fmt (10 samples, 0.87%)</title><rect x="713.9" y="533" width="10.3" height="15.0" fill="rgb(205,218,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.90" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::stdio::print (1 samples, 0.09%)</title><rect x="709.8" y="357" width="1.0" height="15.0" fill="rgb(215,171,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_libc_read (1 samples, 0.09%)</title><rect x="1165.4" y="613" width="1.0" height="15.0" fill="rgb(234,137,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" 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>_memcpy_sse2_unaligned_erms (1 samples, 0.09%)</title><rect x="681.1" y="149" width="1.0" height="15.0" fill="rgb(238,40,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="684.06" 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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="15.1" y="821" width="1.1" height="15.0" fill="rgb(209,71,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" 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>memcpy@plt (2 samples, 0.17%)</title><rect x="1162.3" y="693" width="2.0" height="15.0" fill="rgb(226,93,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.30" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::le (3 samples, 0.26%)</title><rect x="347.6" y="613" width="3.1" height="15.0" fill="rgb(239,85,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.58" 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::panicking::try (1 samples, 0.09%)</title><rect x="13.1" y="1061" width="1.0" height="15.0" fill="rgb(207,199,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Formatter::run (2 samples, 0.17%)</title><rect x="23.3" y="645" width="2.1" height="15.0" fill="rgb(217,163,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.34" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><test::Sink as std::io::Write>::write (2 samples, 0.17%)</title><rect x="717.0" y="405" width="2.0" height="15.0" fill="rgb(244,218,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.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>bgzf_uncompress (3 samples, 0.26%)</title><rect x="18.2" y="581" width="3.1" height="15.0" fill="rgb(221,186,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.21" 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::fmt::Formatter::run (1 samples, 0.09%)</title><rect x="709.8" y="245" width="1.0" height="15.0" fill="rgb(207,119,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys::unix::mutex::Mutex::unlock (2 samples, 0.17%)</title><rect x="679.0" y="117" width="2.1" height="15.0" fill="rgb(253,83,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.01" 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::ptr::drop_in_place (1 samples, 0.09%)</title><rect x="17.2" y="629" width="1.0" height="15.0" fill="rgb(213,155,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.18" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (71 samples, 6.17%)</title><rect x="1000.2" y="597" width="72.8" height="15.0" fill="rgb(221,153,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1003.17" y="607.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::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::joint_prob::{{closure}} (43 samples, 3.74%)</title><rect x="666.7" y="613" width="44.1" height="15.0" fill="rgb(221,190,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><lib..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_pages_purge (18 samples, 1.57%)</title><rect x="965.3" y="373" width="18.5" height="15.0" fill="rgb(238,14,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.29" 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><bio::stats::probs::LogProb as core::cmp::PartialEq>::eq (1 samples, 0.09%)</title><rect x="321.9" y="645" width="1.1" height="15.0" fill="rgb(206,139,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="324.93" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (68 samples, 5.91%)</title><rect x="1003.3" y="581" width="69.7" height="15.0" fill="rgb(217,197,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1006.25" y="591.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>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::partial_cmp (26 samples, 2.26%)</title><rect x="324.0" y="629" width="26.7" height="15.0" fill="rgb(212,65,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="326.98" y="639.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>core::num::flt2dec::strategy::grisu::format_shortest (5 samples, 0.43%)</title><rect x="719.0" y="437" width="5.2" height="15.0" fill="rgb(228,40,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="722.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>inflate (3 samples, 0.26%)</title><rect x="18.2" y="565" width="3.1" height="15.0" fill="rgb(208,179,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.21" 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>arena_purge_stashed (1 samples, 0.09%)</title><rect x="964.3" y="405" width="1.0" height="15.0" fill="rgb(241,208,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (1 samples, 0.09%)</title><rect x="1187.9" y="677" width="1.1" height="15.0" fill="rgb(212,221,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.95" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &'a mut F>::call_once (43 samples, 3.74%)</title><rect x="666.7" y="629" width="44.1" height="15.0" fill="rgb(232,143,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::joint_prob::{{closure}}::{{closure}} (42 samples, 3.65%)</title><rect x="666.7" y="421" width="43.1" height="15.0" fill="rgb(236,72,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><lib..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (37 samples, 3.22%)</title><rect x="926.3" y="389" width="38.0" height="15.0" fill="rgb(251,128,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="929.30" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[k..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (8 samples, 0.70%)</title><rect x="725.2" y="581" width="8.2" height="15.0" fill="rgb(209,173,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.18" 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::fmt::write (1 samples, 0.09%)</title><rect x="709.8" y="261" width="1.0" height="15.0" fill="rgb(224,169,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" 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>[[kerne.allsyms]] (3 samples, 0.26%)</title><rect x="961.2" y="325" width="3.1" height="15.0" fill="rgb(243,52,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.18" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1155.1" y="517" width="1.0" height="15.0" fill="rgb(247,93,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1158.11" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="11.0" y="1061" width="1.1" height="15.0" fill="rgb(253,79,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.03" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="964.3" y="357" width="1.0" height="15.0" fill="rgb(224,20,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="14.1" y="933" width="1.0" height="15.0" fill="rgb(226,32,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::diy_float::Fp::normalize (1 samples, 0.09%)</title><rect x="707.7" y="117" width="1.1" height="15.0" fill="rgb(246,138,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="710.74" 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><F as alloc::boxed::FnBox<A>>::call_box (1,144 samples, 99.48%)</title><rect x="16.2" y="853" width="1173.8" height="15.0" fill="rgb(251,178,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="863.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>je_arena_chunk_dalloc_huge (19 samples, 1.65%)</title><rect x="964.3" y="469" width="19.5" height="15.0" fill="rgb(231,0,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bam_read1 (3 samples, 0.26%)</title><rect x="18.2" y="645" width="3.1" height="15.0" fill="rgb(248,35,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.21" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="11.0" y="1093" width="1.1" height="15.0" fill="rgb(221,229,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.03" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fd_read (1 samples, 0.09%)</title><rect x="1165.4" y="645" width="1.0" height="15.0" fill="rgb(217,190,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::sync::mutex::MutexGuard<'mutex, T>>::new (1 samples, 0.09%)</title><rect x="697.5" y="85" width="1.0" height="15.0" fill="rgb(207,144,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.48" 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><libprosic::model::PairPileup<'a, A, B, P>>::case_likelihood (1 samples, 0.09%)</title><rect x="709.8" y="437" width="1.0" height="15.0" fill="rgb(245,69,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="325" width="1.0" height="15.0" fill="rgb(238,52,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI_madvise (18 samples, 1.57%)</title><rect x="965.3" y="357" width="18.5" height="15.0" fill="rgb(208,187,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.29" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1072.0" y="277" width="1.0" height="15.0" fill="rgb(227,166,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.00" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (6 samples, 0.52%)</title><rect x="727.2" y="517" width="6.2" height="15.0" fill="rgb(243,94,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="730.23" 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::slice::<impl [T]>::iter (1 samples, 0.09%)</title><rect x="502.5" y="645" width="1.0" height="15.0" fill="rgb(237,141,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.52" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::Seq::encoded_base (2 samples, 0.17%)</title><rect x="157.8" y="613" width="2.0" height="15.0" fill="rgb(231,62,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="160.76" 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::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (1,145 samples, 99.57%)</title><rect x="15.1" y="965" width="1174.9" height="15.0" fill="rgb(231,29,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="975.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>std::rt::lang_start_internal::{{closure}} (1 samples, 0.09%)</title><rect x="13.1" y="1013" width="1.0" height="15.0" fill="rgb(231,35,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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>rust_htslib::bam::IndexedReader::new (1 samples, 0.09%)</title><rect x="1189.0" y="757" width="1.0" height="15.0" fill="rgb(224,90,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.97" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI_madvise (1 samples, 0.09%)</title><rect x="724.2" y="645" width="1.0" height="15.0" fill="rgb(216,141,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::is_empty (3 samples, 0.26%)</title><rect x="499.4" y="645" width="3.1" height="15.0" fill="rgb(233,61,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.44" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::le (3 samples, 0.26%)</title><rect x="347.6" y="597" width="3.1" height="15.0" fill="rgb(246,201,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.58" 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::io::stdio::print_to::{{closure}} (33 samples, 2.87%)</title><rect x="675.9" y="277" width="33.9" height="15.0" fill="rgb(247,9,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="678.93" y="287.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_pages_purge (8 samples, 0.70%)</title><rect x="725.2" y="645" width="8.2" height="15.0" fill="rgb(248,192,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.18" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="11.0" y="1125" width="1.1" height="15.0" fill="rgb(233,63,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.03" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1072.0" y="133" width="1.0" height="15.0" fill="rgb(248,157,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.00" 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::slice::hack::to_vec (1 samples, 0.09%)</title><rect x="13.1" y="837" width="1.0" height="15.0" fill="rgb(216,11,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (8 samples, 0.70%)</title><rect x="81.8" y="645" width="8.2" height="15.0" fill="rgb(239,198,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="84.83" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test09 (1,145 samples, 99.57%)</title><rect x="15.1" y="1157" width="1174.9" height="15.0" fill="rgb(238,32,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="1167.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>libprosic::model::evidence::observation::Evidence::insert_size (2 samples, 0.17%)</title><rect x="23.3" y="709" width="2.1" height="15.0" fill="rgb(208,74,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.34" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (3 samples, 0.26%)</title><rect x="1069.9" y="325" width="3.1" height="15.0" fill="rgb(209,106,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1072.95" 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><std::io::Write::write_fmt::Adaptor<'a, T> as core::fmt::Write>::write_str (5 samples, 0.43%)</title><rect x="695.4" y="149" width="5.2" height="15.0" fill="rgb(215,51,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="698.43" 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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="421" width="1.0" height="15.0" fill="rgb(244,21,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" 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><bio::io::fasta::IndexedReader<R>>::read (420 samples, 36.52%)</title><rect x="733.4" y="741" width="430.9" height="15.0" fill="rgb(235,99,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="736.39" y="751.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><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (11 samples, 0.96%)</title><rect x="176.2" y="629" width="11.3" height="15.0" fill="rgb(209,37,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="179.23" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="724.2" y="597" width="1.0" height="15.0" fill="rgb(241,59,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" 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>start (2 samples, 0.17%)</title><rect x="13.1" y="1141" width="2.0" height="15.0" fill="rgb(232,108,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>openaux (1 samples, 0.09%)</title><rect x="14.1" y="1029" width="1.0" height="15.0" fill="rgb(254,40,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_chunk_dalloc_huge (9 samples, 0.78%)</title><rect x="724.2" y="741" width="9.2" height="15.0" fill="rgb(206,59,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" 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>bio::stats::probs::LogProb::ln_simpsons_integrate_exp::{{closure}} (42 samples, 3.65%)</title><rect x="666.7" y="437" width="43.1" height="15.0" fill="rgb(211,152,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio:..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (8 samples, 0.70%)</title><rect x="725.2" y="597" width="8.2" height="15.0" fill="rgb(207,170,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.18" 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 (144 samples, 12.52%)</title><rect x="503.5" y="629" width="147.8" height="15.0" fill="rgb(232,99,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.55" y="639.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><alloc::raw_vec::RawVec<T, A>>::current_layout (1 samples, 0.09%)</title><rect x="17.2" y="581" width="1.0" height="15.0" fill="rgb(209,218,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.18" 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::fmt::num::<impl core::fmt::Display for u32>::fmt (1 samples, 0.09%)</title><rect x="24.4" y="565" width="1.0" height="15.0" fill="rgb(244,31,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.37" 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::thread::local::LocalKey<T>>::try_with (33 samples, 2.87%)</title><rect x="675.9" y="293" width="33.9" height="15.0" fill="rgb(241,154,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="678.93" y="303.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>std::sync::once::Once::call_once (1 samples, 0.09%)</title><rect x="161.9" y="565" width="1.0" height="15.0" fill="rgb(230,180,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.86" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___pthread_mutex_lock (2 samples, 0.17%)</title><rect x="698.5" y="53" width="2.1" height="15.0" fill="rgb(244,88,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.50" 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>bio::stats::probs::LogProb::ln_zero (4 samples, 0.35%)</title><rect x="657.5" y="661" width="4.1" height="15.0" fill="rgb(243,139,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="660.46" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>crc32_z (1 samples, 0.09%)</title><rect x="1185.9" y="677" width="1.0" height="15.0" fill="rgb(228,14,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.90" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Map<I, F> as core::iter::iterator::Iterator>::next (43 samples, 3.74%)</title><rect x="666.7" y="661" width="44.1" height="15.0" fill="rgb(216,8,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><cor..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (8 samples, 0.70%)</title><rect x="725.2" y="613" width="8.2" height="15.0" fill="rgb(226,80,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.18" 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><usize as core::slice::SliceIndex<[T]>>::index_mut (1 samples, 0.09%)</title><rect x="104.4" y="629" width="1.0" height="15.0" fill="rgb(216,1,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="107.40" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for u64>::le (5 samples, 0.43%)</title><rect x="1157.2" y="661" width="5.1" height="15.0" fill="rgb(213,13,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1160.17" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::call::pairwise::call (1,119 samples, 97.30%)</title><rect x="17.2" y="773" width="1148.2" height="15.0" fill="rgb(225,160,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.18" y="783.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>[[kerne.allsyms]] (3 samples, 0.26%)</title><rect x="980.7" y="181" width="3.1" height="15.0" fill="rgb(233,52,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="983.68" 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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1164.3" y="677" width="1.1" height="15.0" fill="rgb(211,55,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.35" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___clone (1,145 samples, 99.57%)</title><rect x="15.1" y="1141" width="1174.9" height="15.0" fill="rgb(238,101,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="1151.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::cmp::min (1 samples, 0.09%)</title><rect x="990.9" y="677" width="1.1" height="15.0" fill="rgb(230,217,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="993.94" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys::unix::thread::Thread::new::thread_start (1,145 samples, 99.57%)</title><rect x="15.1" y="1109" width="1174.9" height="15.0" fill="rgb(239,219,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="1119.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>std::fs::metadata (1 samples, 0.09%)</title><rect x="1164.3" y="725" width="1.1" height="15.0" fill="rgb(215,90,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.35" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gsl_cdf_ugaussian_P (1 samples, 0.09%)</title><rect x="21.3" y="517" width="1.0" height="15.0" fill="rgb(222,50,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="10.0" y="1013" width="1.0" height="15.0" fill="rgb(248,94,0)" 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>dl_map_object_from_fd (1 samples, 0.09%)</title><rect x="14.1" y="997" width="1.0" height="15.0" fill="rgb(222,4,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (55 samples, 4.78%)</title><rect x="1016.6" y="469" width="56.4" height="15.0" fill="rgb(233,79,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1019.59" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ker..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::sync::mutex::Mutex<T>>::lock (3 samples, 0.26%)</title><rect x="687.2" y="117" width="3.1" height="15.0" fill="rgb(233,14,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="690.22" 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>bgzf_uncompress (19 samples, 1.65%)</title><rect x="1166.4" y="677" width="19.5" height="15.0" fill="rgb(231,147,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1169.40" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (43 samples, 3.74%)</title><rect x="666.7" y="693" width="44.1" height="15.0" fill="rgb(225,159,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><all..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (51 samples, 4.43%)</title><rect x="911.9" y="421" width="52.4" height="15.0" fill="rgb(231,152,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.93" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ker..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve (1 samples, 0.09%)</title><rect x="1187.9" y="645" width="1.1" height="15.0" fill="rgb(251,32,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.95" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><&'a bio::stats::probs::LogProb as core::ops::arith::Sub<bio::stats::probs::LogProb>>::sub (4 samples, 0.35%)</title><rect x="371.2" y="549" width="4.1" height="15.0" fill="rgb(241,94,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.18" 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_idalloctm (1 samples, 0.09%)</title><rect x="16.2" y="693" width="1.0" height="15.0" fill="rgb(219,191,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (58 samples, 5.04%)</title><rect x="1013.5" y="485" width="59.5" height="15.0" fill="rgb(254,73,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1016.51" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kern..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="11.0" y="1077" width="1.1" height="15.0" fill="rgb(216,184,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.03" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::min (6 samples, 0.52%)</title><rect x="1156.1" y="693" width="6.2" height="15.0" fill="rgb(249,147,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1159.14" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1155.1" y="437" width="1.0" height="15.0" fill="rgb(214,32,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1158.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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="724.2" y="629" width="1.0" height="15.0" fill="rgb(229,164,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::sync::atomic::atomic_load (1 samples, 0.09%)</title><rect x="161.9" y="517" width="1.0" height="15.0" fill="rgb(238,81,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.86" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys::unix::mutex::Mutex::lock (2 samples, 0.17%)</title><rect x="698.5" y="69" width="2.1" height="15.0" fill="rgb(233,55,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.50" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (29 samples, 2.52%)</title><rect x="1126.4" y="597" width="29.7" height="15.0" fill="rgb(225,218,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1129.38" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>all (1,150 samples, 100%)</title><rect x="10.0" y="1173" width="1180.0" height="15.0" fill="rgb(210,164,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys::unix::mutex::Mutex::unlock (1 samples, 0.09%)</title><rect x="718.0" y="341" width="1.0" height="15.0" fill="rgb(214,92,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="721.00" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::buffered::BufReader<R> as std::io::BufRead>::fill_buf (82 samples, 7.13%)</title><rect x="992.0" y="693" width="84.1" height="15.0" fill="rgb(226,124,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="994.97" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><std::io:..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="15.1" y="853" width="1.1" height="15.0" fill="rgb(212,193,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" 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::f64::<impl f64>::classify (1 samples, 0.09%)</title><rect x="700.6" y="133" width="1.0" height="15.0" fill="rgb(215,21,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="703.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::fmt::write (10 samples, 0.87%)</title><rect x="713.9" y="517" width="10.3" height="15.0" fill="rgb(234,78,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.90" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="10.0" y="1141" width="1.0" height="15.0" fill="rgb(219,52,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_ieee754_log_avx (1 samples, 0.09%)</title><rect x="22.3" y="501" width="1.0" height="15.0" fill="rgb(220,157,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.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>_libc_start_main (1 samples, 0.09%)</title><rect x="13.1" y="1125" width="1.0" height="15.0" fill="rgb(247,62,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::fragments::IndelEvidence::pmf (1 samples, 0.09%)</title><rect x="21.3" y="549" width="1.0" height="15.0" fill="rgb(213,149,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" 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>libprosic::model::likelihood::LatentVariableModel::likelihood_observation_case_control (42 samples, 3.65%)</title><rect x="666.7" y="341" width="43.1" height="15.0" fill="rgb(230,145,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libp..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_sse2_unaligned_erms (78 samples, 6.78%)</title><rect x="1076.1" y="693" width="80.0" height="15.0" fill="rgb(231,14,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.10" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_memcpy_s..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::Write::write_fmt::Adaptor<'a, T> as core::fmt::Write>::write_str (2 samples, 0.17%)</title><rect x="714.9" y="453" width="2.1" height="15.0" fill="rgb(211,50,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="717.92" 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::ops::function::impls::<impl core::ops::function::FnOnce<A> for &'a mut F>::call_once (1 samples, 0.09%)</title><rect x="709.8" y="485" width="1.0" height="15.0" fill="rgb(251,151,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_add_exp (5 samples, 0.43%)</title><rect x="670.8" y="325" width="5.1" height="15.0" fill="rgb(212,31,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="673.80" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test::test_main (1 samples, 0.09%)</title><rect x="13.1" y="965" width="1.0" height="15.0" fill="rgb(252,213,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" 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>log1p@plt (1 samples, 0.09%)</title><rect x="656.4" y="629" width="1.1" height="15.0" fill="rgb(222,9,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="659.43" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>arena_maybe_purge_ratio (19 samples, 1.65%)</title><rect x="964.3" y="437" width="19.5" height="15.0" fill="rgb(237,142,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.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>core::fmt::write (33 samples, 2.87%)</title><rect x="675.9" y="229" width="33.9" height="15.0" fill="rgb(248,60,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="678.93" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_all (4 samples, 0.35%)</title><rect x="678.0" y="197" width="4.1" height="15.0" fill="rgb(213,82,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="680.98" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::fold::{{closure}} (118 samples, 10.26%)</title><rect x="350.7" y="581" width="121.0" height="15.0" fill="rgb(208,92,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.66" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::iter::Fi..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1072.0" y="229" width="1.0" height="15.0" fill="rgb(208,48,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.00" 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>libprosic::model::sample::Sample::fragment_observation (629 samples, 54.70%)</title><rect x="21.3" y="725" width="645.4" height="15.0" fill="rgb(253,143,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" y="735.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>[[kerne.allsyms]] (67 samples, 5.83%)</title><rect x="1004.3" y="565" width="68.7" height="15.0" fill="rgb(220,97,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1007.28" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hts_itr_next (3 samples, 0.26%)</title><rect x="18.2" y="677" width="3.1" height="15.0" fill="rgb(254,221,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.21" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_sse2_unaligned_erms (3 samples, 0.26%)</title><rect x="691.3" y="101" width="3.1" height="15.0" fill="rgb(247,26,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.32" 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>[[kerne.allsyms]] (71 samples, 6.17%)</title><rect x="1000.2" y="613" width="72.8" height="15.0" fill="rgb(250,117,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1003.17" y="623.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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1164.3" y="629" width="1.1" height="15.0" fill="rgb(216,173,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.35" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib-22c59253696 (5 samples, 0.43%)</title><rect x="10.0" y="1157" width="5.1" height="15.0" fill="rgb(248,164,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::offset (1 samples, 0.09%)</title><rect x="494.3" y="581" width="1.0" height="15.0" fill="rgb(227,40,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="497.31" 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>_GI___pthread_mutex_unlock (2 samples, 0.17%)</title><rect x="679.0" y="101" width="2.1" height="15.0" fill="rgb(254,138,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.01" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_log1p (1 samples, 0.09%)</title><rect x="669.8" y="325" width="1.0" height="15.0" fill="rgb(240,124,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="672.77" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_observation_case_control (13 samples, 1.13%)</title><rect x="710.8" y="629" width="13.4" height="15.0" fill="rgb(214,60,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.82" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::fragments::IndelEvidence::prob_sample_alt (2 samples, 0.17%)</title><rect x="21.3" y="709" width="2.0" height="15.0" fill="rgb(214,140,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref>::deref (4 samples, 0.35%)</title><rect x="200.9" y="613" width="4.1" height="15.0" fill="rgb(228,192,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="203.85" 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><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::nth::{{closure}} (2 samples, 0.17%)</title><rect x="496.4" y="597" width="2.0" height="15.0" fill="rgb(239,187,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.37" 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>libprosic::model::evidence::reads::ReadEmission::prob_match_mismatch (11 samples, 0.96%)</title><rect x="151.6" y="645" width="11.3" height="15.0" fill="rgb(252,182,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="154.60" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Add>::add (19 samples, 1.65%)</title><rect x="128.0" y="645" width="19.5" height="15.0" fill="rgb(238,17,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="131.00" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::pairhmm::PairHMM::prob_related (623 samples, 54.17%)</title><rect x="25.4" y="677" width="639.2" height="15.0" fill="rgb(248,20,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.39" y="687.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><std::collections::hash::table::RawTable<K, V>>::rev_drop_buckets (1 samples, 0.09%)</title><rect x="17.2" y="677" width="1.0" height="15.0" fill="rgb(212,63,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.18" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_mmap64 (1 samples, 0.09%)</title><rect x="14.1" y="965" width="1.0" height="15.0" fill="rgb(244,176,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (3 samples, 0.26%)</title><rect x="207.0" y="613" width="3.1" height="15.0" fill="rgb(250,33,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.01" 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><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (1 samples, 0.09%)</title><rect x="1187.9" y="709" width="1.1" height="15.0" fill="rgb(205,111,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.95" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (5 samples, 0.43%)</title><rect x="205.0" y="629" width="5.1" height="15.0" fill="rgb(222,153,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="207.96" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_pthread_initialize_minimal_internal (1 samples, 0.09%)</title><rect x="12.1" y="1125" width="1.0" height="15.0" fill="rgb(244,85,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.05" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="14.1" y="853" width="1.0" height="15.0" fill="rgb(209,93,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" 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>_memcpy_sse2_unaligned_erms (1 samples, 0.09%)</title><rect x="13.1" y="773" width="1.0" height="15.0" fill="rgb(226,189,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="964.3" y="261" width="1.0" height="15.0" fill="rgb(212,111,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" 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><alloc::vec::Vec<T> as core::ops::index::IndexMut<I>>::index_mut (11 samples, 0.96%)</title><rect x="94.1" y="661" width="11.3" height="15.0" fill="rgb(254,126,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="97.14" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (52 samples, 4.52%)</title><rect x="1102.8" y="677" width="53.3" height="15.0" fill="rgb(226,139,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1105.78" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ker..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ifree (1 samples, 0.09%)</title><rect x="16.2" y="725" width="1.0" height="15.0" fill="rgb(213,42,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::Write::write_fmt::Adaptor<'a, T> as core::fmt::Write>::write_str (6 samples, 0.52%)</title><rect x="675.9" y="213" width="6.2" height="15.0" fill="rgb(227,226,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="678.93" 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>dl_map_object (1 samples, 0.09%)</title><rect x="14.1" y="1013" width="1.0" height="15.0" fill="rgb(245,101,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" 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>_GI_madvise (8 samples, 0.70%)</title><rect x="725.2" y="629" width="8.2" height="15.0" fill="rgb(229,68,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.18" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>itertools::Itertools::collect_vec (43 samples, 3.74%)</title><rect x="666.7" y="581" width="44.1" height="15.0" fill="rgb(208,65,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >iter..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::add (1 samples, 0.09%)</title><rect x="502.5" y="629" width="1.0" height="15.0" fill="rgb(245,202,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.52" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::estimation::alignment_properties::AlignmentProperties::estimate (23 samples, 2.00%)</title><rect x="1165.4" y="773" width="23.6" height="15.0" fill="rgb(216,44,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="783.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>core::fmt::float::float_to_decimal_common_shortest (1 samples, 0.09%)</title><rect x="709.8" y="229" width="1.0" height="15.0" fill="rgb(221,218,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup::{{closure}} (1 samples, 0.09%)</title><rect x="709.8" y="389" width="1.0" height="15.0" fill="rgb(241,98,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (43 samples, 3.74%)</title><rect x="666.7" y="709" width="44.1" height="15.0" fill="rgb(210,41,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><all..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="11.0" y="1109" width="1.1" height="15.0" fill="rgb(206,210,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.03" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (54 samples, 4.70%)</title><rect x="908.9" y="437" width="55.4" height="15.0" fill="rgb(239,91,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.85" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[ker..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test::run_test::{{closure}} (1,144 samples, 99.48%)</title><rect x="16.2" y="821" width="1173.8" height="15.0" fill="rgb(231,0,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="831.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]] (18 samples, 1.57%)</title><rect x="965.3" y="277" width="18.5" height="15.0" fill="rgb(230,197,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.29" 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_pileup::{{closure}} (13 samples, 1.13%)</title><rect x="710.8" y="645" width="13.4" height="15.0" fill="rgb(245,115,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.82" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::slice::<impl [T]>::to_vec (1 samples, 0.09%)</title><rect x="15.1" y="901" width="1.1" height="15.0" fill="rgb(239,223,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" 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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="10.0" y="1061" width="1.0" height="15.0" fill="rgb(238,54,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_log1p (1 samples, 0.09%)</title><rect x="664.6" y="661" width="1.1" height="15.0" fill="rgb(253,89,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.64" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::ge (9 samples, 0.78%)</title><rect x="338.3" y="613" width="9.3" height="15.0" fill="rgb(242,205,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="341.35" 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>_pthread_mutex_unlock_usercnt (2 samples, 0.17%)</title><rect x="679.0" y="85" width="2.1" height="15.0" fill="rgb(251,51,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.01" 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>hts_idx_load2 (1 samples, 0.09%)</title><rect x="1189.0" y="725" width="1.0" height="15.0" fill="rgb(247,31,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.97" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_pthread_enable_asynccancel (1 samples, 0.09%)</title><rect x="1074.1" y="613" width="1.0" height="15.0" fill="rgb(245,60,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1077.05" 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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="14.1" y="901" width="1.0" height="15.0" fill="rgb(214,128,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" 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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="724.2" y="549" width="1.0" height="15.0" fill="rgb(251,224,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" 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::ptr::drop_in_place (2 samples, 0.17%)</title><rect x="679.0" y="165" width="2.1" height="15.0" fill="rgb(248,122,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.01" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panic::catch_unwind (1,144 samples, 99.48%)</title><rect x="16.2" y="901" width="1173.8" height="15.0" fill="rgb(234,127,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="911.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><alloc::vec::Vec<T>>::set_len (1 samples, 0.09%)</title><rect x="983.8" y="661" width="1.0" height="15.0" fill="rgb(208,209,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="986.76" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::stdio::print_to::{{closure}} (1 samples, 0.09%)</title><rect x="709.8" y="309" width="1.0" height="15.0" fill="rgb(221,216,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" 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::fmt::Formatter::write_formatted_parts (1 samples, 0.09%)</title><rect x="709.8" y="213" width="1.0" height="15.0" fill="rgb(215,69,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys_common::mutex::Mutex::raw_lock (3 samples, 0.26%)</title><rect x="687.2" y="101" width="3.1" height="15.0" fill="rgb(236,47,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="690.22" 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><bio::stats::probs::Prob as core::ops::arith::Add>::add (30 samples, 2.61%)</title><rect x="116.7" y="661" width="30.8" height="15.0" fill="rgb(243,139,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="119.71" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><b..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (14 samples, 1.22%)</title><rect x="1058.7" y="405" width="14.3" height="15.0" fill="rgb(243,15,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.66" 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><alloc::raw_vec::RawVec<T, A>>::reserve_internal (217 samples, 18.87%)</title><rect x="761.1" y="629" width="222.7" height="15.0" fill="rgb(254,152,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.10" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::raw_vec::RawVec<T, A>..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys_common::mutex::Mutex::raw_lock (2 samples, 0.17%)</title><rect x="698.5" y="85" width="2.1" height="15.0" fill="rgb(219,155,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.50" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="10.0" y="1077" width="1.0" height="15.0" fill="rgb(235,173,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as bio::utils::fastexp::FastExp<f64>>::fastexp (94 samples, 8.17%)</title><rect x="375.3" y="549" width="96.4" height="15.0" fill="rgb(249,88,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="378.29" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><f64 as bio..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::fmt::format (2 samples, 0.17%)</title><rect x="23.3" y="693" width="2.1" height="15.0" fill="rgb(242,64,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.34" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (1 samples, 0.09%)</title><rect x="162.9" y="629" width="1.0" height="15.0" fill="rgb(241,94,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.89" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_iralloct (217 samples, 18.87%)</title><rect x="761.1" y="565" width="222.7" height="15.0" fill="rgb(235,170,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.10" y="575.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>std::thread::panicking (1 samples, 0.09%)</title><rect x="697.5" y="53" width="1.0" height="15.0" fill="rgb(241,50,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.48" 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::alloc::Global as core::alloc::Alloc>::realloc (217 samples, 18.87%)</title><rect x="761.1" y="613" width="222.7" height="15.0" fill="rgb(214,141,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.10" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::alloc::Global as core..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>arena_run_reg_dalloc (1 samples, 0.09%)</title><rect x="16.2" y="613" width="1.0" height="15.0" fill="rgb(210,100,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" 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::sys::unix::mutex::Mutex::lock (1 samples, 0.09%)</title><rect x="717.0" y="357" width="1.0" height="15.0" fill="rgb(221,33,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.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::likelihood::LatentVariableModel::likelihood_pileup (1 samples, 0.09%)</title><rect x="709.8" y="421" width="1.0" height="15.0" fill="rgb(226,217,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[lib....1] (18 samples, 1.57%)</title><rect x="1167.4" y="645" width="18.5" height="15.0" fill="rgb(212,1,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1170.43" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::thread::local::LocalKey<T>>::try_with (1 samples, 0.09%)</title><rect x="709.8" y="325" width="1.0" height="15.0" fill="rgb(226,49,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" 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>dl_catch_exception (1 samples, 0.09%)</title><rect x="14.1" y="1045" width="1.0" height="15.0" fill="rgb(250,225,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.10" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (8 samples, 0.70%)</title><rect x="1064.8" y="373" width="8.2" height="15.0" fill="rgb(218,134,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1067.82" 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>std::panic::catch_unwind (1,145 samples, 99.57%)</title><rect x="15.1" y="1029" width="1174.9" height="15.0" fill="rgb(211,75,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panic::catch_unwind</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::impls::<impl std::io::Write for alloc::vec::Vec<u8>>::write (1 samples, 0.09%)</title><rect x="715.9" y="405" width="1.1" height="15.0" fill="rgb(236,140,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="718.95" 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]] (43 samples, 3.74%)</title><rect x="920.1" y="405" width="44.2" height="15.0" fill="rgb(219,179,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="923.14" y="415.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]] (1 samples, 0.09%)</title><rect x="1155.1" y="485" width="1.0" height="15.0" fill="rgb(211,149,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1158.11" 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::thread::Builder::spawn::{{closure}}::{{closure}} (1,145 samples, 99.57%)</title><rect x="15.1" y="949" width="1174.9" height="15.0" fill="rgb(205,139,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" y="959.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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<&'a T, core::slice::Iter<'a, T>>>::spec_extend (1 samples, 0.09%)</title><rect x="13.1" y="805" width="1.0" height="15.0" fill="rgb(206,205,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="964.3" y="245" width="1.0" height="15.0" fill="rgb(223,227,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (9 samples, 0.78%)</title><rect x="974.5" y="213" width="9.3" height="15.0" fill="rgb(232,11,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="977.52" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ops::range::RangeFrom<usize> as core::slice::SliceIndex<[T]>>::index (1 samples, 0.09%)</title><rect x="694.4" y="117" width="1.0" height="15.0" fill="rgb(234,88,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="697.40" 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>libprosic::model::evidence::fragments::isize_pmf (1 samples, 0.09%)</title><rect x="21.3" y="533" width="1.0" height="15.0" fill="rgb(229,69,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::impls::<impl std::io::Write for alloc::boxed::Box<W>>::write_fmt (1 samples, 0.09%)</title><rect x="709.8" y="293" width="1.0" height="15.0" fill="rgb(225,53,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.79" 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::DeletionEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_y (1 samples, 0.09%)</title><rect x="162.9" y="661" width="1.0" height="15.0" fill="rgb(233,101,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.89" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::sync::atomic::AtomicUsize::load (1 samples, 0.09%)</title><rect x="161.9" y="533" width="1.0" height="15.0" fill="rgb(207,151,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.86" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::stdio::print (33 samples, 2.87%)</title><rect x="675.9" y="325" width="33.9" height="15.0" fill="rgb(248,59,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="678.93" y="335.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>[[kerne.allsyms]] (18 samples, 1.57%)</title><rect x="965.3" y="261" width="18.5" height="15.0" fill="rgb(222,142,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.29" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_all (4 samples, 0.35%)</title><rect x="696.5" y="133" width="4.1" height="15.0" fill="rgb(208,27,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="699.45" 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::ptr::drop_in_place (1 samples, 0.09%)</title><rect x="16.2" y="773" width="1.0" height="15.0" fill="rgb(248,213,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::flt2dec::strategy::grisu::format_shortest_opt (5 samples, 0.43%)</title><rect x="719.0" y="421" width="5.2" height="15.0" fill="rgb(223,140,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="722.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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="724.2" y="565" width="1.0" height="15.0" fill="rgb(205,138,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.16" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (43 samples, 3.74%)</title><rect x="666.7" y="533" width="44.1" height="15.0" fill="rgb(244,113,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><all..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="13.1" y="757" width="1.0" height="15.0" fill="rgb(243,191,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.08" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="964.3" y="309" width="1.0" height="15.0" fill="rgb(229,96,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.26" 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><bio::stats::probs::LogProb as core::ops::arith::Add>::add (11 samples, 0.96%)</title><rect x="105.4" y="661" width="11.3" height="15.0" fill="rgb(222,42,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="108.43" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="581" width="1.0" height="15.0" fill="rgb(224,179,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" 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::iter::Map<I, F> as core::iter::iterator::Iterator>::next (42 samples, 3.65%)</title><rect x="666.7" y="485" width="43.1" height="15.0" fill="rgb(233,16,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><cor..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="15.1" y="837" width="1.1" height="15.0" fill="rgb(208,100,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.13" 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>rust_htslib::bam::itr_next (3 samples, 0.26%)</title><rect x="18.2" y="693" width="3.1" height="15.0" fill="rgb(206,197,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.21" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ops::function::FnOnce::call_once (1,144 samples, 99.48%)</title><rect x="16.2" y="837" width="1173.8" height="15.0" fill="rgb(212,193,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="847.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>je_arena_dalloc (1 samples, 0.09%)</title><rect x="16.2" y="677" width="1.0" height="15.0" fill="rgb(251,82,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.16" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><lazy_static::lazy::Lazy<T>>::get (1 samples, 0.09%)</title><rect x="161.9" y="581" width="1.0" height="15.0" fill="rgb(208,48,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.86" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (66 samples, 5.74%)</title><rect x="1005.3" y="549" width="67.7" height="15.0" fill="rgb(220,135,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1008.30" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (43 samples, 3.74%)</title><rect x="666.7" y="677" width="44.1" height="15.0" fill="rgb(235,216,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.70" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><all..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::flt2dec::strategy::grisu::cached_power (1 samples, 0.09%)</title><rect x="708.8" y="117" width="1.0" height="15.0" fill="rgb(212,89,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="711.77" 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>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="405" width="1.0" height="15.0" fill="rgb(223,34,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" 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>bam_read1 (22 samples, 1.91%)</title><rect x="1165.4" y="741" width="22.5" height="15.0" fill="rgb(250,150,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >b..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::Write::write_fmt::Adaptor<'a, T> as core::fmt::Write>::write_str (2 samples, 0.17%)</title><rect x="717.0" y="437" width="2.0" height="15.0" fill="rgb(209,110,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.97" 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::IndexedReader::from_path (1 samples, 0.09%)</title><rect x="1189.0" y="773" width="1.0" height="15.0" fill="rgb(222,61,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.97" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="10.0" y="1109" width="1.0" height="15.0" fill="rgb(218,79,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::nth (4 samples, 0.35%)</title><rect x="495.3" y="629" width="4.1" height="15.0" fill="rgb(221,46,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="498.34" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::buffered::BufReader<R> as std::io::BufRead>::consume (3 samples, 0.26%)</title><rect x="988.9" y="693" width="3.1" height="15.0" fill="rgb(237,150,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="991.89" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.09%)</title><rect x="1165.4" y="357" width="1.0" height="15.0" fill="rgb(222,64,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" 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::fmt::Formatter::run (10 samples, 0.87%)</title><rect x="713.9" y="501" width="10.3" height="15.0" fill="rgb(218,83,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.90" 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}} (2 samples, 0.17%)</title><rect x="21.3" y="565" width="2.0" height="15.0" fill="rgb(242,78,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.29" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_all (10 samples, 0.87%)</title><rect x="685.2" y="149" width="10.2" height="15.0" fill="rgb(207,83,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="688.17" 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>_w_log1p (6 samples, 0.52%)</title><rect x="281.9" y="629" width="6.2" height="15.0" fill="rgb(237,90,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.91" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln::{{closure}} (1 samples, 0.09%)</title><rect x="22.3" y="517" width="1.0" height="15.0" fill="rgb(220,51,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.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>core::ops::function::FnMut::call_mut (8 samples, 0.70%)</title><rect x="701.6" y="165" width="8.2" height="15.0" fill="rgb(253,225,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="704.58" 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::cmp::Ord::min (1 samples, 0.09%)</title><rect x="990.9" y="661" width="1.1" height="15.0" fill="rgb(225,28,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="993.94" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment