Created
October 23, 2018 17:37
-
-
Save dlaehnemann/9197dbe41bddae0856b7e280dd9992ed to your computer and use it in GitHub Desktop.
prosolo flamegraph at libprosic local branch commit to calculate LogProb of allele_freq_case and allele_freq_control once per pileup, not per observation (for interactive SVG, right-click thumbnail and choose `View image`)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" standalone="no"?> | |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
<svg version="1.1" width="1200" height="534" onload="init(evt)" viewBox="0 0 1200 534" 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="534.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="517" 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="517" 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>bio::stats::probs::LogProb::ln_one_minus_exp (367 samples, 0.18%)</title><rect x="92.3" y="229" width="2.2" height="15.0" fill="rgb(215,187,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="95.31" 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>[lib....] (21 samples, 0.01%)</title><rect x="1189.9" y="197" width="0.1" height="15.0" fill="rgb(253,194,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.87" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_ieee754_exp_avx (242 samples, 0.12%)</title><rect x="1160.5" y="245" width="1.4" height="15.0" fill="rgb(225,113,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1163.47" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_read_block (51 samples, 0.03%)</title><rect x="1172.8" y="245" width="0.3" height="15.0" fill="rgb(243,24,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.81" 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>_memcpy_avx_unaligned (95 samples, 0.05%)</title><rect x="56.2" y="165" width="0.6" height="15.0" fill="rgb(248,194,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="59.23" 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>_write_nocancel (436 samples, 0.22%)</title><rect x="1179.2" y="165" width="2.6" height="15.0" fill="rgb(241,56,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.22" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_ralloc_no_move (47 samples, 0.02%)</title><rect x="55.1" y="133" width="0.2" height="15.0" fill="rgb(231,49,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="58.05" 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::write_fmt::Adapter<'a, T> as core::fmt::Write>::write_str (86 samples, 0.04%)</title><rect x="71.1" y="117" width="0.6" height="15.0" fill="rgb(247,71,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="74.15" 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::sample::RecordBuffer::fill (424 samples, 0.21%)</title><rect x="41.2" y="261" width="2.5" height="15.0" fill="rgb(247,212,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.17" 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>isfree (22 samples, 0.01%)</title><rect x="1175.2" y="293" width="0.2" height="15.0" fill="rgb(222,68,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.23" 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>bgzf_read_block (24 samples, 0.01%)</title><rect x="1189.8" y="229" width="0.2" height="15.0" fill="rgb(232,40,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.85" 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>[unknown] (51 samples, 0.03%)</title><rect x="1177.2" y="165" width="0.3" height="15.0" fill="rgb(220,29,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.19" 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::ffi::c_str::CString::new (29 samples, 0.01%)</title><rect x="1178.4" y="245" width="0.2" height="15.0" fill="rgb(223,216,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.38" 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>rust_htslib::bam::record::Record::qname (21 samples, 0.01%)</title><rect x="87.7" y="229" width="0.1" height="15.0" fill="rgb(239,57,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="90.69" 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>_log1p (135 samples, 0.07%)</title><rect x="91.5" y="229" width="0.7" height="15.0" fill="rgb(235,89,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="94.46" 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>[unknown] (25 samples, 0.01%)</title><rect x="1177.6" y="197" width="0.1" height="15.0" fill="rgb(254,69,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.56" 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::fmt::Write::write_fmt::Adapter<'a, T> as core::fmt::Write>::write_str (370 samples, 0.18%)</title><rect x="59.9" y="165" width="2.2" height="15.0" fill="rgb(238,49,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="62.93" 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::fmt::format (68 samples, 0.03%)</title><rect x="1181.9" y="261" width="0.4" height="15.0" fill="rgb(223,139,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1184.87" 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>rallocx (222 samples, 0.11%)</title><rect x="39.3" y="245" width="1.3" height="15.0" fill="rgb(219,219,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="42.32" 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>prosolo::main (199,184 samples, 99.08%)</title><rect x="20.9" y="341" width="1169.1" height="15.0" fill="rgb(223,188,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.90" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >prosolo::main</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><&'a T as core::fmt::Display>::fmt (19 samples, 0.01%)</title><rect x="50.5" y="197" width="0.1" height="15.0" fill="rgb(223,213,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="53.51" 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>[unknown] (21 samples, 0.01%)</title><rect x="1177.6" y="117" width="0.1" height="15.0" fill="rgb(213,86,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.59" 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>bio::stats::probs::LogProb::ln_sum_exp (20 samples, 0.01%)</title><rect x="1175.1" y="293" width="0.1" height="15.0" fill="rgb(220,162,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.08" 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>je_arena_ralloc_no_move (18 samples, 0.01%)</title><rect x="19.6" y="437" width="0.1" height="15.0" fill="rgb(238,117,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.63" 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>[unknown] (20 samples, 0.01%)</title><rect x="1177.9" y="181" width="0.1" height="15.0" fill="rgb(205,112,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.90" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::CigarStringView::read_pos (67 samples, 0.03%)</title><rect x="94.5" y="229" width="0.4" height="15.0" fill="rgb(234,192,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="97.46" 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><bio::stats::probs::Prob as core::ops::arith::Add>::add (890 samples, 0.44%)</title><rect x="236.6" y="197" width="5.2" height="15.0" fill="rgb(209,200,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="239.60" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::observation::Evidence::alignment (6,988 samples, 3.48%)</title><rect x="46.8" y="245" width="41.0" height="15.0" fill="rgb(237,15,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="49.80" y="255.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>rust_htslib::bam::record::Aux::integer (42 samples, 0.02%)</title><rect x="73.4" y="229" width="0.3" height="15.0" fill="rgb(253,198,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="76.44" 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>bgzf_compress (731 samples, 0.36%)</title><rect x="1183.2" y="229" width="4.3" height="15.0" fill="rgb(250,64,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.23" 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>[unknown] (345 samples, 0.17%)</title><rect x="1179.8" y="85" width="2.0" height="15.0" fill="rgb(212,65,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.76" 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>mallocx (151 samples, 0.08%)</title><rect x="80.9" y="197" width="0.8" height="15.0" fill="rgb(221,140,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="83.86" 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>[lib....] (140 samples, 0.07%)</title><rect x="41.7" y="133" width="0.9" height="15.0" fill="rgb(207,71,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.74" 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::ln_sum_exp (268 samples, 0.13%)</title><rect x="1170.1" y="245" width="1.6" height="15.0" fill="rgb(242,58,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1173.10" 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>[unknown] (415 samples, 0.21%)</title><rect x="1179.3" y="149" width="2.5" height="15.0" fill="rgb(231,59,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.35" 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>je_arena_ralloc_no_move (237 samples, 0.12%)</title><rect x="86.3" y="117" width="1.4" height="15.0" fill="rgb(243,79,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="89.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>_w_log1p (79 samples, 0.04%)</title><rect x="399.6" y="197" width="0.4" height="15.0" fill="rgb(234,151,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.58" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::Prob as core::ops::arith::Add>::add (23 samples, 0.01%)</title><rect x="210.9" y="213" width="0.1" height="15.0" fill="rgb(242,227,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="213.86" 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>ZN81_<std::collections::hash::map::DefaultHasher as core::hash::Hasher>6finish17h5c878e8faca4fe29.lv.6623167779973835162 (213 samples, 0.11%)</title><rect x="703.0" y="165" width="1.3" height="15.0" fill="rgb(252,108,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="706.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>bam_aux_get (524 samples, 0.26%)</title><rect x="74.9" y="213" width="3.1" height="15.0" fill="rgb(241,169,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="77.91" 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>ZN4core3ptr13drop_in_place17h5eb5674599d9eb5b.lv.466067228359132060 (269 samples, 0.13%)</title><rect x="1173.4" y="293" width="1.6" height="15.0" fill="rgb(219,32,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1176.43" 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>_GI___exp (2,922 samples, 1.45%)</title><rect x="1117.9" y="213" width="17.2" height="15.0" fill="rgb(219,157,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1120.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>bio::stats::probs::LogProb::ln_one (154 samples, 0.08%)</title><rect x="639.4" y="197" width="0.9" height="15.0" fill="rgb(233,73,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="642.45" 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::collections::btree::node::Handle<alloc::collections::btree::node::NodeRef<alloc::collections::btree::node::marker::Mut<'a>, K, V, alloc::collections::btree::node::marker::Leaf>, alloc::collections::btree::node::marker::Edge>>::insert (145 samples, 0.07%)</title><rect x="201.4" y="229" width="0.9" height="15.0" fill="rgb(205,100,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.44" 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>[unknown] (29 samples, 0.01%)</title><rect x="1177.8" y="213" width="0.2" height="15.0" fill="rgb(226,164,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.84" 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::fmt::write (652 samples, 0.32%)</title><rect x="68.0" y="165" width="3.8" height="15.0" fill="rgb(235,179,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="70.98" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_ieee754_log_avx (20,593 samples, 10.24%)</title><rect x="742.2" y="229" width="120.9" height="15.0" fill="rgb(221,213,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="745.18" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ieee754_log_avx</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___exp (23,688 samples, 11.78%)</title><rect x="910.2" y="213" width="139.1" height="15.0" fill="rgb(250,87,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.24" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_GI___exp</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bcf::record::Info::data (61 samples, 0.03%)</title><rect x="1178.2" y="261" width="0.4" height="15.0" fill="rgb(212,211,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.20" 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::collections::btree::map::BTreeMap<K, V>>::insert (432 samples, 0.21%)</title><rect x="200.8" y="245" width="2.5" height="15.0" fill="rgb(249,17,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="203.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>_ieee754_log_avx (22,353 samples, 11.12%)</title><rect x="241.8" y="197" width="131.2" height="15.0" fill="rgb(215,53,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.83" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ieee754_log_avx</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 (234 samples, 0.12%)</title><rect x="41.2" y="245" width="1.4" height="15.0" fill="rgb(225,223,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.23" 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>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &'a mut F>::call_once (86,093 samples, 42.82%)</title><rect x="203.8" y="229" width="505.3" height="15.0" fill="rgb(218,128,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.75" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::ops::function::impls::<impl core::ops::function::FnOnce<A> for ..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::collections::btree::map::BTreeMap<K, V>>::insert (305 samples, 0.15%)</title><rect x="209.0" y="213" width="1.8" height="15.0" fill="rgb(212,80,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="212.02" 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>bcf_update_info (251 samples, 0.12%)</title><rect x="1187.7" y="277" width="1.5" height="15.0" fill="rgb(221,26,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.68" 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>_memcpy_avx_unaligned (82 samples, 0.04%)</title><rect x="61.6" y="133" width="0.5" height="15.0" fill="rgb(240,209,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="64.62" 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>bam_aux2i (31 samples, 0.02%)</title><rect x="74.7" y="213" width="0.2" height="15.0" fill="rgb(220,160,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="77.73" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve (244 samples, 0.12%)</title><rect x="39.2" y="261" width="1.4" height="15.0" fill="rgb(207,32,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="42.19" 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>rust_htslib::bam::record::Record::pos (15,750 samples, 7.83%)</title><rect x="104.6" y="261" width="92.4" height="15.0" fill="rgb(218,221,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="107.56" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >rust_htslib..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_ieee754_exp_avx (2,541 samples, 1.26%)</title><rect x="1120.2" y="197" width="14.9" height="15.0" fill="rgb(252,56,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1123.17" 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>ZN81_<std::collections::hash::map::DefaultHasher as core::hash::Hasher>6finish17h5c878e8faca4fe29.lv.6623167779973835162 (80 samples, 0.04%)</title><rect x="1168.3" y="165" width="0.5" height="15.0" fill="rgb(212,14,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1171.28" 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>bio::stats::probs::LogProb::ln_one_minus_exp (8,151 samples, 4.05%)</title><rect x="1112.0" y="229" width="47.8" height="15.0" fill="rgb(233,214,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1114.99" y="239.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>arena_dalloc_bin_locked_impl (78 samples, 0.04%)</title><rect x="1174.3" y="245" width="0.5" height="15.0" fill="rgb(219,201,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1177.32" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bam_read1 (26 samples, 0.01%)</title><rect x="1189.8" y="261" width="0.2" height="15.0" fill="rgb(240,159,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.84" 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>kh_get_vdict (20 samples, 0.01%)</title><rect x="1178.2" y="213" width="0.2" height="15.0" fill="rgb(245,176,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.25" 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::fmt::Write::write_fmt::Adapter<'a, T> as core::fmt::Write>::write_char (34 samples, 0.02%)</title><rect x="69.3" y="149" width="0.2" height="15.0" fill="rgb(218,176,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="72.28" 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::fmt::Write::write_fmt::Adapter<'a, T> as core::fmt::Write>::write_str (120 samples, 0.06%)</title><rect x="1175.8" y="245" width="0.7" height="15.0" fill="rgb(216,93,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.77" 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>inflate (143 samples, 0.07%)</title><rect x="41.7" y="149" width="0.9" height="15.0" fill="rgb(246,229,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.72" 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>_log1p (27 samples, 0.01%)</title><rect x="713.3" y="229" width="0.2" height="15.0" fill="rgb(242,40,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.33" 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>[unknown] (182 samples, 0.09%)</title><rect x="1180.7" y="37" width="1.1" height="15.0" fill="rgb(223,182,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1183.71" 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>_kernel_standard (29 samples, 0.01%)</title><rect x="863.1" y="229" width="0.1" height="15.0" fill="rgb(216,169,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.05" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::collections::btree::node::Handle<alloc::collections::btree::node::NodeRef<alloc::collections::btree::node::marker::Mut<'a>, K, V, alloc::collections::btree::node::marker::Internal>, alloc::collections::btree::node::marker::Edge>>::insert (31 samples, 0.02%)</title><rect x="201.3" y="229" width="0.1" height="15.0" fill="rgb(233,80,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.26" 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>std::ffi::c_str::CString::new (36 samples, 0.02%)</title><rect x="43.1" y="229" width="0.2" height="15.0" fill="rgb(231,181,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="46.10" 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>je_arena_ralloc (31 samples, 0.02%)</title><rect x="19.4" y="437" width="0.2" height="15.0" fill="rgb(211,188,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.44" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_w_log1p (292 samples, 0.15%)</title><rect x="637.7" y="181" width="1.7" height="15.0" fill="rgb(238,88,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="640.73" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (86,165 samples, 42.86%)</title><rect x="203.3" y="245" width="505.8" height="15.0" fill="rgb(233,171,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.33" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>init (120 samples, 0.06%)</title><rect x="20.2" y="453" width="0.7" height="15.0" fill="rgb(210,213,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.17" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_avx_unaligned (39 samples, 0.02%)</title><rect x="58.3" y="133" width="0.2" height="15.0" fill="rgb(217,96,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="61.26" 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>bcf1_sync (97 samples, 0.05%)</title><rect x="1182.6" y="261" width="0.5" height="15.0" fill="rgb(235,141,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.57" 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>ZN81_<std::collections::hash::map::DefaultHasher as core::hash::Hasher>5write17h8b1584398153d20f.lv.29664923368456607 (488 samples, 0.24%)</title><rect x="700.1" y="165" width="2.9" height="15.0" fill="rgb(207,90,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="703.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>bcf1_sync_info (38 samples, 0.02%)</title><rect x="1182.7" y="245" width="0.2" height="15.0" fill="rgb(245,125,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.66" 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::ffi::c_str::CString::from_vec_unchecked (819 samples, 0.41%)</title><rect x="82.9" y="181" width="4.8" height="15.0" fill="rgb(227,39,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="85.89" 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>bcf_write (851 samples, 0.42%)</title><rect x="1182.5" y="277" width="5.0" height="15.0" fill="rgb(213,51,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.53" 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>bio::stats::probs::LogProb::ln_one_minus_exp (202 samples, 0.10%)</title><rect x="45.6" y="245" width="1.2" height="15.0" fill="rgb(207,63,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.62" 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::ffi::c_str::CString::new (49 samples, 0.02%)</title><rect x="1189.4" y="261" width="0.3" height="15.0" fill="rgb(223,85,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.41" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_avx_unaligned (44 samples, 0.02%)</title><rect x="66.6" y="133" width="0.3" height="15.0" fill="rgb(241,140,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.60" 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>mallocx (37 samples, 0.02%)</title><rect x="202.1" y="213" width="0.2" height="15.0" fill="rgb(235,113,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.08" 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::fmt::Write::write_fmt::Adapter<'a, T> as core::fmt::Write>::write_str (180 samples, 0.09%)</title><rect x="57.4" y="165" width="1.1" height="15.0" fill="rgb(235,171,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="60.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><alloc::collections::btree::node::Handle<alloc::collections::btree::node::NodeRef<alloc::collections::btree::node::marker::Mut<'a>, K, V, alloc::collections::btree::node::marker::Internal>, alloc::collections::btree::node::marker::Edge>>::insert (28 samples, 0.01%)</title><rect x="209.4" y="197" width="0.1" height="15.0" fill="rgb(250,124,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="212.37" 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>ZN49_<alloc::raw_vec::RawVec<T, A>>16reserve_internal17hffb61edb59964eed.lv.7557372997817698179 (18 samples, 0.01%)</title><rect x="71.3" y="101" width="0.1" height="15.0" fill="rgb(232,149,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="74.31" 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>bcf_read (110 samples, 0.05%)</title><rect x="1172.5" y="277" width="0.6" height="15.0" fill="rgb(248,133,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.47" 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>je_tcache_alloc_small_hard (53 samples, 0.03%)</title><rect x="55.3" y="133" width="0.3" height="15.0" fill="rgb(214,100,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="58.33" 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>std::collections::hash::table::make_hash (366 samples, 0.18%)</title><rect x="1166.7" y="181" width="2.2" height="15.0" fill="rgb(232,108,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1169.71" 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>[unknown] (361 samples, 0.18%)</title><rect x="1179.7" y="101" width="2.1" height="15.0" fill="rgb(219,218,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.66" 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>libprosic::model::sample::Sample::extract_observations (29,892 samples, 14.87%)</title><rect x="21.6" y="277" width="175.4" height="15.0" fill="rgb(239,124,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.56" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::samp..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (231 samples, 0.11%)</title><rect x="1180.4" y="53" width="1.4" height="15.0" fill="rgb(211,12,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1183.43" 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>[unknown] (23 samples, 0.01%)</title><rect x="1177.6" y="181" width="0.1" height="15.0" fill="rgb(244,49,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.57" 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::fmt::write (156 samples, 0.08%)</title><rect x="1175.6" y="261" width="0.9" height="15.0" fill="rgb(246,50,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.61" 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>_ieee754_exp_avx (191 samples, 0.10%)</title><rect x="1170.5" y="213" width="1.1" height="15.0" fill="rgb(217,65,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1173.53" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_ralloc_no_move (20 samples, 0.01%)</title><rect x="1176.3" y="181" width="0.1" height="15.0" fill="rgb(213,20,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1179.28" 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>_memcpy_avx_unaligned (35 samples, 0.02%)</title><rect x="54.8" y="133" width="0.3" height="15.0" fill="rgb(216,21,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="57.85" 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::num::<impl core::fmt::Display for u32>::fmt (200 samples, 0.10%)</title><rect x="70.6" y="149" width="1.2" height="15.0" fill="rgb(244,16,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="73.64" 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>kh_get_s2i (34 samples, 0.02%)</title><rect x="42.9" y="213" width="0.2" height="15.0" fill="rgb(253,0,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="45.87" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::stdio::Stderr as std::io::Write>::write_fmt (482 samples, 0.24%)</title><rect x="1179.0" y="245" width="2.8" height="15.0" fill="rgb(245,151,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.01" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::priors::single_cell_bulk::SingleCellBulkModel as libprosic::model::priors::PairModel<libprosic::model::DiscreteAlleleFreqs, libprosic::model::ContinuousAlleleFreqs>>::joint_prob (164,433 samples, 81.79%)</title><rect x="197.0" y="293" width="965.2" height="15.0" fill="rgb(246,133,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="200.03" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><libprosic::model::priors::single_cell_bulk::SingleCellBulkModel as libprosic::model::priors::PairModel<libprosic::model::DiscreteAlle..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZN3std11collections4hash5table16calculate_layout17h2a1bd9c5be20331f.lv.6623167779973835162 (54 samples, 0.03%)</title><rect x="698.5" y="181" width="0.4" height="15.0" fill="rgb(245,151,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.55" 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>bam_name2id (46 samples, 0.02%)</title><rect x="42.8" y="229" width="0.3" height="15.0" fill="rgb(252,206,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="45.80" 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>je_arena_ralloc (47 samples, 0.02%)</title><rect x="1176.1" y="197" width="0.3" height="15.0" fill="rgb(231,67,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1179.12" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::builders::DebugTuple::finish (281 samples, 0.14%)</title><rect x="65.2" y="181" width="1.7" height="15.0" fill="rgb(241,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="68.21" 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>[unknown] (23 samples, 0.01%)</title><rect x="1177.6" y="149" width="0.1" height="15.0" fill="rgb(228,122,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.57" 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::Event::tag_name (231 samples, 0.11%)</title><rect x="1175.4" y="293" width="1.4" height="15.0" fill="rgb(253,29,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.40" 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>_strcmp_sse2_unaligned (35 samples, 0.02%)</title><rect x="1188.9" y="229" width="0.2" height="15.0" fill="rgb(228,31,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.93" 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>[lib....] (563 samples, 0.28%)</title><rect x="1184.2" y="181" width="3.3" height="15.0" fill="rgb(222,12,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.19" 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>num_traits::float::integer_decode_f64 (18 samples, 0.01%)</title><rect x="1168.8" y="165" width="0.1" height="15.0" fill="rgb(219,176,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1171.75" 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>[prosolo] (23 samples, 0.01%)</title><rect x="10.0" y="453" width="0.1" height="15.0" fill="rgb(253,155,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.01" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___exp (24 samples, 0.01%)</title><rect x="95.3" y="213" width="0.2" height="15.0" fill="rgb(238,56,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.34" 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::record::Record::pos (59 samples, 0.03%)</title><rect x="103.9" y="245" width="0.4" height="15.0" fill="rgb(237,23,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="106.91" 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>core::fmt::write (45 samples, 0.02%)</title><rect x="1182.0" y="213" width="0.3" height="15.0" fill="rgb(212,103,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1184.99" 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::fmt::Write::write_fmt::Adapter<'a, T> as core::fmt::Write>::write_str (205 samples, 0.10%)</title><rect x="65.7" y="165" width="1.2" height="15.0" fill="rgb(237,11,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="68.65" 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>_memcpy_avx_unaligned (19 samples, 0.01%)</title><rect x="71.5" y="85" width="0.2" height="15.0" fill="rgb(238,4,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="74.54" 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><std::io::Write::write_fmt::Adaptor<'a, T> as core::fmt::Write>::write_str (460 samples, 0.23%)</title><rect x="1179.1" y="213" width="2.7" height="15.0" fill="rgb(220,162,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.08" 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::ffi::c_str::CString::new (1,014 samples, 0.50%)</title><rect x="81.7" y="197" width="6.0" height="15.0" fill="rgb(205,88,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="84.74" 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>bgzf_read_block (172 samples, 0.09%)</title><rect x="41.6" y="165" width="1.0" height="15.0" fill="rgb(210,103,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.57" 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>ZN49_<alloc::raw_vec::RawVec<T, A>>16reserve_internal17hffb61edb59964eed.lv.7557372997817698179 (80 samples, 0.04%)</title><rect x="60.7" y="149" width="0.5" height="15.0" fill="rgb(210,67,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="63.73" 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>bio::stats::probs::LogProb::ln_add_exp (38,002 samples, 18.90%)</title><rect x="888.1" y="229" width="223.1" height="15.0" fill="rgb(240,11,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="891.11" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::probs::LogProb::l..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___exp (2,879 samples, 1.43%)</title><rect x="646.7" y="181" width="16.9" height="15.0" fill="rgb(221,99,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="649.71" 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>[lib....] (711 samples, 0.35%)</title><rect x="1183.3" y="197" width="4.2" height="15.0" fill="rgb(205,102,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.34" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::fs::File as std::io::Read>::read (30 samples, 0.01%)</title><rect x="1177.5" y="261" width="0.2" height="15.0" fill="rgb(254,2,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.53" 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>ZN49_<alloc::raw_vec::RawVec<T, A>>16reserve_internal17ha65fb20920e18d42.lv.098166201494542136 (653 samples, 0.32%)</title><rect x="83.9" y="165" width="3.8" height="15.0" fill="rgb(253,138,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="86.86" 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>prosolo::call::single_cell_bulk (199,184 samples, 99.08%)</title><rect x="20.9" y="325" width="1169.1" height="15.0" fill="rgb(241,79,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.90" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >prosolo::call::single_cell_bulk</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::copy_from_slice (154 samples, 0.08%)</title><rect x="61.2" y="149" width="0.9" height="15.0" fill="rgb(213,229,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="64.20" 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>[unknown] (402 samples, 0.20%)</title><rect x="1179.4" y="133" width="2.4" height="15.0" fill="rgb(231,137,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.42" 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>bgzf_read (194 samples, 0.10%)</title><rect x="41.4" y="181" width="1.2" height="15.0" fill="rgb(240,96,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.44" 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>bio::stats::probs::LogProb::ln_sum_exp (745 samples, 0.37%)</title><rect x="709.1" y="245" width="4.4" height="15.0" fill="rgb(245,223,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.12" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><rust_htslib::bam::record::Seq<'a> as core::ops::index::Index<usize>>::index (457 samples, 0.23%)</title><rect x="88.8" y="229" width="2.7" height="15.0" fill="rgb(220,112,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="91.77" 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>std::collections::hash::table::make_hash (1,006 samples, 0.50%)</title><rect x="698.9" y="181" width="5.9" height="15.0" fill="rgb(250,82,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.86" 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::fmt::Formatter::debug_lower_hex (19 samples, 0.01%)</title><rect x="59.7" y="149" width="0.2" height="15.0" fill="rgb(244,185,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="62.75" 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::fmt::Formatter::debug_tuple (226 samples, 0.11%)</title><rect x="57.2" y="181" width="1.3" height="15.0" fill="rgb(222,1,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="60.16" 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><alloc::collections::btree::map::BTreeMap<K, V> as core::ops::drop::Drop>::drop (40 samples, 0.02%)</title><rect x="1173.5" y="277" width="0.3" height="15.0" fill="rgb(214,27,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1176.52" 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>_memcpy_avx_unaligned (48 samples, 0.02%)</title><rect x="70.4" y="117" width="0.2" height="15.0" fill="rgb(206,108,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="73.36" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___exp (612 samples, 0.30%)</title><rect x="709.7" y="229" width="3.6" height="15.0" fill="rgb(248,3,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.70" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::copy_from_slice (40 samples, 0.02%)</title><rect x="71.4" y="101" width="0.3" height="15.0" fill="rgb(216,228,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="74.42" 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>ZN49_<alloc::raw_vec::RawVec<T, A>>16reserve_internal17h2310e2008d355a06.lv.477094218197955020 (50 samples, 0.02%)</title><rect x="197.6" y="261" width="0.3" height="15.0" fill="rgb(242,84,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="200.60" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>isfree (167 samples, 0.08%)</title><rect x="78.0" y="213" width="1.0" height="15.0" fill="rgb(243,135,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="80.99" 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>ZN49_<alloc::raw_vec::RawVec<T, A>>16reserve_internal17hffb61edb59964eed.lv.7557372997817698179 (45 samples, 0.02%)</title><rect x="64.1" y="117" width="0.3" height="15.0" fill="rgb(209,109,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.10" 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>all (201,041 samples, 100%)</title><rect x="10.0" y="485" width="1180.0" height="15.0" fill="rgb(239,1,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_write (747 samples, 0.37%)</title><rect x="1183.1" y="261" width="4.4" height="15.0" fill="rgb(235,158,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.14" 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>[unknown] (394 samples, 0.20%)</title><rect x="1179.5" y="117" width="2.3" height="15.0" fill="rgb(216,62,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.47" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_huge_ralloc (100 samples, 0.05%)</title><rect x="1176.9" y="229" width="0.6" height="15.0" fill="rgb(211,115,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1179.95" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Formatter::pad_integral (156 samples, 0.08%)</title><rect x="70.9" y="133" width="0.9" height="15.0" fill="rgb(247,21,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="73.90" 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>sdallocx (33 samples, 0.02%)</title><rect x="1174.8" y="277" width="0.2" height="15.0" fill="rgb(243,53,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1177.82" 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>bcf_record_chec.sr. (23 samples, 0.01%)</title><rect x="1172.6" y="261" width="0.1" height="15.0" fill="rgb(241,144,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.56" 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>pthread_mutex_unlock (271 samples, 0.13%)</title><rect x="706.8" y="197" width="1.6" height="15.0" fill="rgb(229,175,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.80" 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>rallocx (101 samples, 0.05%)</title><rect x="1176.9" y="245" width="0.6" height="15.0" fill="rgb(226,125,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1179.94" 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>rallocx (21 samples, 0.01%)</title><rect x="1189.6" y="213" width="0.1" height="15.0" fill="rgb(209,111,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.58" 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>_log (655 samples, 0.33%)</title><rect x="863.2" y="229" width="3.9" height="15.0" fill="rgb(245,6,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.22" 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><rust_htslib::bam::record::CigarString as core::fmt::Display>::fmt (844 samples, 0.42%)</title><rect x="66.9" y="197" width="4.9" height="15.0" fill="rgb(233,36,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.86" 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>ZN49_<alloc::raw_vec::RawVec<T, A>>16reserve_internal17ha65fb20920e18d42.lv.098166201494542136 (24 samples, 0.01%)</title><rect x="1189.6" y="229" width="0.1" height="15.0" fill="rgb(237,167,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.56" 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::fmt::format (4,179 samples, 2.08%)</title><rect x="48.0" y="229" width="24.5" height="15.0" fill="rgb(221,51,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="50.98" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup (76,031 samples, 37.82%)</title><rect x="713.6" y="245" width="446.2" height="15.0" fill="rgb(242,161,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.57" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::likelihood::LatentVariableModel::likelihood..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_expm1 (4,217 samples, 2.10%)</title><rect x="1135.1" y="213" width="24.7" height="15.0" fill="rgb(212,149,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.08" 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>bcf_unpack (54 samples, 0.03%)</title><rect x="1173.1" y="277" width="0.3" height="15.0" fill="rgb(228,181,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1176.11" 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>inflate (39 samples, 0.02%)</title><rect x="1172.9" y="229" width="0.2" height="15.0" fill="rgb(224,156,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.88" 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>_rust_maybe_catch_panic (199,184 samples, 99.08%)</title><rect x="20.9" y="389" width="1169.1" height="15.0" fill="rgb(231,78,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.90" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_rust_maybe_catch_panic</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::fmt::Write::write_fmt::Adapter<'a, T> as core::fmt::Write>::write_str (223 samples, 0.11%)</title><rect x="63.6" y="133" width="1.3" height="15.0" fill="rgb(240,78,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="66.59" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::into_boxed_slice (42 samples, 0.02%)</title><rect x="83.6" y="165" width="0.3" height="15.0" fill="rgb(226,134,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="86.61" 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>bio::stats::probs::LogProb::is_valid (32 samples, 0.02%)</title><rect x="41.0" y="261" width="0.1" height="15.0" fill="rgb(209,167,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="43.96" 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::ffi::c_str::CString::new (1,398 samples, 0.70%)</title><rect x="79.5" y="213" width="8.2" height="15.0" fill="rgb(231,213,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="82.49" 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::str::from_utf8 (158 samples, 0.08%)</title><rect x="72.5" y="229" width="0.9" height="15.0" fill="rgb(237,110,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="75.51" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::copy_from_slice (191 samples, 0.10%)</title><rect x="55.7" y="181" width="1.1" height="15.0" fill="rgb(250,175,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="58.67" 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::<impl [T]>::copy_from_slice (82 samples, 0.04%)</title><rect x="66.4" y="149" width="0.5" height="15.0" fill="rgb(218,56,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.38" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___exp (354 samples, 0.18%)</title><rect x="92.4" y="213" width="2.1" height="15.0" fill="rgb(238,59,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="95.38" 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>libprosic::model::evidence::reads::prob_none (1,241 samples, 0.62%)</title><rect x="87.8" y="245" width="7.3" height="15.0" fill="rgb(219,144,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="90.82" 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>sdallocx (86 samples, 0.04%)</title><rect x="79.0" y="213" width="0.5" height="15.0" fill="rgb(250,80,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="81.98" 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>mallocx (19 samples, 0.01%)</title><rect x="19.7" y="437" width="0.2" height="15.0" fill="rgb(221,162,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.74" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::estimation::alignment_properties::AlignmentProperties::estimate (27 samples, 0.01%)</title><rect x="1189.8" y="293" width="0.2" height="15.0" fill="rgb(209,113,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.84" 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::fmt::num::<impl core::fmt::Display for i64>::fmt (529 samples, 0.26%)</title><rect x="62.1" y="165" width="3.1" height="15.0" fill="rgb(251,184,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="65.10" 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>crc32 (19 samples, 0.01%)</title><rect x="1183.2" y="213" width="0.1" height="15.0" fill="rgb(233,123,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.23" 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>[unknown] (29 samples, 0.01%)</title><rect x="1177.8" y="197" width="0.2" height="15.0" fill="rgb(238,133,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.84" 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>[unknown] (1,679 samples, 0.84%)</title><rect x="10.1" y="453" width="9.9" height="15.0" fill="rgb(230,173,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.15" 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>ZN49_<alloc::raw_vec::RawVec<T, A>>16reserve_internal17hffb61edb59964eed.lv.7557372997817698179 (699 samples, 0.35%)</title><rect x="51.6" y="181" width="4.1" height="15.0" fill="rgb(217,6,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="54.57" 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>[lib....] (39 samples, 0.02%)</title><rect x="1172.9" y="213" width="0.2" height="15.0" fill="rgb(221,52,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.88" 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>realloc (21 samples, 0.01%)</title><rect x="1182.8" y="229" width="0.1" height="15.0" fill="rgb(223,85,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.76" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::fmt::Arguments<'a> as core::fmt::Debug>::fmt (48 samples, 0.02%)</title><rect x="1182.0" y="229" width="0.3" height="15.0" fill="rgb(221,117,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1184.97" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::ffi::c_str::CString::new (70 samples, 0.03%)</title><rect x="1189.3" y="277" width="0.4" height="15.0" fill="rgb(237,66,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.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>itertools::minmax::minmax_impl (1,742 samples, 0.87%)</title><rect x="1162.2" y="277" width="10.2" height="15.0" fill="rgb(226,143,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.21" 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>kh_get_vdict (78 samples, 0.04%)</title><rect x="1188.7" y="245" width="0.4" height="15.0" fill="rgb(218,4,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.67" 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>je_arena_tcache_fill_small (52 samples, 0.03%)</title><rect x="55.3" y="117" width="0.3" height="15.0" fill="rgb(252,68,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="58.34" 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::fmt::Formatter::pad (32 samples, 0.02%)</title><rect x="71.9" y="197" width="0.1" height="15.0" fill="rgb(210,129,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="74.85" 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::ops::function::impls::<impl core::ops::function::FnOnce<A> for &'a mut F>::call_once (163,892 samples, 81.52%)</title><rect x="197.9" y="261" width="961.9" height="15.0" fill="rgb(241,153,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="200.89" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &'a mut F>::call_once</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (68 samples, 0.03%)</title><rect x="1169.5" y="197" width="0.4" height="15.0" fill="rgb(222,51,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1172.49" 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><fern::loggers::WriterLogger<T> as fern::api::Logger>::log (494 samples, 0.25%)</title><rect x="1179.0" y="261" width="2.9" height="15.0" fill="rgb(235,104,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.97" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_avx_unaligned (62 samples, 0.03%)</title><rect x="40.1" y="213" width="0.4" height="15.0" fill="rgb(236,154,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="43.10" 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::str::run_utf8_validation (118 samples, 0.06%)</title><rect x="72.7" y="213" width="0.7" height="15.0" fill="rgb(214,225,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="75.74" 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>libprosic::model::evidence::reads::prob_snv (71 samples, 0.04%)</title><rect x="95.1" y="245" width="0.4" height="15.0" fill="rgb(237,190,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.10" 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>_ieee754_exp_avx (2,475 samples, 1.23%)</title><rect x="649.1" y="165" width="14.5" height="15.0" fill="rgb(245,163,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="652.08" 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::ffi::c_str::CString::from_vec_unchecked (33 samples, 0.02%)</title><rect x="1189.5" y="245" width="0.2" height="15.0" fill="rgb(213,121,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.51" 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>_log1p (3,850 samples, 1.92%)</title><rect x="377.0" y="197" width="22.6" height="15.0" fill="rgb(236,44,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="379.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>num_traits::float::integer_decode_f64 (88 samples, 0.04%)</title><rect x="704.3" y="165" width="0.5" height="15.0" fill="rgb(252,151,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="707.25" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>realloc (29 samples, 0.01%)</title><rect x="1188.4" y="245" width="0.2" height="15.0" fill="rgb(210,176,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" 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>isfree (18 samples, 0.01%)</title><rect x="19.3" y="437" width="0.1" height="15.0" fill="rgb(217,72,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.34" 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 (4,006 samples, 1.99%)</title><rect x="48.5" y="213" width="23.5" height="15.0" fill="rgb(232,82,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="51.53" 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>_GI___exp (190 samples, 0.09%)</title><rect x="45.7" y="229" width="1.1" height="15.0" fill="rgb(248,129,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.69" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Formatter::pad_integral (421 samples, 0.21%)</title><rect x="62.7" y="149" width="2.5" height="15.0" fill="rgb(237,216,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="65.74" 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::fmt::num::<impl core::fmt::Display for i32>::fmt (19 samples, 0.01%)</title><rect x="1182.1" y="197" width="0.1" height="15.0" fill="rgb(217,0,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.05" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___exp (212 samples, 0.11%)</title><rect x="1170.4" y="229" width="1.2" height="15.0" fill="rgb(208,111,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1173.40" 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>_log1p (3,519 samples, 1.75%)</title><rect x="867.1" y="229" width="20.6" height="15.0" fill="rgb(214,31,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="870.07" 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>bam_readrec (212 samples, 0.11%)</title><rect x="41.4" y="213" width="1.2" height="15.0" fill="rgb(246,200,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.36" 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::record::Record::seq (33 samples, 0.02%)</title><rect x="94.9" y="229" width="0.2" height="15.0" fill="rgb(241,145,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="97.91" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::builders::DebugTuple::field (1,145 samples, 0.57%)</title><rect x="58.5" y="181" width="6.7" height="15.0" fill="rgb(214,97,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="61.49" 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>rallocx (582 samples, 0.29%)</title><rect x="84.3" y="149" width="3.4" height="15.0" fill="rgb(244,133,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="87.28" 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><bio::stats::probs::Prob as core::ops::arith::Add>::add (860 samples, 0.43%)</title><rect x="737.1" y="229" width="5.1" height="15.0" fill="rgb(249,190,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="740.14" 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>[unknown] (26 samples, 0.01%)</title><rect x="1177.6" y="229" width="0.1" height="15.0" fill="rgb(241,145,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.56" 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::raw_vec::RawVec<T, A>>::reserve (37 samples, 0.02%)</title><rect x="80.1" y="197" width="0.2" height="15.0" fill="rgb(207,82,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="83.12" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>isfree (168 samples, 0.08%)</title><rect x="1173.8" y="277" width="1.0" height="15.0" fill="rgb(246,25,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1176.80" 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>prosolo (201,041 samples, 100.00%)</title><rect x="10.0" y="469" width="1180.0" height="15.0" fill="rgb(251,38,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >prosolo</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (29 samples, 0.01%)</title><rect x="1177.8" y="229" width="0.2" height="15.0" fill="rgb(217,142,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.84" 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>std::io::Write::write_all (453 samples, 0.23%)</title><rect x="1179.1" y="197" width="2.7" height="15.0" fill="rgb(233,134,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.12" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (108 samples, 0.05%)</title><rect x="1168.9" y="197" width="0.6" height="15.0" fill="rgb(226,175,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1171.86" 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>libprosic::utils::ReferenceBuffer::seq (216 samples, 0.11%)</title><rect x="1176.8" y="293" width="1.2" height="15.0" fill="rgb(222,18,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1179.78" 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>_read_nocancel (30 samples, 0.01%)</title><rect x="1177.5" y="245" width="0.2" height="15.0" fill="rgb(218,104,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.53" 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>[lib....] (73 samples, 0.04%)</title><rect x="1187.0" y="165" width="0.5" height="15.0" fill="rgb(229,225,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.05" 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><libprosic::model::priors::single_cell_bulk::SingleCellBulkModel as libprosic::model::priors::PairModel<libprosic::model::DiscreteAlleleFreqs, libprosic::model::ContinuousAlleleFreqs>>::map (1,750 samples, 0.87%)</title><rect x="1162.2" y="293" width="10.2" height="15.0" fill="rgb(215,97,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.16" 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>[unknown] (20 samples, 0.01%)</title><rect x="1177.4" y="149" width="0.1" height="15.0" fill="rgb(225,187,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.37" 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><&'a T as core::fmt::Debug>::fmt (77 samples, 0.04%)</title><rect x="59.5" y="165" width="0.4" height="15.0" fill="rgb(214,207,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="62.48" 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>bcf_enc_int1 (62 samples, 0.03%)</title><rect x="1188.0" y="261" width="0.3" height="15.0" fill="rgb(249,92,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.96" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::sample::Sample::read_observation (8,857 samples, 4.41%)</title><rect x="43.7" y="261" width="51.9" height="15.0" fill="rgb(232,52,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="46.66" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libpr..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_avx_unaligned (50 samples, 0.02%)</title><rect x="1177.7" y="245" width="0.3" height="15.0" fill="rgb(209,176,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.72" 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><rust_htslib::bam::Reader as rust_htslib::bam::Read>::read (26 samples, 0.01%)</title><rect x="1189.8" y="277" width="0.2" height="15.0" fill="rgb(221,82,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.84" 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::fmt::Formatter::pad_integral::{{closure}} (53 samples, 0.03%)</title><rect x="64.9" y="133" width="0.3" height="15.0" fill="rgb(230,25,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.90" 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::raw_vec::RawVec<T, A>>::reserve (105 samples, 0.05%)</title><rect x="1176.9" y="261" width="0.6" height="15.0" fill="rgb(213,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1179.92" 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::stdio::StderrLock<'a> as std::io::Write>::write (449 samples, 0.22%)</title><rect x="1179.1" y="181" width="2.7" height="15.0" fill="rgb(248,83,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.15" 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>bgzf_read (25 samples, 0.01%)</title><rect x="1189.8" y="245" width="0.2" height="15.0" fill="rgb(214,28,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.84" 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>sdallocx (20 samples, 0.01%)</title><rect x="1189.7" y="293" width="0.1" height="15.0" fill="rgb(212,228,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.71" 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>[unknown] (22 samples, 0.01%)</title><rect x="1177.6" y="133" width="0.1" height="15.0" fill="rgb(225,11,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.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>[unknown] (51 samples, 0.03%)</title><rect x="1177.2" y="197" width="0.3" height="15.0" fill="rgb(248,113,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.19" 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>_ieee754_exp_avx (332 samples, 0.17%)</title><rect x="92.5" y="197" width="2.0" height="15.0" fill="rgb(251,0,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="95.51" 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>_memcpy_avx_unaligned (38 samples, 0.02%)</title><rect x="80.6" y="181" width="0.3" height="15.0" fill="rgb(247,37,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="83.63" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_add_exp (40,788 samples, 20.29%)</title><rect x="400.0" y="197" width="239.4" height="15.0" fill="rgb(227,190,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="403.04" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::probs::LogProb::ln_..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><fern::loggers::DispatchLogger as log::Log>::log (615 samples, 0.31%)</title><rect x="1178.8" y="277" width="3.6" height="15.0" fill="rgb(212,216,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.78" 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>_GI___exp (25,131 samples, 12.50%)</title><rect x="423.6" y="181" width="147.5" height="15.0" fill="rgb(246,13,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.64" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_GI___exp</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_one_minus_exp (8,309 samples, 4.13%)</title><rect x="640.3" y="197" width="48.8" height="15.0" fill="rgb(219,33,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.35" y="207.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>alloc::collections::btree::search::search_tree (123 samples, 0.06%)</title><rect x="1171.7" y="261" width="0.7" height="15.0" fill="rgb(219,194,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1174.71" 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><cached::stores::UnboundCache<K, V> as cached::Cached<K, V>>::cache_get (2,465 samples, 1.23%)</title><rect x="690.3" y="197" width="14.5" height="15.0" fill="rgb(234,43,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="693.30" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_sum_exp (362 samples, 0.18%)</title><rect x="1159.9" y="277" width="2.1" height="15.0" fill="rgb(219,64,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1162.92" 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><cached::stores::UnboundCache<K, V> as cached::Cached<K, V>>::cache_get (584 samples, 0.29%)</title><rect x="1165.4" y="197" width="3.5" height="15.0" fill="rgb(221,109,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.43" 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>bcf_hdr_id2int (22 samples, 0.01%)</title><rect x="1178.2" y="229" width="0.2" height="15.0" fill="rgb(250,17,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.24" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::write (472 samples, 0.23%)</title><rect x="1179.0" y="229" width="2.8" height="15.0" fill="rgb(223,198,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.02" 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><char as core::fmt::Display>::fmt (38 samples, 0.02%)</title><rect x="69.1" y="149" width="0.2" height="15.0" fill="rgb(212,166,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="72.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>ZN3std9panicking3try7do_call17he35f788617d92f08.lv.63483716220241110 (199,184 samples, 99.08%)</title><rect x="20.9" y="373" width="1169.1" height="15.0" fill="rgb(219,120,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.90" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ZN3std9panicking3try7do_call17he35f788617d92f08.lv.63483716220241110</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (51 samples, 0.03%)</title><rect x="1177.2" y="181" width="0.3" height="15.0" fill="rgb(220,219,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.19" 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>_log1p (10,271 samples, 5.11%)</title><rect x="1049.3" y="213" width="60.3" height="15.0" fill="rgb(247,228,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1052.28" y="223.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>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &'a mut F>::call_once (1,216 samples, 0.60%)</title><rect x="1163.0" y="229" width="7.1" height="15.0" fill="rgb(245,12,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.97" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::copy_from_slice (20 samples, 0.01%)</title><rect x="1176.5" y="277" width="0.1" height="15.0" fill="rgb(246,90,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1179.53" 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>rust_htslib::bcf::record::Record::alleles (22 samples, 0.01%)</title><rect x="1178.6" y="277" width="0.1" height="15.0" fill="rgb(237,110,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.61" 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>ks_resiz.sr..par. (52 samples, 0.03%)</title><rect x="1188.0" y="229" width="0.3" height="15.0" fill="rgb(228,168,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.02" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::fmt::Write::write_fmt::Adapter<'a, T> as core::fmt::Write>::write_str (197 samples, 0.10%)</title><rect x="69.5" y="149" width="1.1" height="15.0" fill="rgb(248,188,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="72.48" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::Record::aux (2,387 samples, 1.19%)</title><rect x="73.7" y="229" width="14.0" height="15.0" fill="rgb(251,169,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="76.68" 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>mallocx (40 samples, 0.02%)</title><rect x="197.7" y="245" width="0.2" height="15.0" fill="rgb(251,217,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="200.66" 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>inflate (21 samples, 0.01%)</title><rect x="1189.9" y="213" width="0.1" height="15.0" fill="rgb(244,40,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.87" 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::slice::<impl [T]>::copy_from_slice (65 samples, 0.03%)</title><rect x="58.1" y="149" width="0.4" height="15.0" fill="rgb(217,129,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="61.11" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::HeaderView::tid (93 samples, 0.05%)</title><rect x="42.8" y="245" width="0.5" height="15.0" fill="rgb(230,125,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="45.77" 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>rallocx (76 samples, 0.04%)</title><rect x="1176.0" y="213" width="0.4" height="15.0" fill="rgb(220,17,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.95" 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>ZN49_<alloc::raw_vec::RawVec<T, A>>16reserve_internal17hffb61edb59964eed.lv.7557372997817698179 (101 samples, 0.05%)</title><rect x="1175.8" y="229" width="0.6" height="15.0" fill="rgb(218,2,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.81" 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>ZN49_<alloc::raw_vec::RawVec<T, A>>16reserve_internal17hffb61edb59964eed.lv.7557372997817698179 (31 samples, 0.02%)</title><rect x="66.2" y="149" width="0.2" height="15.0" fill="rgb(233,7,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.19" 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>ZN49_<alloc::raw_vec::RawVec<T, A>>16reserve_internal17hffb61edb59964eed.lv.7557372997817698179 (42 samples, 0.02%)</title><rect x="69.9" y="133" width="0.2" height="15.0" fill="rgb(254,22,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="72.87" 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>bam_read1 (210 samples, 0.10%)</title><rect x="41.4" y="197" width="1.2" height="15.0" fill="rgb(220,227,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.37" 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>_log1p (171 samples, 0.09%)</title><rect x="44.5" y="245" width="1.0" height="15.0" fill="rgb(220,52,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="47.54" 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>je_arena_ralloc (19 samples, 0.01%)</title><rect x="1188.4" y="229" width="0.2" height="15.0" fill="rgb(229,27,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.44" 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>je_arena_ralloc (322 samples, 0.16%)</title><rect x="53.8" y="149" width="1.9" height="15.0" fill="rgb(205,15,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.78" 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>ZN81_<std::collections::hash::map::DefaultHasher as core::hash::Hasher>5write17h8b1584398153d20f.lv.29664923368456607 (178 samples, 0.09%)</title><rect x="1167.2" y="165" width="1.1" height="15.0" fill="rgb(223,126,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1170.24" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::copy_from_slice (88 samples, 0.04%)</title><rect x="70.1" y="133" width="0.5" height="15.0" fill="rgb(225,217,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="73.12" 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>bgzf_flush (731 samples, 0.36%)</title><rect x="1183.2" y="245" width="4.3" height="15.0" fill="rgb(254,62,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.23" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::PairCaller<A, B, P>>::pileup (29,911 samples, 14.88%)</title><rect x="21.5" y="293" width="175.5" height="15.0" fill="rgb(219,59,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.47" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><libprosic::model::Pai..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_expm1 (4,346 samples, 2.16%)</title><rect x="663.6" y="181" width="25.5" height="15.0" fill="rgb(250,76,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="666.61" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::Record::cache_cigar (18 samples, 0.01%)</title><rect x="43.3" y="245" width="0.1" height="15.0" fill="rgb(225,118,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="46.31" 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::rt::lang_start::{{closure}} (199,184 samples, 99.08%)</title><rect x="20.9" y="357" width="1169.1" height="15.0" fill="rgb(248,144,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.90" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::rt::lang_start::{{closure}}</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::priors::single_cell_bulk::prob_rho (853 samples, 0.42%)</title><rect x="1165.1" y="213" width="5.0" height="15.0" fill="rgb(208,125,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.10" 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><bio::stats::probs::LogProb as core::ops::deref::Deref>::deref (273 samples, 0.14%)</title><rect x="735.5" y="229" width="1.6" height="15.0" fill="rgb(249,81,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="738.53" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::rt::lang_start_internal (199,184 samples, 99.08%)</title><rect x="20.9" y="405" width="1169.1" height="15.0" fill="rgb(223,47,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.90" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::rt::lang_start_internal</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_tcache_bin_flush_small (103 samples, 0.05%)</title><rect x="1174.2" y="261" width="0.6" height="15.0" fill="rgb(248,152,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1177.18" 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><core::option::Option<T> as core::fmt::Debug>::fmt (1,715 samples, 0.85%)</title><rect x="56.8" y="197" width="10.1" height="15.0" fill="rgb(229,69,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="59.79" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><rust_htslib::bam::record::Seq<'a> as core::ops::index::Index<usize>>::index (21 samples, 0.01%)</title><rect x="95.1" y="229" width="0.2" height="15.0" fill="rgb(229,49,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.14" 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><bio::stats::probs::LogProb as core::ops::arith::Add>::add (596 samples, 0.30%)</title><rect x="231.6" y="197" width="3.5" height="15.0" fill="rgb(238,139,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.55" 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>bcf_hdr_id2int (99 samples, 0.05%)</title><rect x="1188.6" y="261" width="0.5" height="15.0" fill="rgb(226,56,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.55" 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::collections::btree::node::Handle<alloc::collections::btree::node::NodeRef<alloc::collections::btree::node::marker::Mut<'a>, K, V, alloc::collections::btree::node::marker::Leaf>, alloc::collections::btree::node::marker::Edge>>::insert (99 samples, 0.05%)</title><rect x="209.5" y="197" width="0.6" height="15.0" fill="rgb(216,217,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="212.54" 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>bcf_get_info_values (25 samples, 0.01%)</title><rect x="1178.2" y="245" width="0.2" height="15.0" fill="rgb(239,100,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.22" 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>init (1,191 samples, 0.59%)</title><rect x="12.3" y="437" width="7.0" height="15.0" fill="rgb(235,91,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.35" 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>[unknown] (23 samples, 0.01%)</title><rect x="1177.6" y="165" width="0.1" height="15.0" fill="rgb(211,214,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.57" 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><rust_htslib::bcf::Reader as rust_htslib::bcf::Read>::read (170 samples, 0.08%)</title><rect x="1172.4" y="293" width="1.0" height="15.0" fill="rgb(223,89,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.43" 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>mallocx (80 samples, 0.04%)</title><rect x="72.0" y="213" width="0.5" height="15.0" fill="rgb(208,218,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="75.04" 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::slice::<impl [T]>::copy_from_slice (73 samples, 0.04%)</title><rect x="80.4" y="197" width="0.5" height="15.0" fill="rgb(229,109,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="83.43" 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>rust_htslib::bcf::record::Info::integer (67 samples, 0.03%)</title><rect x="1178.2" y="277" width="0.4" height="15.0" fill="rgb(237,186,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.16" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>crc32 (26 samples, 0.01%)</title><rect x="41.6" y="149" width="0.1" height="15.0" fill="rgb(205,17,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.57" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_read (72 samples, 0.04%)</title><rect x="1172.7" y="261" width="0.4" height="15.0" fill="rgb(236,140,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.69" 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>_ieee754_exp_avx (22,342 samples, 11.11%)</title><rect x="918.1" y="197" width="131.2" height="15.0" fill="rgb(254,128,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="921.14" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ieee754_exp_avx</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hts_itr_next (232 samples, 0.12%)</title><rect x="41.2" y="229" width="1.4" height="15.0" fill="rgb(251,14,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.24" 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>mallocx (29 samples, 0.01%)</title><rect x="209.9" y="181" width="0.2" height="15.0" fill="rgb(226,129,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="212.95" 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_bin_malloc_hard (18 samples, 0.01%)</title><rect x="55.5" y="101" width="0.1" height="15.0" fill="rgb(220,220,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="58.50" 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>prosolo::call::alignment_properties (28 samples, 0.01%)</title><rect x="1189.8" y="309" width="0.2" height="15.0" fill="rgb(224,32,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.84" 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::<impl core::convert::From<bio::stats::probs::LogProb> for ordered_float::NotNaN<f64>>::from (26 samples, 0.01%)</title><rect x="40.8" y="261" width="0.2" height="15.0" fill="rgb(215,216,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="43.80" 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>je_arena_ralloc (321 samples, 0.16%)</title><rect x="85.8" y="133" width="1.9" height="15.0" fill="rgb(231,172,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="88.81" 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::io::fasta::IndexedReader<R>>::read (208 samples, 0.10%)</title><rect x="1176.8" y="277" width="1.2" height="15.0" fill="rgb(215,119,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1179.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>kputc (60 samples, 0.03%)</title><rect x="1188.0" y="245" width="0.3" height="15.0" fill="rgb(222,86,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.97" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (164,005 samples, 81.58%)</title><rect x="197.2" y="277" width="962.6" height="15.0" fill="rgb(224,98,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="200.23" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (1,253 samples, 0.62%)</title><rect x="1162.7" y="245" width="7.4" height="15.0" fill="rgb(210,35,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.75" 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>_w_log1p (66 samples, 0.03%)</title><rect x="887.7" y="229" width="0.4" height="15.0" fill="rgb(237,228,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="890.72" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::copy_from_slice (52 samples, 0.03%)</title><rect x="1177.7" y="261" width="0.3" height="15.0" fill="rgb(207,225,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.71" 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>rust_htslib::bam::record::Record::cigar_cached (52 samples, 0.03%)</title><rect x="104.3" y="261" width="0.3" height="15.0" fill="rgb(249,83,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="107.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 alloc::vec::SpecExtend<T, I>>::from_iter (33 samples, 0.02%)</title><rect x="21.3" y="293" width="0.2" height="15.0" fill="rgb(241,69,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.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>_memcpy_avx_unaligned (54 samples, 0.03%)</title><rect x="64.6" y="101" width="0.3" height="15.0" fill="rgb(247,50,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.58" 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::LogProb::ln_one_minus_exp (25 samples, 0.01%)</title><rect x="95.3" y="229" width="0.2" height="15.0" fill="rgb(229,104,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.34" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::copy_from_slice (91 samples, 0.05%)</title><rect x="64.4" y="117" width="0.5" height="15.0" fill="rgb(205,43,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.36" 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>_log1p (25 samples, 0.01%)</title><rect x="1161.9" y="261" width="0.1" height="15.0" fill="rgb(241,171,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1164.90" 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>rust_htslib::bam::record::Record::pos (26 samples, 0.01%)</title><rect x="43.5" y="245" width="0.2" height="15.0" fill="rgb(249,150,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="46.51" 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>_w_log1p (272 samples, 0.14%)</title><rect x="1109.6" y="213" width="1.6" height="15.0" fill="rgb(212,48,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.57" 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>memchr (130 samples, 0.06%)</title><rect x="82.1" y="181" width="0.8" height="15.0" fill="rgb(240,176,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="85.12" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::call::pairwise::call (199,155 samples, 99.06%)</title><rect x="20.9" y="309" width="1168.9" height="15.0" fill="rgb(252,221,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.90" y="319.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>bcf_enc_vfloat (39 samples, 0.02%)</title><rect x="1188.3" y="261" width="0.3" height="15.0" fill="rgb(230,125,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.32" 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>_log (658 samples, 0.33%)</title><rect x="373.1" y="197" width="3.9" height="15.0" fill="rgb(210,58,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="376.12" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_ieee754_exp_avx (171 samples, 0.09%)</title><rect x="45.8" y="213" width="1.0" height="15.0" fill="rgb(228,133,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.80" 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>_libc_start_main (199,185 samples, 99.08%)</title><rect x="20.9" y="437" width="1169.1" height="15.0" fill="rgb(233,201,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.89" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_libc_start_main</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_one (141 samples, 0.07%)</title><rect x="1111.2" y="229" width="0.8" height="15.0" fill="rgb(242,169,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1114.16" 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>rust_htslib::bam::record::CigarStringView::end_pos (619 samples, 0.31%)</title><rect x="100.3" y="245" width="3.6" height="15.0" fill="rgb(215,55,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.28" 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>_ieee754_exp_avx (23 samples, 0.01%)</title><rect x="95.3" y="197" width="0.2" height="15.0" fill="rgb(220,159,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.35" 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>log::_log (620 samples, 0.31%)</title><rect x="1178.7" y="293" width="3.7" height="15.0" fill="rgb(248,38,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.75" 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>deflate (711 samples, 0.35%)</title><rect x="1183.3" y="213" width="4.2" height="15.0" fill="rgb(225,61,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.34" 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>@plt (313 samples, 0.16%)</title><rect x="10.5" y="437" width="1.8" height="15.0" fill="rgb(212,155,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.47" 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::bcf::record::Record::push_info_float (355 samples, 0.18%)</title><rect x="1187.6" y="293" width="2.1" height="15.0" fill="rgb(242,143,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.62" 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>_GI___exp (257 samples, 0.13%)</title><rect x="1160.4" y="261" width="1.5" height="15.0" fill="rgb(223,51,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1163.38" 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>_ieee754_exp_avx (557 samples, 0.28%)</title><rect x="710.0" y="213" width="3.3" height="15.0" fill="rgb(213,190,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.02" 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>libprosic::utils::collect_variants (118 samples, 0.06%)</title><rect x="1178.0" y="293" width="0.7" height="15.0" fill="rgb(235,112,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.05" 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>alloc::collections::btree::search::search_tree (107 samples, 0.05%)</title><rect x="210.2" y="197" width="0.6" height="15.0" fill="rgb(212,214,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="213.15" 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>_ieee754_exp_avx (23,613 samples, 11.75%)</title><rect x="432.5" y="165" width="138.6" height="15.0" fill="rgb(245,4,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.55" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ieee754_exp_avx</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_ralloc (179 samples, 0.09%)</title><rect x="39.6" y="229" width="1.0" height="15.0" fill="rgb(205,24,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="42.58" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Formatter::write_fmt (740 samples, 0.37%)</title><rect x="67.5" y="181" width="4.3" height="15.0" fill="rgb(205,32,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="70.47" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup (81,444 samples, 40.51%)</title><rect x="211.1" y="213" width="478.0" height="15.0" fill="rgb(215,55,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="214.09" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::likelihood::LatentVariableModel::likelihood_pil..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (18 samples, 0.01%)</title><rect x="1177.9" y="165" width="0.1" height="15.0" fill="rgb(253,106,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.91" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panicking::panicking (110 samples, 0.05%)</title><rect x="708.4" y="197" width="0.7" height="15.0" fill="rgb(239,177,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="711.42" 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::fmt::format (172 samples, 0.09%)</title><rect x="1175.5" y="277" width="1.0" height="15.0" fill="rgb(248,86,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.52" 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>_log1p (11,345 samples, 5.64%)</title><rect x="571.1" y="181" width="66.6" height="15.0" fill="rgb(242,167,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.14" y="191.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><bio::stats::probs::LogProb as core::ops::deref::Deref>::deref (263 samples, 0.13%)</title><rect x="235.1" y="197" width="1.5" height="15.0" fill="rgb(249,202,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="238.05" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (25 samples, 0.01%)</title><rect x="1177.6" y="213" width="0.1" height="15.0" fill="rgb(206,141,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.56" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::utils::Overlap::new (1,467 samples, 0.73%)</title><rect x="95.6" y="261" width="8.7" height="15.0" fill="rgb(208,27,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.65" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::priors::single_cell_bulk::SingleCellBulkModel as libprosic::model::priors::PairModel<libprosic::model::DiscreteAlleleFreqs, libprosic::model::ContinuousAlleleFreqs>>::map::{{closure}} (1,537 samples, 0.76%)</title><rect x="1162.7" y="261" width="9.0" height="15.0" fill="rgb(248,215,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.68" 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><bio::stats::probs::LogProb as core::ops::arith::Add>::add (614 samples, 0.31%)</title><rect x="731.9" y="229" width="3.6" height="15.0" fill="rgb(216,182,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.93" 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>realloc (43 samples, 0.02%)</title><rect x="1188.1" y="213" width="0.2" height="15.0" fill="rgb(243,137,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.07" 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>ZN49_<alloc::raw_vec::RawVec<T, A>>16reserve_internal17hffb61edb59964eed.lv.7557372997817698179 (60 samples, 0.03%)</title><rect x="57.8" y="149" width="0.3" height="15.0" fill="rgb(238,133,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="60.75" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bcf::Writer::write (854 samples, 0.42%)</title><rect x="1182.5" y="293" width="5.0" height="15.0" fill="rgb(226,109,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.51" 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::panicking (36 samples, 0.02%)</title><rect x="1169.9" y="197" width="0.2" height="15.0" fill="rgb(226,57,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1172.89" 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::collections::btree::search::search_tree (163 samples, 0.08%)</title><rect x="202.3" y="229" width="1.0" height="15.0" fill="rgb(208,180,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.32" 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>pthread_mutex_lock (344 samples, 0.17%)</title><rect x="704.8" y="197" width="2.0" height="15.0" fill="rgb(252,151,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="707.78" 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>libprosic::model::priors::single_cell_bulk::prob_rho (3,399 samples, 1.69%)</title><rect x="689.1" y="213" width="20.0" height="15.0" fill="rgb(241,43,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="692.12" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>start (199,185 samples, 99.08%)</title><rect x="20.9" y="453" width="1169.1" height="15.0" fill="rgb(228,142,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.89" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Formatter::pad_integral::{{closure}} (27 samples, 0.01%)</title><rect x="71.7" y="117" width="0.1" height="15.0" fill="rgb(217,143,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="74.65" 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::fmt::Write::write_fmt::Adapter<'a, T> as core::fmt::Write>::write_str (1,052 samples, 0.52%)</title><rect x="50.6" y="197" width="6.2" height="15.0" fill="rgb(218,118,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="53.62" 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>main (199,184 samples, 99.08%)</title><rect x="20.9" y="421" width="1169.1" height="15.0" fill="rgb(245,156,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.90" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::write (64 samples, 0.03%)</title><rect x="1181.9" y="245" width="0.4" height="15.0" fill="rgb(236,59,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1184.89" 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>[unknown] (288 samples, 0.14%)</title><rect x="1180.1" y="69" width="1.7" height="15.0" fill="rgb(252,36,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1183.09" 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>rallocx (569 samples, 0.28%)</title><rect x="52.3" y="165" width="3.4" height="15.0" fill="rgb(215,41,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="55.33" 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>_memcpy_avx_unaligned (93 samples, 0.05%)</title><rect x="1176.9" y="213" width="0.6" height="15.0" fill="rgb(216,69,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1179.95" 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>isfree (20 samples, 0.01%)</title><rect x="1189.2" y="277" width="0.1" height="15.0" fill="rgb(244,17,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.15" 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>_memmove_avx_unaligned (31 samples, 0.02%)</title><rect x="201.9" y="213" width="0.2" height="15.0" fill="rgb(233,51,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.87" y="223.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