Created
November 21, 2018 17:46
-
-
Save dlaehnemann/8de85fcf5f3801c822f87b267b53f19d to your computer and use it in GitHub Desktop.
libprosic flamegraph of test09 on branch use-optimized-pairhmm at commit 4503ae6eebd6586d53f4e8ddb263b4ea28dd9ea6
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="726" onload="init(evt)" viewBox="0 0 1200 726" 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="726.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="709" 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="709" 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>_clone (53 samples, 0.78%)</title><rect x="11.0" y="645" width="9.2" height="15.0" fill="rgb(229,120,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.04" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="11.2" y="485" width="0.2" height="15.0" fill="rgb(229,2,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::len (8 samples, 0.12%)</title><rect x="1098.3" y="485" width="1.4" height="15.0" fill="rgb(216,86,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1101.33" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (9 samples, 0.13%)</title><rect x="11.4" y="133" width="1.5" height="15.0" fill="rgb(230,229,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" 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] (9 samples, 0.13%)</title><rect x="112.4" y="197" width="1.6" height="15.0" fill="rgb(247,153,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="115.40" 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] (2 samples, 0.03%)</title><rect x="214.5" y="341" width="0.3" height="15.0" fill="rgb(230,81,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="217.45" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_nptl_deallocate_ts.ar. (1 samples, 0.01%)</title><rect x="11.0" y="613" width="0.2" height="15.0" fill="rgb(243,223,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.04" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::stdio::print (1 samples, 0.01%)</title><rect x="30.9" y="197" width="0.2" height="15.0" fill="rgb(209,67,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" 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 samples, 0.01%)</title><rect x="10.2" y="597" width="0.1" height="15.0" fill="rgb(251,40,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.17" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::result::Result<T, E> as core::ops::try::Try>::into_result (3 samples, 0.04%)</title><rect x="278.4" y="549" width="0.6" height="15.0" fill="rgb(245,171,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.45" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::from_raw_parts_mut (17 samples, 0.25%)</title><rect x="455.2" y="485" width="3.0" height="15.0" fill="rgb(226,151,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="458.22" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup (21 samples, 0.31%)</title><rect x="31.1" y="517" width="3.6" height="15.0" fill="rgb(249,102,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.10" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_avx_unaligned (1 samples, 0.01%)</title><rect x="10.3" y="421" width="0.2" height="15.0" fill="rgb(209,208,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::observation::Observation as serde::ser::Serialize>::serialize (1 samples, 0.01%)</title><rect x="1189.8" y="421" width="0.2" height="15.0" fill="rgb(235,167,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::overflowing_add (3 samples, 0.04%)</title><rect x="468.9" y="437" width="0.5" height="15.0" fill="rgb(226,191,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.89" 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::num::<impl usize>::wrapping_sub (1 samples, 0.01%)</title><rect x="19.0" y="213" width="0.2" height="15.0" fill="rgb(243,40,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.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><alloc::raw_vec::RawVec<T, A>>::reserve_internal (5 samples, 0.07%)</title><rect x="18.5" y="277" width="0.8" height="15.0" fill="rgb(243,127,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.48" 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::slice::<impl [T]>::is_empty (21 samples, 0.31%)</title><rect x="251.6" y="533" width="3.7" height="15.0" fill="rgb(251,28,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="254.64" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_avx_unaligned (1 samples, 0.01%)</title><rect x="13.8" y="357" width="0.2" height="15.0" fill="rgb(237,27,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.81" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln (1 samples, 0.01%)</title><rect x="283.8" y="373" width="0.2" height="15.0" fill="rgb(253,42,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (6 samples, 0.09%)</title><rect x="112.9" y="165" width="1.1" height="15.0" fill="rgb(225,17,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="115.92" 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::estimation::alignment_properties::AlignmentProperties::estimate (40 samples, 0.59%)</title><rect x="13.1" y="421" width="6.9" height="15.0" fill="rgb(211,62,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.11" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::partial_cmp (180 samples, 2.64%)</title><rect x="712.9" y="485" width="31.2" height="15.0" fill="rgb(226,195,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="715.95" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_huge_dalloc (15 samples, 0.22%)</title><rect x="111.4" y="389" width="2.6" height="15.0" fill="rgb(210,83,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.36" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (1 samples, 0.01%)</title><rect x="281.7" y="485" width="0.2" height="15.0" fill="rgb(217,176,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.74" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::slice::<impl core::borrow::Borrow<[T]> for alloc::vec::Vec<T>>::borrow (1 samples, 0.01%)</title><rect x="280.4" y="517" width="0.1" height="15.0" fill="rgb(211,34,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ptr::Unique<T>>::as_ptr (4 samples, 0.06%)</title><rect x="66.2" y="469" width="0.7" height="15.0" fill="rgb(214,194,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.22" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (85 samples, 1.25%)</title><rect x="626.8" y="485" width="14.7" height="15.0" fill="rgb(241,205,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="629.81" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::map (21 samples, 0.31%)</title><rect x="31.1" y="597" width="3.6" height="15.0" fill="rgb(229,4,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.10" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::PairPileup<'a, A, B, P>>::case_likelihood (1 samples, 0.01%)</title><rect x="30.9" y="277" width="0.2" height="15.0" fill="rgb(240,200,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" 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::write_formatted_parts (15 samples, 0.22%)</title><rect x="27.1" y="101" width="2.6" height="15.0" fill="rgb(253,109,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.12" 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>gsl_cdf_ugaussian_P (2 samples, 0.03%)</title><rect x="283.5" y="357" width="0.3" height="15.0" fill="rgb(235,7,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.47" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::from_raw_parts (23 samples, 0.34%)</title><rect x="273.6" y="469" width="4.0" height="15.0" fill="rgb(207,200,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="276.61" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_tcache_fill_small (1 samples, 0.01%)</title><rect x="20.0" y="277" width="0.2" height="15.0" fill="rgb(212,38,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.03" 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::hash::sip::Sip13Rounds as core::hash::sip::Sip>::d_rounds (1 samples, 0.01%)</title><rect x="280.5" y="469" width="0.2" height="15.0" fill="rgb(241,66,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.52" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Add>::add (3 samples, 0.04%)</title><rect x="565.6" y="453" width="0.5" height="15.0" fill="rgb(245,121,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.58" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (46 samples, 0.67%)</title><rect x="206.8" y="485" width="8.0" height="15.0" fill="rgb(225,70,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="209.84" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::as_ptr (3 samples, 0.04%)</title><rect x="150.6" y="485" width="0.5" height="15.0" fill="rgb(238,134,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="153.62" 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>rgsl::randist::gaussian::ugaussian_P (1 samples, 0.01%)</title><rect x="282.1" y="517" width="0.2" height="15.0" fill="rgb(208,221,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.08" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::cell::RefCell<T>>::try_borrow (1 samples, 0.01%)</title><rect x="281.9" y="549" width="0.2" height="15.0" fill="rgb(237,199,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.91" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::IndexedReader::from_path (1 samples, 0.01%)</title><rect x="20.0" y="421" width="0.2" height="15.0" fill="rgb(225,60,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.03" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::ptr (6 samples, 0.09%)</title><rect x="586.0" y="453" width="1.0" height="15.0" fill="rgb(233,43,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.99" 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>mallocx (1 samples, 0.01%)</title><rect x="18.5" y="229" width="0.1" height="15.0" fill="rgb(251,66,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.48" 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_uncompress (23 samples, 0.34%)</title><rect x="14.0" y="325" width="4.0" height="15.0" fill="rgb(224,219,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.98" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><T as alloc::vec::SpecFromElem>::from_elem (1 samples, 0.01%)</title><rect x="1189.7" y="501" width="0.1" height="15.0" fill="rgb(249,210,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.65" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::iter::traits::Sum>::sum::{{closure}} (28 samples, 0.41%)</title><rect x="920.5" y="389" width="4.9" height="15.0" fill="rgb(211,200,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="923.51" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::io::fasta::IndexedReader<R>>::read_into_buffer (1,418 samples, 20.79%)</title><rect x="34.9" y="565" width="245.3" height="15.0" fill="rgb(219,171,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.91" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><bio::io::fasta::IndexedReader<R..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::IndexedReader::new (1 samples, 0.01%)</title><rect x="20.0" y="405" width="0.2" height="15.0" fill="rgb(253,68,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.03" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_ieee754_exp_avx (1 samples, 0.01%)</title><rect x="283.6" y="309" width="0.2" height="15.0" fill="rgb(216,49,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.64" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::size_of (36 samples, 0.53%)</title><rect x="1059.4" y="405" width="6.2" height="15.0" fill="rgb(243,57,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.41" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (16 samples, 0.23%)</title><rect x="585.1" y="469" width="2.8" height="15.0" fill="rgb(228,74,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.12" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::overflowing_mul (1 samples, 0.01%)</title><rect x="19.2" y="213" width="0.1" height="15.0" fill="rgb(230,47,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.17" 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::collections::hash::map::HashMap<K, V, S>>::reserve (2 samples, 0.03%)</title><rect x="280.9" y="565" width="0.3" height="15.0" fill="rgb(226,173,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.87" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::is_empty (11 samples, 0.16%)</title><rect x="1097.8" y="501" width="1.9" height="15.0" fill="rgb(240,205,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1100.81" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_tcache_alloc_small_hard (1 samples, 0.01%)</title><rect x="20.0" y="293" width="0.2" height="15.0" fill="rgb(234,222,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.03" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ops::function::FnOnce::call_once (1 samples, 0.01%)</title><rect x="1189.8" y="597" width="0.2" height="15.0" fill="rgb(235,12,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::min (92 samples, 1.35%)</title><rect x="234.9" y="533" width="15.9" height="15.0" fill="rgb(245,54,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="237.86" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_with (5 samples, 0.07%)</title><rect x="470.8" y="501" width="0.9" height="15.0" fill="rgb(253,120,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.79" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::ops::arith::Add>::add (1 samples, 0.01%)</title><rect x="31.1" y="453" width="0.2" height="15.0" fill="rgb(235,56,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.10" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::enumerate (28 samples, 0.41%)</title><rect x="843.4" y="501" width="4.8" height="15.0" fill="rgb(242,175,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="846.37" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2 samples, 0.03%)</title><rect x="10.3" y="613" width="0.4" height="15.0" fill="rgb(215,113,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="150.1" y="341" width="0.2" height="15.0" fill="rgb(253,125,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="153.11" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (10 samples, 0.15%)</title><rect x="282.8" y="469" width="1.7" height="15.0" fill="rgb(253,197,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.77" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::next (1 samples, 0.01%)</title><rect x="13.3" y="405" width="0.2" height="15.0" fill="rgb(206,34,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.29" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::Record::cigar (7 samples, 0.10%)</title><rect x="18.5" y="405" width="1.2" height="15.0" fill="rgb(253,162,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_madvise (9 samples, 0.13%)</title><rect x="11.4" y="197" width="1.5" height="15.0" fill="rgb(224,5,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" 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 as core::ops::arith::Add>::add (2 samples, 0.03%)</title><rect x="642.6" y="501" width="0.3" height="15.0" fill="rgb(253,22,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.55" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Add>::add (2 samples, 0.03%)</title><rect x="21.2" y="149" width="0.4" height="15.0" fill="rgb(217,109,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.24" 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::Seq<'a> as core::ops::index::Index<usize>>::index (18 samples, 0.26%)</title><rect x="555.9" y="485" width="3.1" height="15.0" fill="rgb(220,140,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.89" 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>time (1 samples, 0.01%)</title><rect x="10.2" y="629" width="0.1" height="15.0" fill="rgb(234,129,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.17" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::collections::hash::table::make_hash (2 samples, 0.03%)</title><rect x="280.5" y="533" width="0.4" height="15.0" fill="rgb(228,131,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.52" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve_internal (4 samples, 0.06%)</title><rect x="282.8" y="405" width="0.7" height="15.0" fill="rgb(216,155,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.77" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::fold::{{closure}} (1 samples, 0.01%)</title><rect x="282.6" y="437" width="0.2" height="15.0" fill="rgb(214,40,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.60" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.3" y="341" width="0.2" height="15.0" fill="rgb(216,88,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::rt::lang_start (2 samples, 0.03%)</title><rect x="10.3" y="597" width="0.4" height="15.0" fill="rgb(219,114,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::len (17 samples, 0.25%)</title><rect x="151.1" y="485" width="3.0" height="15.0" fill="rgb(250,204,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="154.14" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::IndexMut<I>>::index_mut (255 samples, 3.74%)</title><rect x="423.6" y="517" width="44.1" height="15.0" fill="rgb(213,122,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.57" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><all..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::map::HashMap<K, V, S>>::search::{{closure}} (1 samples, 0.01%)</title><rect x="280.4" y="533" width="0.1" height="15.0" fill="rgb(234,14,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.35" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (6 samples, 0.09%)</title><rect x="11.9" y="53" width="1.0" height="15.0" fill="rgb(221,38,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.90" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_add_exp (21 samples, 0.31%)</title><rect x="21.6" y="165" width="3.6" height="15.0" fill="rgb(231,177,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.59" 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_pages_purge (9 samples, 0.13%)</title><rect x="11.4" y="213" width="1.5" height="15.0" fill="rgb(251,35,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.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><std::collections::hash::table::EmptyBucket<K, V, M>>::put (1 samples, 0.01%)</title><rect x="281.0" y="501" width="0.2" height="15.0" fill="rgb(221,153,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.04" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>serde::ser::impls::<impl serde::ser::Serialize for &'a T>::serialize (1 samples, 0.01%)</title><rect x="1189.8" y="485" width="0.2" height="15.0" fill="rgb(237,95,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::table::RawTable<K, V>>::raw_bucket_at (1 samples, 0.01%)</title><rect x="280.9" y="469" width="0.1" height="15.0" fill="rgb(227,95,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.87" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::nth (146 samples, 2.14%)</title><rect x="817.9" y="469" width="25.3" height="15.0" fill="rgb(240,94,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="820.94" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::sum (1 samples, 0.01%)</title><rect x="282.6" y="517" width="0.2" height="15.0" fill="rgb(238,194,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.60" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::ops::arith::Sub>::sub (1 samples, 0.01%)</title><rect x="642.9" y="501" width="0.2" height="15.0" fill="rgb(218,81,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.90" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sync::once::Once::call_once (12 samples, 0.18%)</title><rect x="617.3" y="453" width="2.1" height="15.0" fill="rgb(226,47,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="620.30" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ptr::Unique<T>>::as_ptr (16 samples, 0.23%)</title><rect x="385.3" y="469" width="2.8" height="15.0" fill="rgb(221,89,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="388.34" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (61 samples, 0.89%)</title><rect x="20.6" y="373" width="10.5" height="15.0" fill="rgb(243,188,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="11.2" y="437" width="0.2" height="15.0" fill="rgb(251,198,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::collect (61 samples, 0.89%)</title><rect x="20.6" y="565" width="10.5" height="15.0" fill="rgb(253,128,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::hash::sip::Hasher<S> as core::hash::Hasher>::finish (1 samples, 0.01%)</title><rect x="280.2" y="485" width="0.2" height="15.0" fill="rgb(219,138,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.18" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::offset (1 samples, 0.01%)</title><rect x="353.9" y="469" width="0.1" height="15.0" fill="rgb(220,155,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="356.86" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="13.1" y="325" width="0.2" height="15.0" fill="rgb(207,82,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.11" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::drop_in_place (1 samples, 0.01%)</title><rect x="18.3" y="373" width="0.2" height="15.0" fill="rgb(231,122,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.30" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>serde::ser::impls::<impl serde::ser::Serialize for f64>::serialize (1 samples, 0.01%)</title><rect x="1189.8" y="357" width="0.2" height="15.0" fill="rgb(254,135,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>arena_purge_to_limit (15 samples, 0.22%)</title><rect x="111.4" y="341" width="2.6" height="15.0" fill="rgb(233,22,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.36" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::offset (32 samples, 0.47%)</title><rect x="1113.2" y="469" width="5.5" height="15.0" fill="rgb(225,105,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1116.20" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln::{{closure}} (1 samples, 0.01%)</title><rect x="284.2" y="373" width="0.1" height="15.0" fill="rgb(232,19,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.16" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="33.4" y="325" width="0.1" height="15.0" fill="rgb(217,10,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="36.35" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="11.2" y="469" width="0.2" height="15.0" fill="rgb(225,47,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="13.1" y="309" width="0.2" height="15.0" fill="rgb(218,93,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.11" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::DeletionEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_xy (104 samples, 1.52%)</title><rect x="548.6" y="517" width="18.0" height="15.0" fill="rgb(222,137,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.63" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (9 samples, 0.13%)</title><rect x="11.4" y="165" width="1.5" height="15.0" fill="rgb(229,62,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" 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::ptr::<impl *mut T>::is_null (28 samples, 0.41%)</title><rect x="540.8" y="501" width="4.9" height="15.0" fill="rgb(228,174,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.84" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>serde::ser::impls::<impl serde::ser::Serialize for (T0, T1, T2, T3, T4)>::serialize (1 samples, 0.01%)</title><rect x="1189.8" y="469" width="0.2" height="15.0" fill="rgb(251,84,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index (12 samples, 0.18%)</title><rect x="611.1" y="437" width="2.0" height="15.0" fill="rgb(239,31,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="614.07" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::next (248 samples, 3.64%)</title><rect x="761.9" y="485" width="42.9" height="15.0" fill="rgb(247,126,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.90" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><cor..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::map::DefaultHasher as core::hash::Hasher>::write (1 samples, 0.01%)</title><rect x="280.7" y="469" width="0.2" height="15.0" fill="rgb(236,57,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.70" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::fragments::IndelEvidence::pmf (1 samples, 0.01%)</title><rect x="282.1" y="549" width="0.2" height="15.0" fill="rgb(236,204,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.08" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (5 samples, 0.07%)</title><rect x="354.0" y="517" width="0.9" height="15.0" fill="rgb(211,99,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.04" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys_common::backtrace::_rust_begin_short_backtrace (52 samples, 0.76%)</title><rect x="11.2" y="533" width="9.0" height="15.0" fill="rgb(229,134,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (38 samples, 0.56%)</title><rect x="208.2" y="373" width="6.6" height="15.0" fill="rgb(241,7,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="211.22" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>malloc (1 samples, 0.01%)</title><rect x="20.0" y="309" width="0.2" height="15.0" fill="rgb(228,98,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.03" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___exp (1 samples, 0.01%)</title><rect x="283.6" y="325" width="0.2" height="15.0" fill="rgb(240,199,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.64" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (14 samples, 0.21%)</title><rect x="147.9" y="373" width="2.4" height="15.0" fill="rgb(210,174,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="150.86" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (31 samples, 0.45%)</title><rect x="144.9" y="453" width="5.4" height="15.0" fill="rgb(228,122,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.92" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>inflate_block (3 samples, 0.04%)</title><rect x="281.2" y="453" width="0.5" height="15.0" fill="rgb(252,71,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.22" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::map::HashMap<K, V, S>>::reserve_internal (2 samples, 0.03%)</title><rect x="280.9" y="549" width="0.3" height="15.0" fill="rgb(229,5,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.87" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (26 samples, 0.38%)</title><rect x="106.9" y="277" width="4.5" height="15.0" fill="rgb(239,58,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="109.86" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::overflowing_sub (2 samples, 0.03%)</title><rect x="1188.8" y="485" width="0.3" height="15.0" fill="rgb(207,146,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.79" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.0" y="565" width="0.2" height="15.0" fill="rgb(229,217,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::alloc::Global as core::alloc::Alloc>::realloc (196 samples, 2.87%)</title><rect x="80.1" y="453" width="33.9" height="15.0" fill="rgb(252,209,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="83.05" y="463.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><bio::stats::probs::LogProb as core::cmp::PartialOrd>::gt (1 samples, 0.01%)</title><rect x="31.6" y="437" width="0.2" height="15.0" fill="rgb(250,152,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.62" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>arena_bin_malloc_hard (1 samples, 0.01%)</title><rect x="20.0" y="261" width="0.2" height="15.0" fill="rgb(209,116,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.03" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (17 samples, 0.25%)</title><rect x="561.6" y="469" width="2.9" height="15.0" fill="rgb(240,167,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.60" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><test::Sink as std::io::Write>::write (1 samples, 0.01%)</title><rect x="32.5" y="373" width="0.2" height="15.0" fill="rgb(240,82,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.49" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::PairCaller<A, B, P>>::pileup (1 samples, 0.01%)</title><rect x="34.7" y="597" width="0.2" height="15.0" fill="rgb(230,99,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.73" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index (1 samples, 0.01%)</title><rect x="588.4" y="453" width="0.2" height="15.0" fill="rgb(243,229,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.41" 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>arena_purge_to_limit (9 samples, 0.13%)</title><rect x="11.4" y="245" width="1.5" height="15.0" fill="rgb(244,171,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.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>core::mem::size_of (4 samples, 0.06%)</title><rect x="185.6" y="501" width="0.7" height="15.0" fill="rgb(208,52,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="188.56" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="32.5" y="357" width="0.2" height="15.0" fill="rgb(246,189,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.49" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_pages_purge (15 samples, 0.22%)</title><rect x="111.4" y="309" width="2.6" height="15.0" fill="rgb(224,87,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.36" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::map::HashMap<K, V, S>>::make_hash (1 samples, 0.01%)</title><rect x="280.2" y="549" width="0.2" height="15.0" fill="rgb(244,59,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.18" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::table::Bucket<K, V, M>>::at_index (1 samples, 0.01%)</title><rect x="280.9" y="485" width="0.1" height="15.0" fill="rgb(236,84,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.87" 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>[unknown] (1 samples, 0.01%)</title><rect x="10.0" y="613" width="0.2" height="15.0" fill="rgb(245,210,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[libgs....0] (2 samples, 0.03%)</title><rect x="283.5" y="341" width="0.3" height="15.0" fill="rgb(243,182,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.47" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::prob_match_mismatch (254 samples, 3.72%)</title><rect x="576.1" y="501" width="44.0" height="15.0" fill="rgb(226,149,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.13" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libp..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_log1p (2 samples, 0.03%)</title><rect x="24.9" y="133" width="0.3" height="15.0" fill="rgb(246,91,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.88" 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::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::ge (1 samples, 0.01%)</title><rect x="642.4" y="469" width="0.2" height="15.0" fill="rgb(210,209,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.38" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (2 samples, 0.03%)</title><rect x="29.2" y="37" width="0.3" height="15.0" fill="rgb(237,11,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="32.20" 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><T as core::convert::TryFrom<U>>::try_from (1 samples, 0.01%)</title><rect x="1189.5" y="469" width="0.2" height="15.0" fill="rgb(233,195,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.48" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::PairPileup<'a, A, B, P>>::joint_prob (61 samples, 0.89%)</title><rect x="20.6" y="613" width="10.5" height="15.0" fill="rgb(210,223,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::call::pairwise::call (5,259 samples, 77.09%)</title><rect x="280.2" y="645" width="909.6" height="15.0" fill="rgb(211,49,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.18" y="655.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>core::iter::iterator::Iterator::collect (10 samples, 0.15%)</title><rect x="282.8" y="517" width="1.7" height="15.0" fill="rgb(248,101,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.77" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::result::Result<T, E> as core::ops::try::Try>::into_result (4 samples, 0.06%)</title><rect x="194.2" y="533" width="0.7" height="15.0" fill="rgb(246,158,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="197.21" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::hash::sip::SipHasher13 as core::hash::Hasher>::write (1 samples, 0.01%)</title><rect x="280.7" y="453" width="0.2" height="15.0" fill="rgb(205,46,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.70" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::write (2 samples, 0.03%)</title><rect x="470.4" y="501" width="0.4" height="15.0" fill="rgb(227,225,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.45" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hfile_init (1 samples, 0.01%)</title><rect x="20.0" y="325" width="0.2" height="15.0" fill="rgb(225,109,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.03" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_isoc99_vsscanf (1 samples, 0.01%)</title><rect x="12.9" y="309" width="0.2" height="15.0" fill="rgb(220,72,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.94" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Skip<I> as core::iter::iterator::Iterator>::next (529 samples, 7.75%)</title><rect x="751.7" y="501" width="91.5" height="15.0" fill="rgb(226,66,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="754.69" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::ite..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::alloc::Layout::array (1 samples, 0.01%)</title><rect x="280.9" y="437" width="0.1" height="15.0" fill="rgb(217,43,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.87" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (21 samples, 0.31%)</title><rect x="609.5" y="453" width="3.6" height="15.0" fill="rgb(207,212,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="612.51" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::offset (1 samples, 0.01%)</title><rect x="1189.7" y="469" width="0.1" height="15.0" fill="rgb(246,199,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.65" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_chunk_dalloc_wrapper (15 samples, 0.22%)</title><rect x="111.4" y="325" width="2.6" height="15.0" fill="rgb(244,160,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.36" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::offset (19 samples, 0.28%)</title><rect x="269.8" y="453" width="3.3" height="15.0" fill="rgb(231,189,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="272.80" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_rust_maybe_catch_panic (1 samples, 0.01%)</title><rect x="1189.8" y="629" width="0.2" height="15.0" fill="rgb(211,170,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (42 samples, 0.62%)</title><rect x="207.5" y="421" width="7.3" height="15.0" fill="rgb(217,25,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.53" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::exp_m1 (1 samples, 0.01%)</title><rect x="25.7" y="133" width="0.2" height="15.0" fill="rgb(225,76,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.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>core::alloc::Layout::repeat (3 samples, 0.04%)</title><rect x="18.8" y="245" width="0.5" height="15.0" fill="rgb(239,80,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.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>[unknown] (1 samples, 0.01%)</title><rect x="10.0" y="533" width="0.2" height="15.0" fill="rgb(250,98,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_with (1 samples, 0.01%)</title><rect x="1189.7" y="485" width="0.1" height="15.0" fill="rgb(212,63,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.65" 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>[unknown] (1 samples, 0.01%)</title><rect x="10.2" y="533" width="0.1" height="15.0" fill="rgb(216,72,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.17" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::null_mut (2 samples, 0.03%)</title><rect x="398.8" y="469" width="0.4" height="15.0" fill="rgb(218,177,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.84" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_from_slice (2 samples, 0.03%)</title><rect x="28.2" y="37" width="0.3" height="15.0" fill="rgb(245,15,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="31.16" 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>alloc::alloc::alloc (1 samples, 0.01%)</title><rect x="18.5" y="245" width="0.1" height="15.0" fill="rgb(226,34,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.48" 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::sync::once::Once::is_completed (1 samples, 0.01%)</title><rect x="566.4" y="437" width="0.2" height="15.0" fill="rgb(215,46,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.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>bgzf_read (27 samples, 0.40%)</title><rect x="13.6" y="373" width="4.7" height="15.0" fill="rgb(216,142,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.63" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_avx_unaligned (1 samples, 0.01%)</title><rect x="33.2" y="325" width="0.2" height="15.0" fill="rgb(224,54,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="36.18" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (19 samples, 0.28%)</title><rect x="147.0" y="405" width="3.3" height="15.0" fill="rgb(246,221,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="149.99" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_expm1 (1 samples, 0.01%)</title><rect x="25.7" y="117" width="0.2" height="15.0" fill="rgb(207,154,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.74" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZN4core3fmt5float32float_to_decimal_common_shortest17h9b22effd5691a683.lv.5848613266883285139 (12 samples, 0.18%)</title><rect x="32.7" y="405" width="2.0" height="15.0" fill="rgb(214,223,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.66" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>itertools::minmax::minmax_impl (21 samples, 0.31%)</title><rect x="31.1" y="565" width="3.6" height="15.0" fill="rgb(216,221,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.10" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::Write::write_fmt::Adaptor<'a, T> as core::fmt::Write>::write_str (15 samples, 0.22%)</title><rect x="27.1" y="85" width="2.6" height="15.0" fill="rgb(253,94,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.12" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (6 samples, 0.09%)</title><rect x="18.5" y="325" width="1.0" height="15.0" fill="rgb(235,125,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.48" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.3" y="405" width="0.2" height="15.0" fill="rgb(229,36,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::is_null (51 samples, 0.75%)</title><rect x="446.4" y="485" width="8.8" height="15.0" fill="rgb(254,161,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="449.40" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::next (5 samples, 0.07%)</title><rect x="283.5" y="437" width="0.8" height="15.0" fill="rgb(233,157,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.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><alloc::raw_vec::RawVec<T, A>>::reserve (4 samples, 0.06%)</title><rect x="282.8" y="421" width="0.7" height="15.0" fill="rgb(205,173,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.77" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_add_exp (10 samples, 0.15%)</title><rect x="641.5" y="517" width="1.7" height="15.0" fill="rgb(250,89,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="644.51" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::option::Option<T>>::map (1 samples, 0.01%)</title><rect x="30.9" y="341" width="0.2" height="15.0" fill="rgb(234,197,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_all (1 samples, 0.01%)</title><rect x="32.5" y="389" width="0.2" height="15.0" fill="rgb(231,154,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.49" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::iter (148 samples, 2.17%)</title><rect x="1099.7" y="501" width="25.6" height="15.0" fill="rgb(246,121,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1102.71" y="511.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>[unknown] (44 samples, 0.64%)</title><rect x="207.2" y="437" width="7.6" height="15.0" fill="rgb(227,2,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.19" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::fold::{{closure}} (940 samples, 13.78%)</title><rect x="876.6" y="421" width="162.6" height="15.0" fill="rgb(225,31,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="879.58" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::iter::Enumera..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::offset (19 samples, 0.28%)</title><rect x="801.5" y="453" width="3.3" height="15.0" fill="rgb(222,81,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.51" 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>[unknown] (7 samples, 0.10%)</title><rect x="11.7" y="101" width="1.2" height="15.0" fill="rgb(225,214,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.73" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::next (1 samples, 0.01%)</title><rect x="19.3" y="293" width="0.2" height="15.0" fill="rgb(236,13,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.34" 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::f64::<impl f64>::log_wrapper (2 samples, 0.03%)</title><rect x="284.0" y="389" width="0.3" height="15.0" fill="rgb(222,172,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.98" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.0" y="581" width="0.2" height="15.0" fill="rgb(206,70,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::IndexMut<I>>::index_mut (1 samples, 0.01%)</title><rect x="18.3" y="341" width="0.2" height="15.0" fill="rgb(221,8,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.30" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_all (14 samples, 0.21%)</title><rect x="27.3" y="69" width="2.4" height="15.0" fill="rgb(208,115,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.30" 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>[unknown] (3 samples, 0.04%)</title><rect x="149.8" y="357" width="0.5" height="15.0" fill="rgb(220,13,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="152.76" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::Record::qname (1 samples, 0.01%)</title><rect x="34.7" y="565" width="0.2" height="15.0" fill="rgb(216,157,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.73" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Map<I, F> as core::iter::iterator::Iterator>::next (1 samples, 0.01%)</title><rect x="30.9" y="357" width="0.2" height="15.0" fill="rgb(240,1,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::hash::sip::SipHasher13 as core::hash::Hasher>::finish (1 samples, 0.01%)</title><rect x="280.5" y="501" width="0.2" height="15.0" fill="rgb(217,149,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.52" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>itertools::Itertools::minmax_by_key (21 samples, 0.31%)</title><rect x="31.1" y="581" width="3.6" height="15.0" fill="rgb(230,147,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.10" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::sample::Sample::extract_observations (1 samples, 0.01%)</title><rect x="34.7" y="581" width="0.2" height="15.0" fill="rgb(250,105,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.73" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::truncate (12 samples, 0.18%)</title><rect x="467.7" y="501" width="2.1" height="15.0" fill="rgb(209,212,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.68" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::size_of (10 samples, 0.15%)</title><rect x="835.8" y="453" width="1.7" height="15.0" fill="rgb(222,12,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="838.76" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.2" y="501" width="0.1" height="15.0" fill="rgb(216,131,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.17" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (9 samples, 0.13%)</title><rect x="11.4" y="181" width="1.5" height="15.0" fill="rgb(230,220,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" 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::{{closure}} (59 samples, 0.86%)</title><rect x="20.7" y="197" width="10.2" height="15.0" fill="rgb(248,214,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.72" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::checked_sub (4 samples, 0.06%)</title><rect x="1188.4" y="501" width="0.7" height="15.0" fill="rgb(245,22,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.44" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::ge (2 samples, 0.03%)</title><rect x="23.1" y="101" width="0.4" height="15.0" fill="rgb(240,226,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.15" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::le (1 samples, 0.01%)</title><rect x="23.8" y="101" width="0.2" height="15.0" fill="rgb(215,110,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.84" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::offset (5 samples, 0.07%)</title><rect x="842.3" y="453" width="0.9" height="15.0" fill="rgb(211,61,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="845.33" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_sum_exp (3 samples, 0.04%)</title><rect x="282.3" y="533" width="0.5" height="15.0" fill="rgb(217,132,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.25" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::Record::unpack_cigar (1 samples, 0.01%)</title><rect x="281.7" y="549" width="0.2" height="15.0" fill="rgb(220,51,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.74" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::swap_nonoverlapping_one (2 samples, 0.03%)</title><rect x="1188.1" y="501" width="0.3" height="15.0" fill="rgb(212,169,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.10" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialOrd>::gt (3 samples, 0.04%)</title><rect x="642.0" y="501" width="0.6" height="15.0" fill="rgb(217,62,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.03" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.0" y="549" width="0.2" height="15.0" fill="rgb(249,55,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcache_destroy (1 samples, 0.01%)</title><rect x="11.0" y="565" width="0.2" height="15.0" fill="rgb(240,196,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.04" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys_common::backtrace::_rust_begin_short_backtrace (1 samples, 0.01%)</title><rect x="1189.8" y="645" width="0.2" height="15.0" fill="rgb(219,211,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for usize>::lt (7 samples, 0.10%)</title><rect x="1175.5" y="501" width="1.2" height="15.0" fill="rgb(220,113,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.47" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::checked_add (82 samples, 1.20%)</title><rect x="1161.3" y="485" width="14.2" height="15.0" fill="rgb(208,164,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1164.29" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>inflate_block (25 samples, 0.37%)</title><rect x="14.0" y="341" width="4.3" height="15.0" fill="rgb(221,85,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.98" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bcf_hdr_dup (1 samples, 0.01%)</title><rect x="12.9" y="389" width="0.2" height="15.0" fill="rgb(216,105,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.94" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (15 samples, 0.22%)</title><rect x="111.4" y="213" width="2.6" height="15.0" fill="rgb(253,144,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.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>core::ptr::<impl *const T>::add (14 samples, 0.21%)</title><rect x="186.3" y="501" width="2.4" height="15.0" fill="rgb(231,51,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="189.26" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (125 samples, 1.83%)</title><rect x="256.8" y="533" width="21.6" height="15.0" fill="rgb(249,225,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="259.83" y="543.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><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (1 samples, 0.01%)</title><rect x="280.4" y="485" width="0.1" height="15.0" fill="rgb(222,157,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.35" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::copy_from_slice (1 samples, 0.01%)</title><rect x="10.3" y="437" width="0.2" height="15.0" fill="rgb(210,219,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.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>core::cmp::min (32 samples, 0.47%)</title><rect x="195.8" y="517" width="5.5" height="15.0" fill="rgb(238,90,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="198.77" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::reserve (5 samples, 0.07%)</title><rect x="18.5" y="309" width="0.8" height="15.0" fill="rgb(242,187,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.48" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::map::HashMap<K, V, S>>::insert (2 samples, 0.03%)</title><rect x="280.9" y="581" width="0.3" height="15.0" fill="rgb(213,187,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.87" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Map<I, F> as core::iter::iterator::Iterator>::next (1 samples, 0.01%)</title><rect x="19.3" y="309" width="0.2" height="15.0" fill="rgb(225,75,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.34" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::Ord::min (27 samples, 0.40%)</title><rect x="196.6" y="501" width="4.7" height="15.0" fill="rgb(237,79,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="199.63" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::new (4 samples, 0.06%)</title><rect x="1189.1" y="533" width="0.7" height="15.0" fill="rgb(218,154,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.14" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as bio::utils::fastexp::FastExp<f64>>::fastexp (1 samples, 0.01%)</title><rect x="25.6" y="133" width="0.1" height="15.0" fill="rgb(251,117,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.57" 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>rust_htslib::bcf::header::Header::from_template (1 samples, 0.01%)</title><rect x="12.9" y="405" width="0.2" height="15.0" fill="rgb(218,29,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.94" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (116 samples, 1.70%)</title><rect x="214.8" y="517" width="20.1" height="15.0" fill="rgb(227,95,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="217.80" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::size_of (10 samples, 0.15%)</title><rect x="1107.8" y="485" width="1.8" height="15.0" fill="rgb(236,50,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1110.84" 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>statrs::statistics::slice_statistics::<impl statrs::statistics::order_statistics::OrderStatistics<f64> for [f64]>::quantile (1 samples, 0.01%)</title><rect x="19.9" y="389" width="0.1" height="15.0" fill="rgb(253,213,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.86" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::le (83 samples, 1.22%)</title><rect x="729.7" y="469" width="14.4" height="15.0" fill="rgb(238,123,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.73" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::collections::hash::map::search_hashed_nonempty (1 samples, 0.01%)</title><rect x="280.4" y="549" width="0.1" height="15.0" fill="rgb(230,10,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.35" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::observation::Evidence::insert_size (1 samples, 0.01%)</title><rect x="284.5" y="565" width="0.2" height="15.0" fill="rgb(245,49,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.50" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::IndelEvidence::prob (5,233 samples, 76.71%)</title><rect x="284.7" y="549" width="905.1" height="15.0" fill="rgb(242,20,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.68" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::evidence::reads::IndelEvidence::prob</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ptr::Unique<T>>::as_ptr (3 samples, 0.04%)</title><rect x="632.7" y="437" width="0.5" height="15.0" fill="rgb(214,31,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="635.69" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::prob_match_mismatch (83 samples, 1.22%)</title><rect x="552.3" y="501" width="14.3" height="15.0" fill="rgb(224,125,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.26" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (30 samples, 0.44%)</title><rect x="106.2" y="293" width="5.2" height="15.0" fill="rgb(216,2,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="109.17" 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::vec::Vec<T> as core::ops::index::Index<I>>::index (39 samples, 0.57%)</title><rect x="568.0" y="485" width="6.7" height="15.0" fill="rgb(208,10,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="571.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>bio::stats::probs::LogProb::ln_sum_exp::{{closure}} (658 samples, 9.65%)</title><rect x="925.4" y="389" width="113.8" height="15.0" fill="rgb(212,173,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="928.36" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::pr..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.2" y="581" width="0.1" height="15.0" fill="rgb(240,54,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.17" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::alloc::Layout::repeat (1 samples, 0.01%)</title><rect x="280.9" y="421" width="0.1" height="15.0" fill="rgb(205,74,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.87" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::next (292 samples, 4.28%)</title><rect x="1039.2" y="421" width="50.5" height="15.0" fill="rgb(207,122,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1042.17" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (21 samples, 0.31%)</title><rect x="146.6" y="421" width="3.7" height="15.0" fill="rgb(209,96,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="149.65" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><I as core::iter::traits::IntoIterator>::into_iter (2 samples, 0.03%)</title><rect x="674.2" y="501" width="0.3" height="15.0" fill="rgb(207,86,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="677.20" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_one_minus_exp (5 samples, 0.07%)</title><rect x="25.2" y="165" width="0.9" height="15.0" fill="rgb(234,11,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.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><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::map::{{closure}} (21 samples, 0.31%)</title><rect x="31.1" y="549" width="3.6" height="15.0" fill="rgb(254,156,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.10" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>statrs::statistics::slice_statistics::select_inplace (1 samples, 0.01%)</title><rect x="19.9" y="373" width="0.1" height="15.0" fill="rgb(254,30,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.86" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::alloc::Layout::from_size_align_unchecked (1 samples, 0.01%)</title><rect x="18.8" y="229" width="0.2" height="15.0" fill="rgb(222,147,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.82" 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 (23 samples, 0.34%)</title><rect x="613.1" y="469" width="4.0" height="15.0" fill="rgb(229,17,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="616.15" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys::unix::thread::guard::init (1 samples, 0.01%)</title><rect x="10.5" y="565" width="0.2" height="15.0" fill="rgb(228,51,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.52" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::from_raw_parts (7 samples, 0.10%)</title><rect x="571.8" y="453" width="1.2" height="15.0" fill="rgb(251,151,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.81" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for usize>::le (11 samples, 0.16%)</title><rect x="199.4" y="485" width="1.9" height="15.0" fill="rgb(240,50,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="202.40" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::from_raw_parts (23 samples, 0.34%)</title><rect x="131.6" y="485" width="4.0" height="15.0" fill="rgb(213,228,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="134.60" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_log1p (1 samples, 0.01%)</title><rect x="32.1" y="421" width="0.2" height="15.0" fill="rgb(237,173,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.14" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::len (20 samples, 0.29%)</title><rect x="176.7" y="501" width="3.5" height="15.0" fill="rgb(212,135,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="179.74" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::particular_miscall (34 samples, 0.50%)</title><rect x="560.7" y="485" width="5.9" height="15.0" fill="rgb(211,125,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="563.74" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::is_null (18 samples, 0.26%)</title><rect x="188.7" y="501" width="3.1" height="15.0" fill="rgb(243,191,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="191.68" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl isize>::wrapping_add (6 samples, 0.09%)</title><rect x="837.5" y="453" width="1.0" height="15.0" fill="rgb(254,55,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="840.49" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::map::DefaultHasher as core::hash::Hasher>::finish (1 samples, 0.01%)</title><rect x="280.2" y="517" width="0.2" height="15.0" fill="rgb(216,209,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.18" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::drop_in_place (9 samples, 0.13%)</title><rect x="11.4" y="389" width="1.5" height="15.0" fill="rgb(218,148,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><rust_htslib::bam::Reader as rust_htslib::bam::Read>::read (28 samples, 0.41%)</title><rect x="13.5" y="405" width="4.8" height="15.0" fill="rgb(209,9,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.46" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve_internal (228 samples, 3.34%)</title><rect x="77.3" y="469" width="39.4" height="15.0" fill="rgb(212,89,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="80.29" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><al..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hts_itr_next (3 samples, 0.04%)</title><rect x="281.2" y="533" width="0.5" height="15.0" fill="rgb(210,201,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.22" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln_1p (1 samples, 0.01%)</title><rect x="32.1" y="437" width="0.2" height="15.0" fill="rgb(245,139,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.14" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_tcache_bin_flush_small (1 samples, 0.01%)</title><rect x="11.0" y="549" width="0.2" height="15.0" fill="rgb(227,190,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.04" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>inflate (2 samples, 0.03%)</title><rect x="281.2" y="421" width="0.4" height="15.0" fill="rgb(235,184,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.22" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::from_raw_parts (25 samples, 0.37%)</title><rect x="228.8" y="469" width="4.3" height="15.0" fill="rgb(238,198,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="231.81" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::fragments::IndelEvidence::prob_sample_alt::{{closure}}::{{closure}} (5 samples, 0.07%)</title><rect x="283.5" y="421" width="0.8" height="15.0" fill="rgb(221,159,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.47" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ops::function::FnOnce::call_once (51 samples, 0.75%)</title><rect x="11.4" y="485" width="8.8" height="15.0" fill="rgb(233,76,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &'a mut F>::call_once (60 samples, 0.88%)</title><rect x="20.6" y="293" width="10.3" height="15.0" fill="rgb(239,125,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" 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] (1 samples, 0.01%)</title><rect x="13.1" y="357" width="0.2" height="15.0" fill="rgb(209,201,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.11" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::iter::range::Step>::add_usize (5 samples, 0.07%)</title><rect x="468.5" y="469" width="0.9" height="15.0" fill="rgb(250,47,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.54" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test::run_tests_console (1 samples, 0.01%)</title><rect x="10.3" y="469" width="0.2" height="15.0" fill="rgb(208,64,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (9 samples, 0.13%)</title><rect x="11.4" y="149" width="1.5" height="15.0" fill="rgb(213,87,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.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><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (1 samples, 0.01%)</title><rect x="280.4" y="501" width="0.1" height="15.0" fill="rgb(228,125,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.35" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bcf_hdr_add_hrec (1 samples, 0.01%)</title><rect x="12.9" y="357" width="0.2" height="15.0" fill="rgb(209,137,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.94" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hopen_fd (1 samples, 0.01%)</title><rect x="20.0" y="341" width="0.2" height="15.0" fill="rgb(209,125,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.03" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_chunk_dalloc_wrapper (9 samples, 0.13%)</title><rect x="11.4" y="229" width="1.5" height="15.0" fill="rgb(227,199,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" 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_unlock (2 samples, 0.03%)</title><rect x="33.5" y="325" width="0.4" height="15.0" fill="rgb(224,97,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="36.52" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (7 samples, 0.10%)</title><rect x="554.7" y="485" width="1.2" height="15.0" fill="rgb(209,165,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="557.68" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::hash::sip::Sip13Rounds as core::hash::sip::Sip>::c_rounds (1 samples, 0.01%)</title><rect x="280.7" y="421" width="0.2" height="15.0" fill="rgb(215,38,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.70" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::DerefMut>::deref_mut (59 samples, 0.86%)</title><rect x="62.9" y="501" width="10.2" height="15.0" fill="rgb(223,53,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="65.93" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref>::deref (3 samples, 0.04%)</title><rect x="566.1" y="469" width="0.5" height="15.0" fill="rgb(243,149,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.10" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::add (53 samples, 0.78%)</title><rect x="1109.6" y="485" width="9.1" height="15.0" fill="rgb(238,147,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.57" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::range::<impl core::iter::iterator::Iterator for core::ops::range::Range<A>>::next (1 samples, 0.01%)</title><rect x="1189.5" y="501" width="0.2" height="15.0" fill="rgb(244,186,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.48" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_add_exp (6 samples, 0.09%)</title><rect x="31.3" y="453" width="1.0" height="15.0" fill="rgb(221,93,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.28" 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>[unknown] (15 samples, 0.22%)</title><rect x="111.4" y="229" width="2.6" height="15.0" fill="rgb(208,154,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.36" 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::alloc::Global as core::alloc::Alloc>::dealloc (9 samples, 0.13%)</title><rect x="11.4" y="325" width="1.5" height="15.0" fill="rgb(251,72,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_rust_maybe_catch_panic (51 samples, 0.75%)</title><rect x="11.4" y="517" width="8.8" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib-7ef3616f8a9 (4 samples, 0.06%)</title><rect x="10.0" y="661" width="0.7" height="15.0" fill="rgb(238,74,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::alloc::Layout::padding_needed_for (1 samples, 0.01%)</title><rect x="19.0" y="229" width="0.2" height="15.0" fill="rgb(242,138,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.99" 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::Iter<'a, T> as core::iter::iterator::Iterator>::fold (1 samples, 0.01%)</title><rect x="282.6" y="453" width="0.2" height="15.0" fill="rgb(252,8,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.60" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>csv::serializer::serialize (1 samples, 0.01%)</title><rect x="1189.8" y="501" width="0.2" height="15.0" fill="rgb(247,120,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::ReferenceEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_xy (275 samples, 4.03%)</title><rect x="574.7" y="517" width="47.6" height="15.0" fill="rgb(242,20,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.75" y="527.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><alloc::vec::Vec<T>>::set_len (5 samples, 0.07%)</title><rect x="116.7" y="501" width="0.9" height="15.0" fill="rgb(228,159,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="119.72" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (10 samples, 0.15%)</title><rect x="282.8" y="501" width="1.7" height="15.0" fill="rgb(215,28,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::prob_insertion (94 samples, 1.38%)</title><rect x="625.3" y="501" width="16.2" height="15.0" fill="rgb(232,16,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="628.25" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::add (1 samples, 0.01%)</title><rect x="284.3" y="405" width="0.2" height="15.0" fill="rgb(217,130,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.33" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (42 samples, 0.62%)</title><rect x="104.1" y="325" width="7.3" height="15.0" fill="rgb(254,22,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="107.10" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::uninitialized (4 samples, 0.06%)</title><rect x="1185.7" y="453" width="0.7" height="15.0" fill="rgb(245,11,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.68" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::next (1 samples, 0.01%)</title><rect x="20.6" y="197" width="0.1" height="15.0" fill="rgb(218,110,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.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><core::cell::RefCell<T>>::borrow (1 samples, 0.01%)</title><rect x="281.9" y="565" width="0.2" height="15.0" fill="rgb(209,20,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.91" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_chunk_dalloc_huge (15 samples, 0.22%)</title><rect x="111.4" y="373" width="2.6" height="15.0" fill="rgb(224,111,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.36" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::overflowing_add (2 samples, 0.03%)</title><rect x="471.3" y="437" width="0.4" height="15.0" fill="rgb(221,101,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.31" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::itr_next (3 samples, 0.04%)</title><rect x="281.2" y="549" width="0.5" height="15.0" fill="rgb(236,160,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.22" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ptr::Unique<T>>::as_ptr (3 samples, 0.04%)</title><rect x="570.6" y="437" width="0.5" height="15.0" fill="rgb(220,102,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.60" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::alloc::dealloc (9 samples, 0.13%)</title><rect x="11.4" y="309" width="1.5" height="15.0" fill="rgb(244,106,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Map<I, F> as core::iter::iterator::Iterator>::next (60 samples, 0.88%)</title><rect x="20.6" y="325" width="10.3" height="15.0" fill="rgb(245,25,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (3 samples, 0.04%)</title><rect x="555.4" y="469" width="0.5" height="15.0" fill="rgb(213,87,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.37" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::wrapping_sub (11 samples, 0.16%)</title><rect x="114.8" y="453" width="1.9" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="117.82" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::len (10 samples, 0.15%)</title><rect x="233.1" y="485" width="1.8" height="15.0" fill="rgb(231,206,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="236.13" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_ieee754_log_avx (1 samples, 0.01%)</title><rect x="25.9" y="85" width="0.2" height="15.0" fill="rgb(231,40,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.91" 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::rt::lang_start_internal (2 samples, 0.03%)</title><rect x="10.3" y="581" width="0.4" height="15.0" fill="rgb(231,199,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::swap (1 samples, 0.01%)</title><rect x="469.4" y="469" width="0.2" height="15.0" fill="rgb(239,39,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.41" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::add (30 samples, 0.44%)</title><rect x="267.9" y="469" width="5.2" height="15.0" fill="rgb(215,85,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="270.90" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZN4core3fmt5float32float_to_decimal_common_shortest17h9b22effd5691a683.lv.5848613266883285139 (1 samples, 0.01%)</title><rect x="1189.8" y="261" width="0.2" height="15.0" fill="rgb(213,132,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" 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>[lib....] (1 samples, 0.01%)</title><rect x="281.4" y="405" width="0.2" height="15.0" fill="rgb(248,180,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.39" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::wrapping_sub (13 samples, 0.19%)</title><rect x="129.3" y="485" width="2.3" height="15.0" fill="rgb(244,35,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="132.35" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::ptr (8 samples, 0.12%)</title><rect x="607.1" y="437" width="1.4" height="15.0" fill="rgb(253,38,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="610.09" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::is_null (2 samples, 0.03%)</title><rect x="562.6" y="437" width="0.4" height="15.0" fill="rgb(218,18,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.64" 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] (45 samples, 0.66%)</title><rect x="207.0" y="469" width="7.8" height="15.0" fill="rgb(233,116,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.01" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::NonZeroUsize::new_unchecked (1 samples, 0.01%)</title><rect x="18.8" y="213" width="0.2" height="15.0" fill="rgb(209,86,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.82" 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::ReferenceBuffer::seq (1,418 samples, 20.79%)</title><rect x="34.9" y="597" width="245.3" height="15.0" fill="rgb(221,9,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.91" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::utils::ReferenceBuffe..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><F as alloc::boxed::FnBox<A>>::call_box (51 samples, 0.75%)</title><rect x="11.4" y="501" width="8.8" height="15.0" fill="rgb(228,158,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index_mut (28 samples, 0.41%)</title><rect x="462.8" y="485" width="4.9" height="15.0" fill="rgb(222,68,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="465.83" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Arguments::new_v1_formatted (1 samples, 0.01%)</title><rect x="26.1" y="165" width="0.2" height="15.0" fill="rgb(251,6,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.09" 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::PairPileup<'a, A, B, P>>::case_likelihood (21 samples, 0.31%)</title><rect x="31.1" y="533" width="3.6" height="15.0" fill="rgb(223,161,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.10" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::filter_map (16 samples, 0.23%)</title><rect x="848.2" y="501" width="2.8" height="15.0" fill="rgb(253,60,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="851.21" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (61 samples, 0.89%)</title><rect x="20.6" y="517" width="10.5" height="15.0" fill="rgb(207,147,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Add>::add (150 samples, 2.20%)</title><rect x="505.4" y="501" width="25.9" height="15.0" fill="rgb(222,97,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.39" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::is_null (16 samples, 0.23%)</title><rect x="66.9" y="485" width="2.8" height="15.0" fill="rgb(210,137,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.91" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_observation_case_control (59 samples, 0.86%)</title><rect x="20.7" y="181" width="10.2" height="15.0" fill="rgb(227,144,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.72" 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::option::Option<T>>::map (54 samples, 0.79%)</title><rect x="808.6" y="469" width="9.3" height="15.0" fill="rgb(219,41,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="811.60" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::next (2 samples, 0.03%)</title><rect x="1189.3" y="517" width="0.4" height="15.0" fill="rgb(254,109,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.31" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as bio::utils::fastexp::FastExp<f64>>::fastexp (2 samples, 0.03%)</title><rect x="31.8" y="437" width="0.3" height="15.0" fill="rgb(218,172,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.79" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::fold::{{closure}} (871 samples, 12.77%)</title><rect x="888.5" y="405" width="150.7" height="15.0" fill="rgb(247,57,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="891.51" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::iter::Filter..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[libpthread-..o] (48 samples, 0.70%)</title><rect x="206.5" y="501" width="8.3" height="15.0" fill="rgb(220,31,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="209.49" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::null_mut (3 samples, 0.04%)</title><rect x="634.1" y="437" width="0.5" height="15.0" fill="rgb(241,76,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="637.08" 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_maybe_catch_panic (1 samples, 0.01%)</title><rect x="10.3" y="565" width="0.2" height="15.0" fill="rgb(219,160,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::prob_insertion (44 samples, 0.64%)</title><rect x="567.1" y="501" width="7.6" height="15.0" fill="rgb(229,221,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.14" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::len (7 samples, 0.10%)</title><rect x="193.0" y="501" width="1.2" height="15.0" fill="rgb(224,88,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.00" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (6 samples, 0.09%)</title><rect x="112.9" y="149" width="1.1" height="15.0" fill="rgb(240,62,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="115.92" 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::Seq::encoded_base (14 samples, 0.21%)</title><rect x="556.6" y="469" width="2.4" height="15.0" fill="rgb(250,27,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="559.58" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ops::range::RangeFrom<usize> as core::slice::SliceIndex<[T]>>::get_unchecked_mut (113 samples, 1.66%)</title><rect x="157.2" y="485" width="19.5" height="15.0" fill="rgb(237,62,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="160.20" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::option::Option<T>>::unwrap (1 samples, 0.01%)</title><rect x="531.3" y="517" width="0.2" height="15.0" fill="rgb(245,104,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="534.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.0" y="517" width="0.2" height="15.0" fill="rgb(218,34,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::reserve (4 samples, 0.06%)</title><rect x="282.8" y="437" width="0.7" height="15.0" fill="rgb(239,202,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.77" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::ops::arith::Add>::add (42 samples, 0.62%)</title><rect x="744.1" y="501" width="7.2" height="15.0" fill="rgb(252,112,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.08" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_simpsons_integrate_exp::{{closure}} (60 samples, 0.88%)</title><rect x="20.6" y="277" width="10.3" height="15.0" fill="rgb(251,119,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" 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>[unknown] (37 samples, 0.54%)</title><rect x="105.0" y="309" width="6.4" height="15.0" fill="rgb(231,28,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="107.96" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::is_null (8 samples, 0.12%)</title><rect x="633.2" y="453" width="1.4" height="15.0" fill="rgb(210,191,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="636.21" 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>[unknown] (1 samples, 0.01%)</title><rect x="10.0" y="645" width="0.2" height="15.0" fill="rgb(211,130,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::call::pairwise::pileups (5,259 samples, 77.09%)</title><rect x="280.2" y="629" width="909.6" height="15.0" fill="rgb(220,178,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.18" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::call::pairwise::pileups</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialEq>::eq (2 samples, 0.03%)</title><rect x="641.7" y="501" width="0.3" height="15.0" fill="rgb(240,144,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="644.69" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (1 samples, 0.01%)</title><rect x="281.7" y="501" width="0.2" height="15.0" fill="rgb(253,209,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.74" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::DerefMut>::deref_mut (1 samples, 0.01%)</title><rect x="1189.1" y="501" width="0.2" height="15.0" fill="rgb(229,74,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.14" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_avx_unaligned (23 samples, 0.34%)</title><rect x="1093.8" y="485" width="4.0" height="15.0" fill="rgb(246,79,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1096.83" 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>hopen (1 samples, 0.01%)</title><rect x="20.0" y="357" width="0.2" height="15.0" fill="rgb(215,201,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.03" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::write (1 samples, 0.01%)</title><rect x="30.9" y="165" width="0.2" height="15.0" fill="rgb(215,195,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.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>crc32 (1 samples, 0.01%)</title><rect x="281.6" y="437" width="0.1" height="15.0" fill="rgb(247,130,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.56" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::drop_in_place (7 samples, 0.10%)</title><rect x="279.0" y="549" width="1.2" height="15.0" fill="rgb(249,4,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.97" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ops::range::Range<usize> as core::slice::SliceIndex<[T]>>::index (100 samples, 1.47%)</title><rect x="261.2" y="501" width="17.2" height="15.0" fill="rgb(208,151,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.15" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_tsd_cleanup (1 samples, 0.01%)</title><rect x="11.0" y="597" width="0.2" height="15.0" fill="rgb(224,174,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.04" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ops::range::Range<usize> as core::slice::SliceIndex<[T]>>::get_unchecked (77 samples, 1.13%)</title><rect x="264.3" y="485" width="13.3" height="15.0" fill="rgb(221,65,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.27" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::swap (2 samples, 0.03%)</title><rect x="1188.1" y="517" width="0.3" height="15.0" fill="rgb(245,28,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.10" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialOrd>::gt (1 samples, 0.01%)</title><rect x="471.7" y="517" width="0.1" height="15.0" fill="rgb(241,188,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.66" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (27 samples, 0.40%)</title><rect x="583.9" y="485" width="4.7" height="15.0" fill="rgb(206,80,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="586.91" 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>[unknown] (15 samples, 0.22%)</title><rect x="111.4" y="261" width="2.6" height="15.0" fill="rgb(252,30,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.36" 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>>::map (1 samples, 0.01%)</title><rect x="1189.3" y="501" width="0.2" height="15.0" fill="rgb(227,151,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.31" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::Write::write_fmt::Adaptor<'a, T> as core::fmt::Write>::write_str (4 samples, 0.06%)</title><rect x="26.4" y="117" width="0.7" height="15.0" fill="rgb(238,6,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.43" 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::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (1,325 samples, 19.42%)</title><rect x="860.5" y="437" width="229.2" height="15.0" fill="rgb(225,31,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="863.49" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::slice::Iter<'a, T> as c..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (22 samples, 0.32%)</title><rect x="637.7" y="469" width="3.8" height="15.0" fill="rgb(237,196,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="640.71" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::Record::inner (1 samples, 0.01%)</title><rect x="34.7" y="533" width="0.2" height="15.0" fill="rgb(218,83,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.73" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (102 samples, 1.50%)</title><rect x="93.7" y="373" width="17.7" height="15.0" fill="rgb(227,115,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="96.72" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::next (1 samples, 0.01%)</title><rect x="282.4" y="501" width="0.2" height="15.0" fill="rgb(253,10,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.43" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rallocx (196 samples, 2.87%)</title><rect x="80.1" y="421" width="33.9" height="15.0" fill="rgb(237,133,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="83.05" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ra..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::hash::sip::Hasher<S> as core::hash::Hasher>::write (1 samples, 0.01%)</title><rect x="280.7" y="437" width="0.2" height="15.0" fill="rgb(211,169,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.70" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_desugared (10 samples, 0.15%)</title><rect x="282.8" y="453" width="1.7" height="15.0" fill="rgb(249,129,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::collections::hash::table::calculate_layout (1 samples, 0.01%)</title><rect x="280.9" y="453" width="0.1" height="15.0" fill="rgb(232,148,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.87" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::alloc::Layout::new (1 samples, 0.01%)</title><rect x="18.6" y="245" width="0.2" height="15.0" fill="rgb(245,147,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.65" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><test::Sink as std::io::Write>::write (1 samples, 0.01%)</title><rect x="30.9" y="85" width="0.2" height="15.0" fill="rgb(231,84,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" 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>core::ptr::<impl *const T>::offset (15 samples, 0.22%)</title><rect x="225.3" y="453" width="2.6" height="15.0" fill="rgb(243,118,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="228.35" 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>_libc_start_main (2 samples, 0.03%)</title><rect x="10.3" y="629" width="0.4" height="15.0" fill="rgb(206,218,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::ge (1 samples, 0.01%)</title><rect x="642.4" y="453" width="0.2" height="15.0" fill="rgb(231,36,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.38" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::joint_prob::{{closure}} (61 samples, 0.89%)</title><rect x="20.6" y="453" width="10.5" height="15.0" fill="rgb(242,216,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::write (10 samples, 0.15%)</title><rect x="1186.4" y="469" width="1.7" height="15.0" fill="rgb(225,149,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.37" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::write (14 samples, 0.21%)</title><rect x="32.3" y="421" width="2.4" height="15.0" fill="rgb(220,129,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.31" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2 samples, 0.03%)</title><rect x="111.0" y="261" width="0.4" height="15.0" fill="rgb(234,224,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.01" 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::num::<impl u8>::to_ascii_uppercase (27 samples, 0.40%)</title><rect x="595.0" y="485" width="4.7" height="15.0" fill="rgb(227,115,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="597.98" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::fragments::IndelEvidence::pmf (3 samples, 0.04%)</title><rect x="283.5" y="405" width="0.5" height="15.0" fill="rgb(237,86,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.47" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (61 samples, 0.89%)</title><rect x="20.6" y="389" width="10.5" height="15.0" fill="rgb(221,197,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bam_readrec (3 samples, 0.04%)</title><rect x="281.2" y="517" width="0.5" height="15.0" fill="rgb(228,87,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.22" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::particular_miscall (114 samples, 1.67%)</title><rect x="599.7" y="485" width="19.7" height="15.0" fill="rgb(216,63,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="602.65" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::alloc::Global as core::alloc::Alloc>::alloc (1 samples, 0.01%)</title><rect x="18.5" y="261" width="0.1" height="15.0" fill="rgb(218,179,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.48" 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 (1 samples, 0.01%)</title><rect x="11.2" y="517" width="0.2" height="15.0" fill="rgb(212,24,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib::main (1 samples, 0.01%)</title><rect x="10.3" y="517" width="0.2" height="15.0" fill="rgb(253,61,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::nth::{{closure}} (23 samples, 0.34%)</title><rect x="814.0" y="453" width="3.9" height="15.0" fill="rgb(237,28,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="816.96" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::from_raw_parts (18 samples, 0.26%)</title><rect x="634.6" y="453" width="3.1" height="15.0" fill="rgb(239,162,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="637.59" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::wrapping_sub (10 samples, 0.15%)</title><rect x="838.5" y="453" width="1.8" height="15.0" fill="rgb(249,68,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="841.53" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (95 samples, 1.39%)</title><rect x="407.1" y="501" width="16.5" height="15.0" fill="rgb(241,39,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="410.14" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index (2 samples, 0.03%)</title><rect x="574.4" y="453" width="0.3" height="15.0" fill="rgb(240,138,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.40" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_tcache_cleanup (1 samples, 0.01%)</title><rect x="11.0" y="581" width="0.2" height="15.0" fill="rgb(242,102,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.04" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::range::<impl core::iter::iterator::Iterator for core::ops::range::Range<A>>::next (4 samples, 0.06%)</title><rect x="471.0" y="485" width="0.7" height="15.0" fill="rgb(212,156,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.96" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_sum_exp (2,924 samples, 42.86%)</title><rect x="643.2" y="517" width="505.8" height="15.0" fill="rgb(207,10,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="646.24" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::probs::LogProb::ln_sum_exp</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::range::<impl core::iter::iterator::Iterator for core::ops::range::Range<A>>::next (10 samples, 0.15%)</title><rect x="467.9" y="485" width="1.7" height="15.0" fill="rgb(221,179,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.85" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::sample::Sample::fragment_observation::{{closure}} (5,233 samples, 76.71%)</title><rect x="284.7" y="565" width="905.1" height="15.0" fill="rgb(212,90,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.68" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::sample::Sample::fragment_observation::{{closure}}</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::hash::impls::<impl core::hash::Hash for [T]>::hash (1 samples, 0.01%)</title><rect x="280.7" y="517" width="0.2" height="15.0" fill="rgb(234,46,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.70" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::ptr (4 samples, 0.06%)</title><rect x="561.9" y="437" width="0.7" height="15.0" fill="rgb(229,201,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.95" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index (3 samples, 0.04%)</title><rect x="555.4" y="453" width="0.5" height="15.0" fill="rgb(217,29,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.37" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (38 samples, 0.56%)</title><rect x="208.2" y="389" width="6.6" height="15.0" fill="rgb(245,80,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="211.22" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (10 samples, 0.15%)</title><rect x="282.8" y="485" width="1.7" height="15.0" fill="rgb(223,13,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.77" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve_internal (1 samples, 0.01%)</title><rect x="281.7" y="437" width="0.2" height="15.0" fill="rgb(240,196,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.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><std::collections::hash::map::DefaultHasher as core::hash::Hasher>::finish (1 samples, 0.01%)</title><rect x="280.5" y="517" width="0.2" height="15.0" fill="rgb(234,107,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.52" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::null (7 samples, 0.10%)</title><rect x="800.3" y="437" width="1.2" height="15.0" fill="rgb(211,118,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.30" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReferenceEmissionParams::ref_base (13 samples, 0.19%)</title><rect x="620.1" y="501" width="2.2" height="15.0" fill="rgb(205,223,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="623.06" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::Write::write_fmt::Adaptor<'a, T> as core::fmt::Write>::write_str (1 samples, 0.01%)</title><rect x="32.5" y="405" width="0.2" height="15.0" fill="rgb(217,37,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.49" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><&'a mut csv::serializer::SeRecord<'w, W> as serde::ser::Serializer>::serialize_f64 (1 samples, 0.01%)</title><rect x="1189.8" y="341" width="0.2" height="15.0" fill="rgb(254,187,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_avx_unaligned (181 samples, 2.65%)</title><rect x="80.1" y="389" width="31.3" height="15.0" fill="rgb(253,135,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="83.05" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_m..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::table::Bucket<K, V, M>>::new (1 samples, 0.01%)</title><rect x="280.9" y="501" width="0.1" height="15.0" fill="rgb(228,210,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.87" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::is_null (115 samples, 1.69%)</title><rect x="1065.6" y="405" width="19.9" height="15.0" fill="rgb(248,4,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1068.63" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup::{{closure}} (1 samples, 0.01%)</title><rect x="30.9" y="229" width="0.2" height="15.0" fill="rgb(240,159,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.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><libprosic::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref>::deref (13 samples, 0.19%)</title><rect x="617.1" y="469" width="2.3" height="15.0" fill="rgb(209,49,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="620.12" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::read (14 samples, 0.21%)</title><rect x="1183.9" y="469" width="2.5" height="15.0" fill="rgb(237,110,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.95" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.2" y="517" width="0.1" height="15.0" fill="rgb(242,114,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.17" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::as_mut_ptr (5 samples, 0.07%)</title><rect x="170.9" y="453" width="0.8" height="15.0" fill="rgb(236,176,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="173.86" 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>test09 (6,818 samples, 99.94%)</title><rect x="10.7" y="661" width="1179.3" height="15.0" fill="rgb(254,223,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.69" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >test09</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Add>::add (1 samples, 0.01%)</title><rect x="642.7" y="485" width="0.2" height="15.0" fill="rgb(215,38,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.72" 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>[unknown] (1 samples, 0.01%)</title><rect x="11.2" y="501" width="0.2" height="15.0" fill="rgb(225,6,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (10 samples, 0.15%)</title><rect x="573.0" y="469" width="1.7" height="15.0" fill="rgb(213,94,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.02" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::add (26 samples, 0.38%)</title><rect x="166.4" y="453" width="4.5" height="15.0" fill="rgb(219,169,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.36" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::ops::deref::Deref>::deref (5 samples, 0.07%)</title><rect x="969.8" y="373" width="0.9" height="15.0" fill="rgb(215,194,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="972.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Map<I, F> as core::iter::iterator::Iterator>::next (61 samples, 0.89%)</title><rect x="20.6" y="501" width="10.5" height="15.0" fill="rgb(251,21,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::next (129 samples, 1.89%)</title><rect x="782.5" y="469" width="22.3" height="15.0" fill="rgb(252,146,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="785.48" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::offset (1 samples, 0.01%)</title><rect x="19.3" y="277" width="0.2" height="15.0" fill="rgb(234,52,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.34" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::log_wrapper (1 samples, 0.01%)</title><rect x="25.9" y="117" width="0.2" height="15.0" fill="rgb(235,166,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.91" 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>itertools::Itertools::collect_vec (61 samples, 0.89%)</title><rect x="20.6" y="421" width="10.5" height="15.0" fill="rgb(231,93,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::map::HashMap<K, V, S>>::try_resize (2 samples, 0.03%)</title><rect x="280.9" y="533" width="0.3" height="15.0" fill="rgb(213,215,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.87" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_uncompress (2 samples, 0.03%)</title><rect x="281.2" y="437" width="0.4" height="15.0" fill="rgb(212,32,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.22" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::add (33 samples, 0.48%)</title><rect x="222.2" y="469" width="5.7" height="15.0" fill="rgb(236,89,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="225.23" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>IO_str_init_static_internal (1 samples, 0.01%)</title><rect x="12.9" y="293" width="0.2" height="15.0" fill="rgb(213,111,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.94" 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::ptr::<impl *mut T>::is_null (64 samples, 0.94%)</title><rect x="388.1" y="485" width="11.1" height="15.0" fill="rgb(222,89,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="391.11" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::alloc::Layout::array (4 samples, 0.06%)</title><rect x="18.6" y="261" width="0.7" height="15.0" fill="rgb(219,100,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.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>core::slice::<impl core::ops::index::Index<I> for [T]>::index (5 samples, 0.07%)</title><rect x="563.7" y="453" width="0.8" height="15.0" fill="rgb(213,17,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.68" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::fragments::IndelEvidence::prob_sample_alt::{{closure}} (13 samples, 0.19%)</title><rect x="282.3" y="549" width="2.2" height="15.0" fill="rgb(238,55,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.25" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="11.2" y="421" width="0.2" height="15.0" fill="rgb(218,150,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::stdio::print (14 samples, 0.21%)</title><rect x="32.3" y="453" width="2.4" height="15.0" fill="rgb(211,67,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.31" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><&'a mut csv::serializer::SeRecord<'w, W> as serde::ser::SerializeTuple>::serialize_element (1 samples, 0.01%)</title><rect x="1189.8" y="453" width="0.2" height="15.0" fill="rgb(218,12,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::iter::range::Step>::add_usize (1 samples, 0.01%)</title><rect x="1189.5" y="485" width="0.2" height="15.0" fill="rgb(205,122,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.48" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::next (1 samples, 0.01%)</title><rect x="282.4" y="485" width="0.2" height="15.0" fill="rgb(227,11,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.43" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (216 samples, 3.17%)</title><rect x="369.8" y="501" width="37.3" height="15.0" fill="rgb(239,97,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="372.78" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><al..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (16 samples, 0.23%)</title><rect x="147.5" y="389" width="2.8" height="15.0" fill="rgb(253,202,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="150.51" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::joint_prob::{{closure}}::{{closure}} (60 samples, 0.88%)</title><rect x="20.6" y="261" width="10.3" height="15.0" fill="rgb(252,27,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.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><std::collections::hash::map::HashMap<K, V, S>>::get_mut (2 samples, 0.03%)</title><rect x="280.5" y="581" width="0.4" height="15.0" fill="rgb(229,101,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.52" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.2" y="549" width="0.1" height="15.0" fill="rgb(250,191,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.17" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_rust_maybe_catch_panic (52 samples, 0.76%)</title><rect x="11.2" y="565" width="9.0" height="15.0" fill="rgb(205,215,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::push (1 samples, 0.01%)</title><rect x="13.1" y="405" width="0.2" height="15.0" fill="rgb(254,36,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.11" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::clear (12 samples, 0.18%)</title><rect x="467.7" y="517" width="2.1" height="15.0" fill="rgb(229,74,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.68" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::map::HashMap<K, V, S>>::search (2 samples, 0.03%)</title><rect x="280.2" y="565" width="0.3" height="15.0" fill="rgb(254,82,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.18" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T>>::as_slice (104 samples, 1.52%)</title><rect x="117.6" y="501" width="18.0" height="15.0" fill="rgb(206,57,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="120.59" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::get_unchecked_mut (1 samples, 0.01%)</title><rect x="284.3" y="421" width="0.2" height="15.0" fill="rgb(247,181,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.33" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::null_mut (4 samples, 0.06%)</title><rect x="545.0" y="485" width="0.7" height="15.0" fill="rgb(216,125,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.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>core::slice::<impl [T]>::as_ptr (1 samples, 0.01%)</title><rect x="19.5" y="357" width="0.2" height="15.0" fill="rgb(237,198,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.51" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><F as alloc::boxed::FnBox<A>>::call_box (52 samples, 0.76%)</title><rect x="11.2" y="581" width="9.0" height="15.0" fill="rgb(223,229,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (61 samples, 0.89%)</title><rect x="20.6" y="549" width="10.5" height="15.0" fill="rgb(228,109,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::Record::raw_cigar (1 samples, 0.01%)</title><rect x="19.5" y="373" width="0.2" height="15.0" fill="rgb(237,147,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.51" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (3 samples, 0.04%)</title><rect x="28.7" y="37" width="0.5" height="15.0" fill="rgb(214,71,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="31.68" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::as_ptr (7 samples, 0.10%)</title><rect x="191.8" y="501" width="1.2" height="15.0" fill="rgb(245,207,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.79" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::vec::from_elem (1 samples, 0.01%)</title><rect x="1189.7" y="517" width="0.1" height="15.0" fill="rgb(221,15,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.65" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_simpsons_integrate_exp (61 samples, 0.89%)</title><rect x="20.6" y="437" width="10.5" height="15.0" fill="rgb(246,35,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" 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><f64 as core::ops::arith::Add>::add (13 samples, 0.19%)</title><rect x="749.1" y="485" width="2.2" height="15.0" fill="rgb(216,70,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="752.10" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::pairhmm::PairHMM::prob_related (5,229 samples, 76.65%)</title><rect x="284.7" y="533" width="904.4" height="15.0" fill="rgb(214,65,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.68" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::pairhmm::PairHMM::prob_related</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln::{{closure}} (1 samples, 0.01%)</title><rect x="25.9" y="101" width="0.2" height="15.0" fill="rgb(222,176,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.91" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_huge_ralloc (196 samples, 2.87%)</title><rect x="80.1" y="405" width="33.9" height="15.0" fill="rgb(233,138,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="83.05" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >je..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>start (2 samples, 0.03%)</title><rect x="10.3" y="645" width="0.4" height="15.0" fill="rgb(247,181,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as bio::utils::fastexp::FastExp<f64>>::fastexp (1 samples, 0.01%)</title><rect x="643.1" y="501" width="0.1" height="15.0" fill="rgb(248,119,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="646.07" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::call::pairwise::call (1,501 samples, 22.00%)</title><rect x="20.6" y="629" width="259.6" height="15.0" fill="rgb(251,102,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::call::pairwise::call</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_fmt (26 samples, 0.38%)</title><rect x="26.4" y="149" width="4.5" height="15.0" fill="rgb(220,175,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.43" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_read_block (25 samples, 0.37%)</title><rect x="14.0" y="357" width="4.3" height="15.0" fill="rgb(240,134,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.98" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (4 samples, 0.06%)</title><rect x="554.7" y="469" width="0.7" height="15.0" fill="rgb(251,213,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="557.68" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib::test09 (1 samples, 0.01%)</title><rect x="1189.8" y="565" width="0.2" height="15.0" fill="rgb(205,109,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::iter::traits::Sum>::sum (1 samples, 0.01%)</title><rect x="282.6" y="501" width="0.2" height="15.0" fill="rgb(249,109,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.60" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::offset (7 samples, 0.10%)</title><rect x="187.5" y="485" width="1.2" height="15.0" fill="rgb(228,165,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="190.47" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib::test09::{{closure}} (1 samples, 0.01%)</title><rect x="1189.8" y="581" width="0.2" height="15.0" fill="rgb(226,184,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>itertools::Itertools::collect_vec (61 samples, 0.89%)</title><rect x="20.6" y="581" width="10.5" height="15.0" fill="rgb(224,105,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><&'a mut csv::serializer::SeRecord<'w, W> as serde::ser::Serializer>::collect_str (1 samples, 0.01%)</title><rect x="1189.8" y="325" width="0.2" height="15.0" fill="rgb(215,19,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::len (9 samples, 0.13%)</title><rect x="255.3" y="533" width="1.5" height="15.0" fill="rgb(246,156,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="258.27" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::fragments::isize_pmf (3 samples, 0.04%)</title><rect x="283.5" y="389" width="0.5" height="15.0" fill="rgb(212,29,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.47" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::drop_in_place (9 samples, 0.13%)</title><rect x="11.4" y="405" width="1.5" height="15.0" fill="rgb(250,192,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::drop_in_place (1 samples, 0.01%)</title><rect x="18.3" y="405" width="0.2" height="15.0" fill="rgb(221,75,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.30" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::alloc::Global as core::alloc::Alloc>::realloc (4 samples, 0.06%)</title><rect x="282.8" y="389" width="0.7" height="15.0" fill="rgb(242,169,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.77" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl u64>::rotate_left (1 samples, 0.01%)</title><rect x="280.5" y="453" width="0.2" height="15.0" fill="rgb(205,149,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.52" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::fold (1,342 samples, 19.67%)</title><rect x="857.6" y="453" width="232.1" height="15.0" fill="rgb(219,70,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="860.55" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::iter::Enumerate<I> as c..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::is_null (3 samples, 0.04%)</title><rect x="608.5" y="437" width="0.5" height="15.0" fill="rgb(235,106,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="611.48" 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>_memset_avx2 (1 samples, 0.01%)</title><rect x="20.0" y="229" width="0.2" height="15.0" fill="rgb(249,21,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.03" 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_fmt::Adaptor<'a, T> as core::fmt::Write>::write_str (7 samples, 0.10%)</title><rect x="32.7" y="373" width="1.2" height="15.0" fill="rgb(254,26,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::hash::impls::<impl core::hash::Hash for usize>::hash (1 samples, 0.01%)</title><rect x="280.7" y="501" width="0.2" height="15.0" fill="rgb(244,159,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.70" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_read (3 samples, 0.04%)</title><rect x="281.2" y="485" width="0.5" height="15.0" fill="rgb(244,212,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.22" 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>[unknown] (7 samples, 0.10%)</title><rect x="11.7" y="69" width="1.2" height="15.0" fill="rgb(237,184,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.73" 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>bio::stats::probs::IMPL_SERIALIZE_FOR_LogProb::<impl serde::ser::Serialize for bio::stats::probs::LogProb>::serialize (1 samples, 0.01%)</title><rect x="1189.8" y="389" width="0.2" height="15.0" fill="rgb(237,144,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_sum_exp::{{closure}} (1 samples, 0.01%)</title><rect x="282.6" y="405" width="0.2" height="15.0" fill="rgb(215,46,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.60" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><T as core::convert::TryFrom<U>>::try_from (23 samples, 0.34%)</title><rect x="1157.3" y="485" width="4.0" height="15.0" fill="rgb(214,110,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1160.31" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::buffered::BufReader<R> as std::io::BufRead>::consume (37 samples, 0.54%)</title><rect x="194.9" y="533" width="6.4" height="15.0" fill="rgb(211,143,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="197.90" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::DerefMut>::deref_mut (1 samples, 0.01%)</title><rect x="18.3" y="325" width="0.2" height="15.0" fill="rgb(246,137,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.30" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialOrd>::gt (1 samples, 0.01%)</title><rect x="282.3" y="517" width="0.1" height="15.0" fill="rgb(243,19,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.25" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cell::BorrowRef::new (1 samples, 0.01%)</title><rect x="281.9" y="533" width="0.2" height="15.0" fill="rgb(230,176,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.91" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (6 samples, 0.09%)</title><rect x="18.5" y="357" width="1.0" height="15.0" fill="rgb(249,142,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.48" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::Record::cache_cigar (1 samples, 0.01%)</title><rect x="281.7" y="565" width="0.2" height="15.0" fill="rgb(236,123,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.74" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_zero (1 samples, 0.01%)</title><rect x="843.2" y="501" width="0.2" height="15.0" fill="rgb(249,197,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="846.20" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_avx_unaligned (45 samples, 0.66%)</title><rect x="142.5" y="485" width="7.8" height="15.0" fill="rgb(252,184,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="145.49" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ops::range::Range<usize> as core::slice::SliceIndex<[T]>>::get_unchecked_mut (72 samples, 1.06%)</title><rect x="162.2" y="469" width="12.5" height="15.0" fill="rgb(218,81,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.21" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>itertools::Itertools::collect_vec (10 samples, 0.15%)</title><rect x="282.8" y="533" width="1.7" height="15.0" fill="rgb(244,140,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.77" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index (59 samples, 0.86%)</title><rect x="413.4" y="485" width="10.2" height="15.0" fill="rgb(216,122,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="416.37" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_huge_dalloc (9 samples, 0.13%)</title><rect x="11.4" y="293" width="1.5" height="15.0" fill="rgb(221,122,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><test::Sink as std::io::Write>::write (12 samples, 0.18%)</title><rect x="27.6" y="53" width="2.1" height="15.0" fill="rgb(206,103,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.64" 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>core::slice::<impl [T]>::iter_mut (1 samples, 0.01%)</title><rect x="353.9" y="501" width="0.1" height="15.0" fill="rgb(227,106,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="356.86" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (6 samples, 0.09%)</title><rect x="18.5" y="341" width="1.0" height="15.0" fill="rgb(229,210,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.48" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (60 samples, 0.88%)</title><rect x="20.6" y="357" width="10.3" height="15.0" fill="rgb(241,72,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::DerefMut>::deref_mut (153 samples, 2.24%)</title><rect x="431.7" y="501" width="26.5" height="15.0" fill="rgb(251,109,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="434.70" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___exp (1 samples, 0.01%)</title><rect x="282.1" y="469" width="0.2" height="15.0" fill="rgb(219,9,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.08" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::from_raw_parts (4 samples, 0.06%)</title><rect x="563.0" y="437" width="0.7" height="15.0" fill="rgb(220,72,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.98" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::ge (25 samples, 0.37%)</title><rect x="725.4" y="469" width="4.3" height="15.0" fill="rgb(231,67,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.40" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl u64>::rotate_left (1 samples, 0.01%)</title><rect x="280.2" y="453" width="0.2" height="15.0" fill="rgb(220,35,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.18" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Formatter::write_formatted_parts (1 samples, 0.01%)</title><rect x="30.9" y="133" width="0.2" height="15.0" fill="rgb(212,175,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" 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::num::<impl usize>::checked_mul (1 samples, 0.01%)</title><rect x="19.2" y="229" width="0.1" height="15.0" fill="rgb(231,94,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.17" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (21 samples, 0.31%)</title><rect x="569.4" y="469" width="3.6" height="15.0" fill="rgb(228,37,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.38" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialEq>::eq (1 samples, 0.01%)</title><rect x="31.4" y="437" width="0.2" height="15.0" fill="rgb(253,225,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.45" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::as_ptr (5 samples, 0.07%)</title><rect x="227.9" y="469" width="0.9" height="15.0" fill="rgb(242,25,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="230.94" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (44 samples, 0.64%)</title><rect x="207.2" y="453" width="7.6" height="15.0" fill="rgb(241,218,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.19" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::joint_prob (61 samples, 0.89%)</title><rect x="20.6" y="597" width="10.5" height="15.0" fill="rgb(219,48,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::fold (1 samples, 0.01%)</title><rect x="282.6" y="469" width="0.2" height="15.0" fill="rgb(241,126,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.60" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::ReferenceEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_y (111 samples, 1.63%)</title><rect x="622.3" y="517" width="19.2" height="15.0" fill="rgb(254,207,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="625.31" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::collect (61 samples, 0.89%)</title><rect x="20.6" y="405" width="10.5" height="15.0" fill="rgb(205,88,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_maybe_purge (9 samples, 0.13%)</title><rect x="11.4" y="261" width="1.5" height="15.0" fill="rgb(238,81,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.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>std::io::Write::write_all (3 samples, 0.04%)</title><rect x="26.6" y="101" width="0.5" height="15.0" fill="rgb(221,120,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.61" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib::test09 (51 samples, 0.75%)</title><rect x="11.4" y="453" width="8.8" height="15.0" fill="rgb(244,24,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::option::Option<T>>::map (60 samples, 0.88%)</title><rect x="20.6" y="309" width="10.3" height="15.0" fill="rgb(212,200,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::ops::arith::Add>::add (9 samples, 0.13%)</title><rect x="564.5" y="469" width="1.6" height="15.0" fill="rgb(227,156,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.54" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::offset (17 samples, 0.25%)</title><rect x="545.7" y="501" width="2.9" height="15.0" fill="rgb(238,58,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.69" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_desugared (60 samples, 0.88%)</title><rect x="20.6" y="341" width="10.3" height="15.0" fill="rgb(228,170,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::drop_in_place (1 samples, 0.01%)</title><rect x="18.3" y="389" width="0.2" height="15.0" fill="rgb(219,74,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.30" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::alloc::realloc (196 samples, 2.87%)</title><rect x="80.1" y="437" width="33.9" height="15.0" fill="rgb(229,113,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="83.05" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >al..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZN3std9panicking3try7do_call17h47665672c57b11e4.lv.850587846580517217 (1 samples, 0.01%)</title><rect x="10.3" y="549" width="0.2" height="15.0" fill="rgb(209,7,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::add (1 samples, 0.01%)</title><rect x="353.9" y="485" width="0.1" height="15.0" fill="rgb(245,107,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="356.86" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::flt2dec::to_shortest_str (1 samples, 0.01%)</title><rect x="1189.8" y="245" width="0.2" height="15.0" fill="rgb(241,125,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" 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] (31 samples, 0.45%)</title><rect x="144.9" y="469" width="5.4" height="15.0" fill="rgb(228,57,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.92" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::range::<impl core::iter::iterator::Iterator for core::ops::range::Range<A>>::next (223 samples, 3.27%)</title><rect x="1149.5" y="517" width="38.6" height="15.0" fill="rgb(234,65,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1152.53" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cor..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="11.2" y="405" width="0.2" height="15.0" fill="rgb(215,22,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::map::HashMap<K, V, S>>::search_mut (2 samples, 0.03%)</title><rect x="280.5" y="565" width="0.4" height="15.0" fill="rgb(228,120,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.52" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ptr::Unique<T>>::as_ptr (2 samples, 0.03%)</title><rect x="586.7" y="437" width="0.3" height="15.0" fill="rgb(220,97,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="589.68" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::ptr (3 samples, 0.04%)</title><rect x="554.9" y="453" width="0.5" height="15.0" fill="rgb(209,198,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="557.85" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_maybe_purge (15 samples, 0.22%)</title><rect x="111.4" y="357" width="2.6" height="15.0" fill="rgb(224,206,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.36" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (48 samples, 0.70%)</title><rect x="629.4" y="469" width="8.3" height="15.0" fill="rgb(254,132,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="632.40" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>statrs::statistics::iter_statistics::<impl statrs::statistics::statistics::Statistics<f64> for T>::variance (1 samples, 0.01%)</title><rect x="19.7" y="389" width="0.2" height="15.0" fill="rgb(246,75,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.69" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (61 samples, 0.89%)</title><rect x="20.6" y="533" width="10.5" height="15.0" fill="rgb(230,207,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::io::fasta::IndexedReader<R>>::read_line (1,386 samples, 20.32%)</title><rect x="38.7" y="549" width="239.7" height="15.0" fill="rgb(252,137,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="41.71" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><bio::io::fasta::IndexedReader<..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::len (12 samples, 0.18%)</title><rect x="174.7" y="469" width="2.0" height="15.0" fill="rgb(227,173,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.67" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.0" y="629" width="0.2" height="15.0" fill="rgb(230,115,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[lib....] (23 samples, 0.34%)</title><rect x="14.0" y="293" width="4.0" height="15.0" fill="rgb(218,111,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.98" 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::sys_common::thread::start_thread (52 samples, 0.76%)</title><rect x="11.2" y="597" width="9.0" height="15.0" fill="rgb(237,176,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::size_of (5 samples, 0.07%)</title><rect x="114.0" y="453" width="0.8" height="15.0" fill="rgb(228,17,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="116.95" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::swap (1 samples, 0.01%)</title><rect x="24.5" y="149" width="0.2" height="15.0" fill="rgb(238,2,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.53" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ops::range::Range<usize> as core::slice::SliceIndex<[T]>>::index (106 samples, 1.55%)</title><rect x="216.5" y="501" width="18.4" height="15.0" fill="rgb(235,17,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="219.53" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::overflowing_add (1 samples, 0.01%)</title><rect x="280.9" y="389" width="0.1" height="15.0" fill="rgb(210,214,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.87" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::sample::Sample::extract_observations (5,259 samples, 77.09%)</title><rect x="280.2" y="597" width="909.6" height="15.0" fill="rgb(213,23,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.18" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::sample::Sample::extract_observations</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::checked_add (1 samples, 0.01%)</title><rect x="280.9" y="405" width="0.1" height="15.0" fill="rgb(250,188,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.87" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><T as core::convert::From<T>>::from (7 samples, 0.10%)</title><rect x="1160.1" y="469" width="1.2" height="15.0" fill="rgb(233,196,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1163.08" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::flt2dec::strategy::grisu::format_shortest_opt (5 samples, 0.07%)</title><rect x="33.9" y="373" width="0.8" height="15.0" fill="rgb(241,62,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="36.87" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup::{{closure}} (21 samples, 0.31%)</title><rect x="31.1" y="485" width="3.6" height="15.0" fill="rgb(240,49,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.10" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.2" y="565" width="0.1" height="15.0" fill="rgb(228,94,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.17" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Add>::add (1 samples, 0.01%)</title><rect x="31.1" y="437" width="0.2" height="15.0" fill="rgb(239,26,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.10" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2 samples, 0.03%)</title><rect x="214.5" y="357" width="0.3" height="15.0" fill="rgb(235,114,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="217.45" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::partial_cmp (2 samples, 0.03%)</title><rect x="642.2" y="485" width="0.4" height="15.0" fill="rgb(218,187,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.20" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::size_of (3 samples, 0.04%)</title><rect x="128.8" y="485" width="0.5" height="15.0" fill="rgb(210,167,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="131.83" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialOrd>::gt (358 samples, 5.25%)</title><rect x="682.2" y="501" width="61.9" height="15.0" fill="rgb(206,195,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="685.16" y="511.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>core::slice::<impl [T]>::get_unchecked_mut (131 samples, 1.92%)</title><rect x="154.1" y="501" width="22.6" height="15.0" fill="rgb(221,31,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="157.08" y="511.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><alloc::raw_vec::RawVec<T, A>>::reserve (5 samples, 0.07%)</title><rect x="18.5" y="293" width="0.8" height="15.0" fill="rgb(246,14,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.48" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup (60 samples, 0.88%)</title><rect x="20.6" y="229" width="10.3" height="15.0" fill="rgb(207,69,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" 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 (1 samples, 0.01%)</title><rect x="1189.8" y="309" width="0.2" height="15.0" fill="rgb(240,214,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (9 samples, 0.13%)</title><rect x="11.4" y="117" width="1.5" height="15.0" fill="rgb(210,220,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::checked_add (3 samples, 0.04%)</title><rect x="471.1" y="453" width="0.6" height="15.0" fill="rgb(209,201,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.14" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_ralloc (3 samples, 0.04%)</title><rect x="282.9" y="341" width="0.6" height="15.0" fill="rgb(221,185,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.95" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::ge (3 samples, 0.04%)</title><rect x="23.0" y="117" width="0.5" height="15.0" fill="rgb(229,17,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.97" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialEq>::eq (78 samples, 1.14%)</title><rect x="956.3" y="373" width="13.5" height="15.0" fill="rgb(251,112,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="959.32" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><test::Sink as std::io::Write>::write (6 samples, 0.09%)</title><rect x="32.8" y="341" width="1.1" height="15.0" fill="rgb(251,227,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.83" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (1 samples, 0.01%)</title><rect x="30.9" y="245" width="0.2" height="15.0" fill="rgb(210,15,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys::unix::thread::Thread::new::thread_start (52 samples, 0.76%)</title><rect x="11.2" y="613" width="9.0" height="15.0" fill="rgb(219,92,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::sample::Sample::fragment_observation (5,249 samples, 76.94%)</title><rect x="281.9" y="581" width="907.9" height="15.0" fill="rgb(244,44,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.91" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::model::sample::Sample::fragment_observation</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Mul<&'a f64>>::mul (34 samples, 0.50%)</title><rect x="1032.1" y="357" width="5.9" height="15.0" fill="rgb(236,76,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1035.08" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><rust_htslib::bam::IndexedReader as rust_htslib::bam::Read>::read (3 samples, 0.04%)</title><rect x="281.2" y="565" width="0.5" height="15.0" fill="rgb(253,147,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.22" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialEq>::eq (44 samples, 0.64%)</title><rect x="674.5" y="501" width="7.7" height="15.0" fill="rgb(232,149,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="677.55" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>all (6,822 samples, 100%)</title><rect x="10.0" y="677" width="1180.0" height="15.0" fill="rgb(250,140,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::Record::unpack_cigar (7 samples, 0.10%)</title><rect x="18.5" y="389" width="1.2" height="15.0" fill="rgb(238,103,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.48" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::overflowing_add (57 samples, 0.84%)</title><rect x="1165.6" y="469" width="9.9" height="15.0" fill="rgb(235,169,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.61" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::swap_nonoverlapping_one (59 samples, 0.86%)</title><rect x="1177.9" y="485" width="10.2" height="15.0" fill="rgb(232,44,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.89" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Skip<I> as core::iter::iterator::Iterator>::next (1 samples, 0.01%)</title><rect x="282.4" y="517" width="0.2" height="15.0" fill="rgb(210,7,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.43" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Mul>::mul (16 samples, 0.23%)</title><rect x="1035.2" y="341" width="2.8" height="15.0" fill="rgb(228,197,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1038.19" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::size_of (8 samples, 0.12%)</title><rect x="1182.6" y="469" width="1.3" height="15.0" fill="rgb(247,167,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.56" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::ptr (44 samples, 0.64%)</title><rect x="380.5" y="485" width="7.6" height="15.0" fill="rgb(233,74,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.50" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::fragments::IndelEvidence::prob_sample_alt (13 samples, 0.19%)</title><rect x="282.3" y="565" width="2.2" height="15.0" fill="rgb(247,167,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.25" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::push (6 samples, 0.09%)</title><rect x="469.8" y="517" width="1.0" height="15.0" fill="rgb(212,118,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.75" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::iter (81 samples, 1.19%)</title><rect x="180.2" y="517" width="14.0" height="15.0" fill="rgb(228,11,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="183.20" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><&'a mut csv::serializer::SeRecord<'w, W> as serde::ser::SerializeStruct>::serialize_field (1 samples, 0.01%)</title><rect x="1189.8" y="405" width="0.2" height="15.0" fill="rgb(238,88,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln (2 samples, 0.03%)</title><rect x="284.0" y="405" width="0.3" height="15.0" fill="rgb(224,195,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.98" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::iter::traits::Sum>::sum (1,384 samples, 20.29%)</title><rect x="854.4" y="485" width="239.4" height="15.0" fill="rgb(228,152,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.44" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><f64 as core::iter::traits::Sum..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::map::HashMap<K, V, S>>::make_hash (2 samples, 0.03%)</title><rect x="280.5" y="549" width="0.4" height="15.0" fill="rgb(234,81,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.52" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.0" y="597" width="0.2" height="15.0" fill="rgb(235,167,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::as_ptr (10 samples, 0.15%)</title><rect x="1121.5" y="485" width="1.7" height="15.0" fill="rgb(206,176,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1124.50" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::len (5 samples, 0.07%)</title><rect x="254.4" y="517" width="0.9" height="15.0" fill="rgb(230,157,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.41" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::add (12 samples, 0.18%)</title><rect x="840.3" y="453" width="2.0" height="15.0" fill="rgb(243,144,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="843.26" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::Ord::min (78 samples, 1.14%)</title><rect x="237.3" y="517" width="13.5" height="15.0" fill="rgb(235,228,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.28" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::fs::File as std::io::Read>::read (48 samples, 0.70%)</title><rect x="206.5" y="517" width="8.3" height="15.0" fill="rgb(220,211,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="209.49" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::cmp::Ordering as core::cmp::PartialEq>::eq (1 samples, 0.01%)</title><rect x="471.7" y="501" width="0.1" height="15.0" fill="rgb(234,190,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.66" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gsl_cdf_ugaussian_P (1 samples, 0.01%)</title><rect x="282.1" y="501" width="0.2" height="15.0" fill="rgb(209,52,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.08" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::ops::deref::Deref>::deref (2 samples, 0.03%)</title><rect x="751.3" y="501" width="0.4" height="15.0" fill="rgb(225,6,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="754.35" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::Write::write_fmt::Adaptor<'a, T> as core::fmt::Write>::write_str (1 samples, 0.01%)</title><rect x="30.9" y="117" width="0.2" height="15.0" fill="rgb(226,61,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" 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><&'a bio::stats::probs::LogProb as core::ops::arith::Sub<bio::stats::probs::LogProb>>::sub (1 samples, 0.01%)</title><rect x="282.6" y="389" width="0.2" height="15.0" fill="rgb(246,67,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.60" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::ops::arith::Add>::add (344 samples, 5.04%)</title><rect x="471.8" y="517" width="59.5" height="15.0" fill="rgb(216,129,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.83" y="527.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><test::Sink as std::io::Write>::write (1 samples, 0.01%)</title><rect x="27.0" y="85" width="0.1" height="15.0" fill="rgb(215,109,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.95" 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>[unknown] (1 samples, 0.01%)</title><rect x="13.1" y="341" width="0.2" height="15.0" fill="rgb(228,112,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.11" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::fold (1,356 samples, 19.88%)</title><rect x="855.1" y="469" width="234.6" height="15.0" fill="rgb(209,49,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="858.13" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::iter::FilterMap<I, F> as..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::call::pairwise::call (1 samples, 0.01%)</title><rect x="1189.8" y="533" width="0.2" height="15.0" fill="rgb(215,133,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::le (50 samples, 0.73%)</title><rect x="735.4" y="453" width="8.7" height="15.0" fill="rgb(247,139,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="738.44" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bcf_hdr_parse (1 samples, 0.01%)</title><rect x="12.9" y="373" width="0.2" height="15.0" fill="rgb(214,213,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.94" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::is_null (1 samples, 0.01%)</title><rect x="354.7" y="501" width="0.2" height="15.0" fill="rgb(248,135,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.73" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::option::Option<T>>::map (61 samples, 0.89%)</title><rect x="20.6" y="485" width="10.5" height="15.0" fill="rgb(229,43,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::IndexMut<I>>::index_mut (1 samples, 0.01%)</title><rect x="1189.1" y="517" width="0.2" height="15.0" fill="rgb(245,217,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::nth (222 samples, 3.25%)</title><rect x="804.8" y="485" width="38.4" height="15.0" fill="rgb(243,59,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="807.80" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><co..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_all (6 samples, 0.09%)</title><rect x="32.8" y="357" width="1.1" height="15.0" fill="rgb(248,88,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.83" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>IO_getdelim (1 samples, 0.01%)</title><rect x="10.5" y="533" width="0.2" height="15.0" fill="rgb(236,102,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.52" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::cmp::Ordering as core::cmp::PartialEq>::eq (50 samples, 0.73%)</title><rect x="688.6" y="485" width="8.6" height="15.0" fill="rgb(231,30,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="691.56" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::len (5 samples, 0.07%)</title><rect x="277.6" y="485" width="0.8" height="15.0" fill="rgb(223,69,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.58" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::ptr (6 samples, 0.09%)</title><rect x="632.2" y="453" width="1.0" height="15.0" fill="rgb(228,158,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="635.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>[unknown] (1 samples, 0.01%)</title><rect x="11.2" y="453" width="0.2" height="15.0" fill="rgb(252,22,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::reserve (1 samples, 0.01%)</title><rect x="281.7" y="469" width="0.2" height="15.0" fill="rgb(243,177,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.74" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl u8>::to_ascii_uppercase (10 samples, 0.15%)</title><rect x="559.0" y="485" width="1.7" height="15.0" fill="rgb(241,149,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.01" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::resize (5 samples, 0.07%)</title><rect x="470.8" y="517" width="0.9" height="15.0" fill="rgb(215,153,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.79" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::null (11 samples, 0.16%)</title><rect x="1083.6" y="389" width="1.9" height="15.0" fill="rgb(212,202,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1086.62" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib::test09::{{closure}} (51 samples, 0.75%)</title><rect x="11.4" y="469" width="8.8" height="15.0" fill="rgb(233,69,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as bio::utils::fastexp::FastExp<f64>>::fastexp (389 samples, 5.70%)</title><rect x="970.7" y="373" width="67.3" height="15.0" fill="rgb(242,35,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="973.67" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><f64 as..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::sample::RecordBuffer::fill (4 samples, 0.06%)</title><rect x="281.2" y="581" width="0.7" height="15.0" fill="rgb(222,189,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.22" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_bitmap_init (1 samples, 0.01%)</title><rect x="20.0" y="245" width="0.2" height="15.0" fill="rgb(207,27,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.03" 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::collections::hash::map::HashMap<K, V, S>>::contains_key (2 samples, 0.03%)</title><rect x="280.2" y="581" width="0.3" height="15.0" fill="rgb(230,190,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.18" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>inflate (23 samples, 0.34%)</title><rect x="14.0" y="309" width="4.0" height="15.0" fill="rgb(222,136,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.98" 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>dl_vdso_vsym (1 samples, 0.01%)</title><rect x="10.2" y="613" width="0.1" height="15.0" fill="rgb(210,19,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.17" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>je_arena_chunk_dalloc_huge (9 samples, 0.13%)</title><rect x="11.4" y="277" width="1.5" height="15.0" fill="rgb(221,81,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::saturating_sub (4 samples, 0.06%)</title><rect x="1188.4" y="517" width="0.7" height="15.0" fill="rgb(220,83,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.44" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>arena_dalloc_bin_locked_impl (1 samples, 0.01%)</title><rect x="11.0" y="533" width="0.2" height="15.0" fill="rgb(233,152,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.04" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve (248 samples, 3.64%)</title><rect x="73.8" y="485" width="42.9" height="15.0" fill="rgb(210,205,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="76.83" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><all..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test::test_main_static (1 samples, 0.01%)</title><rect x="10.3" y="501" width="0.2" height="15.0" fill="rgb(252,131,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bam_read1 (28 samples, 0.41%)</title><rect x="13.5" y="389" width="4.8" height="15.0" fill="rgb(215,122,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.46" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rgsl::randist::gaussian::ugaussian_P (2 samples, 0.03%)</title><rect x="283.5" y="373" width="0.3" height="15.0" fill="rgb(214,10,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.47" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl u64>::rotate_left (1 samples, 0.01%)</title><rect x="280.7" y="405" width="0.2" height="15.0" fill="rgb(223,0,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.70" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_observation_case_control (21 samples, 0.31%)</title><rect x="31.1" y="469" width="3.6" height="15.0" fill="rgb(226,90,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.10" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::offset (8 samples, 0.12%)</title><rect x="840.9" y="437" width="1.4" height="15.0" fill="rgb(239,99,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="843.95" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::offset (17 samples, 0.25%)</title><rect x="167.9" y="437" width="3.0" height="15.0" fill="rgb(226,80,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="170.92" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.0" y="501" width="0.2" height="15.0" fill="rgb(210,221,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><&'a bio::stats::probs::LogProb as core::ops::arith::Sub<bio::stats::probs::LogProb>>::sub (24 samples, 0.35%)</title><rect x="952.2" y="373" width="4.1" height="15.0" fill="rgb(244,190,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="955.17" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.3" y="373" width="0.2" height="15.0" fill="rgb(223,70,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::IndexMut<I> for [T]>::index_mut (55 samples, 0.81%)</title><rect x="458.2" y="501" width="9.5" height="15.0" fill="rgb(224,97,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="461.16" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::cmp::Ordering as core::cmp::PartialEq>::eq (3 samples, 0.04%)</title><rect x="22.5" y="133" width="0.5" height="15.0" fill="rgb(234,112,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.45" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_log1p (121 samples, 1.77%)</title><rect x="1127.2" y="485" width="20.9" height="15.0" fill="rgb(207,122,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1130.21" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::size_of (14 samples, 0.21%)</title><rect x="791.5" y="453" width="2.4" height="15.0" fill="rgb(250,74,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.48" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_from_slice (807 samples, 11.83%)</title><rect x="54.6" y="533" width="139.6" height="15.0" fill="rgb(222,228,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="57.63" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::vec::Vec<..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::as_mut_ptr (2 samples, 0.03%)</title><rect x="150.3" y="485" width="0.3" height="15.0" fill="rgb(208,92,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="153.28" 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>pthread_getattr_np (1 samples, 0.01%)</title><rect x="10.5" y="549" width="0.2" height="15.0" fill="rgb(239,12,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.52" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::stdio::print (27 samples, 0.40%)</title><rect x="26.3" y="165" width="4.6" height="15.0" fill="rgb(222,221,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.26" 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::f64::<impl f64>::ln_1p (137 samples, 2.01%)</title><rect x="1125.3" y="501" width="23.7" height="15.0" fill="rgb(207,73,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1128.31" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_fmt (1 samples, 0.01%)</title><rect x="30.9" y="181" width="0.2" height="15.0" fill="rgb(237,186,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" 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::ptr::drop_in_place (5 samples, 0.07%)</title><rect x="250.8" y="533" width="0.8" height="15.0" fill="rgb(221,126,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.77" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::offset (1 samples, 0.01%)</title><rect x="469.6" y="485" width="0.2" height="15.0" fill="rgb(234,104,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.58" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::write (1 samples, 0.01%)</title><rect x="13.1" y="389" width="0.2" height="15.0" fill="rgb(252,37,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.11" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as bio::utils::fastexp::FastExp<f64>>::fastexp (3 samples, 0.04%)</title><rect x="24.0" y="149" width="0.5" height="15.0" fill="rgb(245,86,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.01" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::call::pairwise::pileups (1,419 samples, 20.80%)</title><rect x="34.7" y="613" width="245.5" height="15.0" fill="rgb(220,201,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.73" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >libprosic::call::pairwise::pileups</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_w_log1p (5 samples, 0.07%)</title><rect x="1148.1" y="485" width="0.9" height="15.0" fill="rgb(236,219,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1151.14" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panicking::panicking (1 samples, 0.01%)</title><rect x="29.5" y="37" width="0.2" height="15.0" fill="rgb(227,117,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="32.55" 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>std::f64::<impl f64>::ln (1 samples, 0.01%)</title><rect x="25.9" y="133" width="0.2" height="15.0" fill="rgb(225,39,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.91" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ptr::Unique<T>>::as_ptr (1 samples, 0.01%)</title><rect x="555.2" y="437" width="0.2" height="15.0" fill="rgb(247,2,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.20" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::fold::{{closure}} (1 samples, 0.01%)</title><rect x="282.6" y="421" width="0.2" height="15.0" fill="rgb(207,226,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.60" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_read_block (3 samples, 0.04%)</title><rect x="281.2" y="469" width="0.5" height="15.0" fill="rgb(252,19,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.22" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::size_of (17 samples, 0.25%)</title><rect x="537.9" y="501" width="2.9" height="15.0" fill="rgb(252,215,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.90" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::null_mut (1 samples, 0.01%)</title><rect x="571.6" y="437" width="0.2" height="15.0" fill="rgb(252,191,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.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] (1 samples, 0.01%)</title><rect x="13.1" y="373" width="0.2" height="15.0" fill="rgb(222,28,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.11" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Add>::add (6 samples, 0.09%)</title><rect x="616.1" y="453" width="1.0" height="15.0" fill="rgb(237,50,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="619.09" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ptr::Unique<T>>::as_ptr (1 samples, 0.01%)</title><rect x="608.3" y="421" width="0.2" height="15.0" fill="rgb(252,134,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="611.30" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::ptr (41 samples, 0.60%)</title><rect x="439.3" y="485" width="7.1" height="15.0" fill="rgb(242,117,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.31" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>IO_file_underflow@@GLIBC_..5 (1 samples, 0.01%)</title><rect x="10.5" y="517" width="0.2" height="15.0" fill="rgb(209,72,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.52" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::next::{{closure}} (24 samples, 0.35%)</title><rect x="778.3" y="453" width="4.2" height="15.0" fill="rgb(213,124,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="781.33" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::IterMut<'a, T> as core::iter::iterator::Iterator>::next (99 samples, 1.45%)</title><rect x="531.5" y="517" width="17.1" height="15.0" fill="rgb(236,101,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="534.50" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib::call_tumor_normal (1,501 samples, 22.00%)</title><rect x="20.6" y="645" width="259.6" height="15.0" fill="rgb(241,89,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >lib::call_tumor_normal</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::is_null (4 samples, 0.06%)</title><rect x="571.1" y="453" width="0.7" height="15.0" fill="rgb(250,28,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.11" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>statrs::statistics::iter_statistics::<impl statrs::statistics::statistics::Statistics<f64> for T>::std_dev (1 samples, 0.01%)</title><rect x="19.7" y="405" width="0.2" height="15.0" fill="rgb(250,185,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.69" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_observation_case_control (1 samples, 0.01%)</title><rect x="30.9" y="213" width="0.2" height="15.0" fill="rgb(214,228,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.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>[unknown] (1 samples, 0.01%)</title><rect x="13.1" y="277" width="0.2" height="15.0" fill="rgb(248,1,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.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><alloc::raw_vec::RawVec<T, A>>::ptr (3 samples, 0.04%)</title><rect x="570.6" y="453" width="0.5" height="15.0" fill="rgb(243,81,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.60" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::from_raw_parts_mut (20 samples, 0.29%)</title><rect x="69.7" y="485" width="3.4" height="15.0" fill="rgb(205,97,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="72.67" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::partial_cmp (6 samples, 0.09%)</title><rect x="23.0" y="133" width="1.0" height="15.0" fill="rgb(241,205,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.97" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &'a mut F>::call_once (1 samples, 0.01%)</title><rect x="30.9" y="325" width="0.2" height="15.0" fill="rgb(218,164,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::likelihood::LatentVariableModel::likelihood_pileup (1 samples, 0.01%)</title><rect x="30.9" y="261" width="0.2" height="15.0" fill="rgb(207,42,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" 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::ln_simpsons_integrate_exp::{{closure}} (1 samples, 0.01%)</title><rect x="30.9" y="309" width="0.2" height="15.0" fill="rgb(251,175,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" 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><&'a T as core::fmt::Display>::fmt (1 samples, 0.01%)</title><rect x="1189.8" y="277" width="0.2" height="15.0" fill="rgb(247,201,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" 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>[unknown] (4 samples, 0.06%)</title><rect x="12.2" y="37" width="0.7" height="15.0" fill="rgb(245,61,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.25" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::swap_nonoverlapping_one (1 samples, 0.01%)</title><rect x="469.4" y="453" width="0.2" height="15.0" fill="rgb(234,227,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.41" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::collections::hash::table::make_hash (1 samples, 0.01%)</title><rect x="280.2" y="533" width="0.2" height="15.0" fill="rgb(254,15,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.18" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::hash::Hasher::write_usize (1 samples, 0.01%)</title><rect x="280.7" y="485" width="0.2" height="15.0" fill="rgb(217,193,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.70" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::call::pairwise::call (10 samples, 0.15%)</title><rect x="11.4" y="421" width="1.7" height="15.0" fill="rgb(222,120,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>init (2 samples, 0.03%)</title><rect x="20.2" y="645" width="0.4" height="15.0" fill="rgb(211,99,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.21" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test::run_tests_console::{{closure}} (1 samples, 0.01%)</title><rect x="10.3" y="453" width="0.2" height="15.0" fill="rgb(207,185,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::size_of (1 samples, 0.01%)</title><rect x="18.6" y="213" width="0.2" height="15.0" fill="rgb(211,53,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.65" 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::ptr::Unique<T>>::as_ptr (17 samples, 0.25%)</title><rect x="443.5" y="469" width="2.9" height="15.0" fill="rgb(247,165,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.46" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A> as core::ops::drop::Drop>::drop (9 samples, 0.13%)</title><rect x="11.4" y="357" width="1.5" height="15.0" fill="rgb(230,120,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::reserve (252 samples, 3.69%)</title><rect x="73.1" y="501" width="43.6" height="15.0" fill="rgb(220,44,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="76.13" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><all..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><rust_htslib::bam::record::Seq<'a> as core::ops::index::Index<usize>>::index (37 samples, 0.54%)</title><rect x="588.6" y="485" width="6.4" height="15.0" fill="rgb(208,164,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.58" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (50 samples, 0.73%)</title><rect x="604.5" y="469" width="8.6" height="15.0" fill="rgb(206,169,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="607.50" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::copy_from_slice (107 samples, 1.57%)</title><rect x="135.6" y="501" width="18.5" height="15.0" fill="rgb(205,92,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="138.58" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::flt2dec::to_shortest_str (7 samples, 0.10%)</title><rect x="29.7" y="101" width="1.2" height="15.0" fill="rgb(244,49,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="32.72" 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::PairCaller<A, B, P>>::pileup (5,259 samples, 77.09%)</title><rect x="280.2" y="613" width="909.6" height="15.0" fill="rgb(247,127,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.18" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><libprosic::model::PairCaller<A, B, P>>::pileup</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::write (26 samples, 0.38%)</title><rect x="26.4" y="133" width="4.5" height="15.0" fill="rgb(231,158,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.43" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::drop_in_place (9 samples, 0.13%)</title><rect x="11.4" y="373" width="1.5" height="15.0" fill="rgb(210,129,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>crc32 (2 samples, 0.03%)</title><rect x="18.0" y="325" width="0.3" height="15.0" fill="rgb(225,115,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.96" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_all (1 samples, 0.01%)</title><rect x="30.9" y="101" width="0.2" height="15.0" fill="rgb(253,211,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" 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>[unknown] (102 samples, 1.50%)</title><rect x="93.7" y="357" width="17.7" height="15.0" fill="rgb(234,61,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="96.72" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::ln_1m_exp (5 samples, 0.07%)</title><rect x="25.2" y="149" width="0.9" height="15.0" fill="rgb(239,199,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.22" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::is_null (16 samples, 0.23%)</title><rect x="1118.7" y="485" width="2.8" height="15.0" fill="rgb(214,42,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1121.74" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::get_unchecked_mut (1 samples, 0.01%)</title><rect x="284.3" y="437" width="0.2" height="15.0" fill="rgb(251,69,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.33" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::fmt::Formatter::write_formatted_parts (7 samples, 0.10%)</title><rect x="32.7" y="389" width="1.2" height="15.0" fill="rgb(229,116,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.66" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::collections::hash::map::HashMap<K, V, S>>::insert_hashed_ordered (2 samples, 0.03%)</title><rect x="280.9" y="517" width="0.3" height="15.0" fill="rgb(233,74,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.87" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::cmp::Ordering as core::cmp::PartialEq>::eq (1 samples, 0.01%)</title><rect x="31.6" y="421" width="0.2" height="15.0" fill="rgb(218,58,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.62" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (21 samples, 0.31%)</title><rect x="31.1" y="501" width="3.6" height="15.0" fill="rgb(246,184,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.10" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::PairPileup<'a, A, B, P>>::map_allele_freqs (21 samples, 0.31%)</title><rect x="31.1" y="613" width="3.6" height="15.0" fill="rgb(226,151,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.10" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::is_null (44 samples, 0.64%)</title><rect x="793.9" y="453" width="7.6" height="15.0" fill="rgb(227,101,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.90" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<&'a T, core::slice::Iter<'a, T>>>::spec_extend (720 samples, 10.55%)</title><rect x="55.7" y="517" width="124.5" height="15.0" fill="rgb(217,222,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="58.66" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::vec::Ve..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.3" y="389" width="0.2" height="15.0" fill="rgb(214,133,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>start_thread (53 samples, 0.78%)</title><rect x="11.0" y="629" width="9.2" height="15.0" fill="rgb(223,217,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.04" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::iter::range::Step>::add_usize (121 samples, 1.77%)</title><rect x="1154.5" y="501" width="21.0" height="15.0" fill="rgb(212,201,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1157.54" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::flt2dec::strategy::grisu::format_shortest_opt (6 samples, 0.09%)</title><rect x="29.9" y="85" width="1.0" height="15.0" fill="rgb(207,36,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="32.89" 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><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (397 samples, 5.82%)</title><rect x="354.9" y="517" width="68.7" height="15.0" fill="rgb(206,82,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.90" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc:..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_isoc99_sscanf (1 samples, 0.01%)</title><rect x="12.9" y="325" width="0.2" height="15.0" fill="rgb(206,21,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.94" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::ptr (3 samples, 0.04%)</title><rect x="354.2" y="501" width="0.5" height="15.0" fill="rgb(237,191,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.21" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (31 samples, 0.45%)</title><rect x="144.9" y="437" width="5.4" height="15.0" fill="rgb(253,223,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.92" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ops::range::Range<usize> as core::slice::SliceIndex<[T]>>::get_unchecked (78 samples, 1.14%)</title><rect x="219.6" y="485" width="13.5" height="15.0" fill="rgb(214,51,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="222.64" 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>[unknown] (8 samples, 0.12%)</title><rect x="112.6" y="181" width="1.4" height="15.0" fill="rgb(225,225,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="115.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::slice::from_raw_parts (46 samples, 0.67%)</title><rect x="399.2" y="485" width="7.9" height="15.0" fill="rgb(216,58,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.18" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::io::fasta::IndexedReader<R>>::read (1,418 samples, 20.79%)</title><rect x="34.9" y="581" width="245.3" height="15.0" fill="rgb(241,196,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.91" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><bio::io::fasta::IndexedReader<R..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (18 samples, 0.26%)</title><rect x="606.4" y="453" width="3.1" height="15.0" fill="rgb(225,192,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="609.40" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="27.0" y="69" width="0.1" height="15.0" fill="rgb(213,227,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.95" 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>core::ptr::null (1 samples, 0.01%)</title><rect x="1121.3" y="469" width="0.2" height="15.0" fill="rgb(254,229,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1124.33" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::is_null (3 samples, 0.04%)</title><rect x="587.0" y="453" width="0.5" height="15.0" fill="rgb(228,137,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.03" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><F as alloc::boxed::FnBox<A>>::call_box (1 samples, 0.01%)</title><rect x="1189.8" y="613" width="0.2" height="15.0" fill="rgb(226,213,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::bgzf_open (1 samples, 0.01%)</title><rect x="20.0" y="389" width="0.2" height="15.0" fill="rgb(206,19,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.03" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::from_raw_parts_mut (17 samples, 0.25%)</title><rect x="171.7" y="453" width="3.0" height="15.0" fill="rgb(207,215,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.73" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::sum (1,414 samples, 20.73%)</title><rect x="853.2" y="501" width="244.6" height="15.0" fill="rgb(244,216,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.23" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::iter::iterator::Iterator::..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::rt::lang_start::{{closure}} (1 samples, 0.01%)</title><rect x="10.3" y="533" width="0.2" height="15.0" fill="rgb(209,149,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_avx_unaligned (1 samples, 0.01%)</title><rect x="28.5" y="37" width="0.2" height="15.0" fill="rgb(213,65,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="31.51" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *mut T>::is_null (1 samples, 0.01%)</title><rect x="280.4" y="469" width="0.1" height="15.0" fill="rgb(237,144,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.35" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::PairPileup<'a, A, B, P>>::case_likelihood (60 samples, 0.88%)</title><rect x="20.6" y="245" width="10.3" height="15.0" fill="rgb(235,156,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" 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::slice::from_raw_parts_mut (1 samples, 0.01%)</title><rect x="18.3" y="309" width="0.2" height="15.0" fill="rgb(212,14,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.30" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::option::Option<T>>::map (96 samples, 1.41%)</title><rect x="765.9" y="469" width="16.6" height="15.0" fill="rgb(230,11,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="768.88" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bcf_hdr_register_hrec (1 samples, 0.01%)</title><rect x="12.9" y="341" width="0.2" height="15.0" fill="rgb(233,108,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.94" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (102 samples, 1.50%)</title><rect x="93.7" y="341" width="17.7" height="15.0" fill="rgb(243,20,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="96.72" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (15 samples, 0.22%)</title><rect x="111.4" y="245" width="2.6" height="15.0" fill="rgb(231,138,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.36" 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::ptr::Unique<T>>::as_ptr (1 samples, 0.01%)</title><rect x="354.6" y="485" width="0.1" height="15.0" fill="rgb(219,90,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.56" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib::call_tumor_normal (1 samples, 0.01%)</title><rect x="1189.8" y="549" width="0.2" height="15.0" fill="rgb(253,197,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (7 samples, 0.10%)</title><rect x="11.7" y="85" width="1.2" height="15.0" fill="rgb(247,174,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.73" 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><bio::stats::probs::LogProb as core::cmp::PartialOrd>::gt (9 samples, 0.13%)</title><rect x="22.5" y="149" width="1.5" height="15.0" fill="rgb(221,164,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.45" 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>rallocx (4 samples, 0.06%)</title><rect x="282.8" y="357" width="0.7" height="15.0" fill="rgb(247,161,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::flt2dec::to_shortest_str (5 samples, 0.07%)</title><rect x="33.9" y="389" width="0.8" height="15.0" fill="rgb(234,124,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="36.87" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::dealloc_buffer (9 samples, 0.13%)</title><rect x="11.4" y="341" width="1.5" height="15.0" fill="rgb(209,63,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::option::Option<T>>::unwrap_or (91 samples, 1.33%)</title><rect x="697.2" y="485" width="15.7" height="15.0" fill="rgb(224,38,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.21" 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>[unknown] (42 samples, 0.62%)</title><rect x="207.5" y="405" width="7.3" height="15.0" fill="rgb(253,225,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.53" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::ge (12 samples, 0.18%)</title><rect x="727.7" y="453" width="2.0" height="15.0" fill="rgb(250,36,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="730.65" 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><csv::writer::Writer<W>>::serialize (1 samples, 0.01%)</title><rect x="1189.8" y="517" width="0.2" height="15.0" fill="rgb(251,28,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (60 samples, 0.88%)</title><rect x="20.6" y="213" width="10.3" height="15.0" fill="rgb(254,218,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln_1p (3 samples, 0.04%)</title><rect x="24.7" y="149" width="0.5" height="15.0" fill="rgb(234,183,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.70" 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>dl_relocate_object (1 samples, 0.01%)</title><rect x="10.2" y="645" width="0.1" height="15.0" fill="rgb(229,227,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.17" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::hash::sip::Hasher<S> as core::hash::Hasher>::finish (1 samples, 0.01%)</title><rect x="280.5" y="485" width="0.2" height="15.0" fill="rgb(211,80,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.52" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.3" y="357" width="0.2" height="15.0" fill="rgb(230,170,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::null_mut (2 samples, 0.03%)</title><rect x="454.9" y="469" width="0.3" height="15.0" fill="rgb(207,154,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="457.88" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::ops::range::RangeTo<usize> as core::slice::SliceIndex<[T]>>::index (113 samples, 1.66%)</title><rect x="258.9" y="517" width="19.5" height="15.0" fill="rgb(250,172,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="261.90" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="13.1" y="293" width="0.2" height="15.0" fill="rgb(245,149,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.11" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::from_raw_parts (2 samples, 0.03%)</title><rect x="587.5" y="453" width="0.4" height="15.0" fill="rgb(243,128,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.55" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bam_read1 (3 samples, 0.04%)</title><rect x="281.2" y="501" width="0.5" height="15.0" fill="rgb(218,221,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.22" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::Record::data (1 samples, 0.01%)</title><rect x="34.7" y="549" width="0.2" height="15.0" fill="rgb(212,192,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.73" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_zero (7 samples, 0.10%)</title><rect x="1038.0" y="373" width="1.2" height="15.0" fill="rgb(237,59,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1040.96" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><&'a mut alloc::vec::Vec<T> as core::iter::traits::IntoIterator>::into_iter (1 samples, 0.01%)</title><rect x="353.9" y="517" width="0.1" height="15.0" fill="rgb(248,166,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="356.86" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Sub>::sub (5 samples, 0.07%)</title><rect x="955.5" y="357" width="0.8" height="15.0" fill="rgb(215,47,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="958.45" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (11 samples, 0.16%)</title><rect x="561.8" y="453" width="1.9" height="15.0" fill="rgb(221,204,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::checked_add (5 samples, 0.07%)</title><rect x="468.5" y="453" width="0.9" height="15.0" fill="rgb(233,191,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.54" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::collect (6 samples, 0.09%)</title><rect x="18.5" y="373" width="1.0" height="15.0" fill="rgb(254,107,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.48" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::fragments::IndelEvidence::prob (1 samples, 0.01%)</title><rect x="282.1" y="565" width="0.2" height="15.0" fill="rgb(249,170,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.08" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::Seq::encoded_base (28 samples, 0.41%)</title><rect x="590.1" y="469" width="4.9" height="15.0" fill="rgb(230,80,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="593.14" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::ReadEmission::project_j (4 samples, 0.06%)</title><rect x="619.4" y="485" width="0.7" height="15.0" fill="rgb(218,75,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.37" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::DerefMut>::deref_mut (1 samples, 0.01%)</title><rect x="470.3" y="501" width="0.1" height="15.0" fill="rgb(214,5,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.27" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><&'a mut csv::serializer::SeRecord<'w, W> as serde::ser::Serializer>::serialize_newtype_struct (1 samples, 0.01%)</title><rect x="1189.8" y="373" width="0.2" height="15.0" fill="rgb(223,170,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_madvise (15 samples, 0.22%)</title><rect x="111.4" y="293" width="2.6" height="15.0" fill="rgb(223,164,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.36" 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::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::le (3 samples, 0.04%)</title><rect x="23.5" y="117" width="0.5" height="15.0" fill="rgb(249,43,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.49" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::io::Write::write_fmt (14 samples, 0.21%)</title><rect x="32.3" y="437" width="2.4" height="15.0" fill="rgb(240,173,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.31" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::buffered::BufReader<R> as std::io::BufRead>::fill_buf (194 samples, 2.84%)</title><rect x="201.3" y="533" width="33.6" height="15.0" fill="rgb(207,102,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.30" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><s..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1 samples, 0.01%)</title><rect x="10.3" y="325" width="0.2" height="15.0" fill="rgb(211,182,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::collect (1 samples, 0.01%)</title><rect x="281.7" y="533" width="0.2" height="15.0" fill="rgb(211,147,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.74" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::from_raw_parts (3 samples, 0.04%)</title><rect x="609.0" y="437" width="0.5" height="15.0" fill="rgb(231,0,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="611.99" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for u64>::le (28 samples, 0.41%)</title><rect x="245.9" y="501" width="4.9" height="15.0" fill="rgb(243,107,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="248.93" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2 samples, 0.03%)</title><rect x="10.7" y="645" width="0.3" height="15.0" fill="rgb(246,73,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.69" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::evidence::reads::DeletionEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_y (47 samples, 0.69%)</title><rect x="566.6" y="517" width="8.1" height="15.0" fill="rgb(228,69,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.62" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><libprosic::model::priors::flat::FlatTumorNormalModel as libprosic::model::priors::PairModel<libprosic::model::ContinuousAlleleFreqs, libprosic::model::DiscreteAlleleFreqs>>::joint_prob::{{closure}}::{{closure}} (1 samples, 0.01%)</title><rect x="30.9" y="293" width="0.2" height="15.0" fill="rgb(228,109,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" 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>serde::ser::impls::<impl serde::ser::Serialize for &'a T>::serialize (1 samples, 0.01%)</title><rect x="1189.8" y="437" width="0.2" height="15.0" fill="rgb(243,221,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sync::once::Once::call_once (2 samples, 0.03%)</title><rect x="566.3" y="453" width="0.3" height="15.0" fill="rgb(229,98,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.27" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::hash::sip::Sip13Rounds as core::hash::sip::Sip>::d_rounds (1 samples, 0.01%)</title><rect x="280.2" y="469" width="0.2" height="15.0" fill="rgb(233,62,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.18" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (15 samples, 0.22%)</title><rect x="111.4" y="277" width="2.6" height="15.0" fill="rgb(253,224,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.36" 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::hash::sip::SipHasher13 as core::hash::Hasher>::finish (1 samples, 0.01%)</title><rect x="280.2" y="501" width="0.2" height="15.0" fill="rgb(220,61,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.18" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (4 samples, 0.06%)</title><rect x="587.9" y="469" width="0.7" height="15.0" fill="rgb(250,196,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.89" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::iter::range::Step>::add_usize (3 samples, 0.04%)</title><rect x="471.1" y="469" width="0.6" height="15.0" fill="rgb(232,42,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.14" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::offset (24 samples, 0.35%)</title><rect x="1085.5" y="405" width="4.2" height="15.0" fill="rgb(245,187,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1088.53" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::fold (1 samples, 0.01%)</title><rect x="282.6" y="485" width="0.2" height="15.0" fill="rgb(219,122,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.60" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &'a mut F>::call_once (61 samples, 0.89%)</title><rect x="20.6" y="469" width="10.5" height="15.0" fill="rgb(211,181,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.55" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::ptr (7 samples, 0.10%)</title><rect x="65.7" y="485" width="1.2" height="15.0" fill="rgb(210,146,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="68.70" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::fragments::isize_pmf (1 samples, 0.01%)</title><rect x="282.1" y="533" width="0.2" height="15.0" fill="rgb(235,52,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.08" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZN4core3fmt5float32float_to_decimal_common_shortest17h9b22effd5691a683.lv.5848613266883285139 (22 samples, 0.32%)</title><rect x="27.1" y="117" width="3.8" height="15.0" fill="rgb(242,146,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.12" 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 (1 samples, 0.01%)</title><rect x="1189.8" y="293" width="0.2" height="15.0" fill="rgb(210,126,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" 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 (1 samples, 0.01%)</title><rect x="30.9" y="69" width="0.2" height="15.0" fill="rgb(232,113,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" 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>ZN4core3fmt5float32float_to_decimal_common_shortest17h9b22effd5691a683.lv.5848613266883285139 (1 samples, 0.01%)</title><rect x="30.9" y="149" width="0.2" height="15.0" fill="rgb(250,150,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.93" 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_zero (3 samples, 0.04%)</title><rect x="1149.0" y="517" width="0.5" height="15.0" fill="rgb(243,1,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1152.01" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_open (1 samples, 0.01%)</title><rect x="20.0" y="373" width="0.2" height="15.0" fill="rgb(208,43,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.03" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_ieee754_exp_avx (1 samples, 0.01%)</title><rect x="282.1" y="453" width="0.2" height="15.0" fill="rgb(223,122,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.08" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::alloc::size_align (1 samples, 0.01%)</title><rect x="18.6" y="229" width="0.2" height="15.0" fill="rgb(238,18,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.65" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::drop::Drop>::drop (1 samples, 0.01%)</title><rect x="18.3" y="357" width="0.2" height="15.0" fill="rgb(233,201,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.30" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib::call_tumor_normal (51 samples, 0.75%)</title><rect x="11.4" y="437" width="8.8" height="15.0" fill="rgb(231,136,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.38" 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>ZN3std9panicking3try7do_call17hba0bdcc3670471cc.lv.5405014636996911178 (52 samples, 0.76%)</title><rect x="11.2" y="549" width="9.0" height="15.0" fill="rgb(234,25,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.21" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve (1 samples, 0.01%)</title><rect x="281.7" y="453" width="0.2" height="15.0" fill="rgb(232,102,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.74" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::mem::swap (66 samples, 0.97%)</title><rect x="1176.7" y="501" width="11.4" height="15.0" fill="rgb(251,78,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1179.68" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::skip (13 samples, 0.19%)</title><rect x="851.0" y="501" width="2.2" height="15.0" fill="rgb(235,181,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="853.98" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::next::{{closure}} (1 samples, 0.01%)</title><rect x="1189.3" y="485" width="0.2" height="15.0" fill="rgb(239,126,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.31" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libprosic::model::evidence::reads::DeletionEmissionParams::ref_base (11 samples, 0.16%)</title><rect x="550.4" y="501" width="1.9" height="15.0" fill="rgb(225,207,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.36" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::ops::arith::Add>::add (4 samples, 0.06%)</title><rect x="20.9" y="165" width="0.7" height="15.0" fill="rgb(215,67,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.90" 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 (24 samples, 0.35%)</title><rect x="1089.7" y="469" width="4.1" height="15.0" fill="rgb(242,144,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1092.68" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::len (12 samples, 0.18%)</title><rect x="1123.2" y="485" width="2.1" height="15.0" fill="rgb(224,72,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.23" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[libgs....0] (1 samples, 0.01%)</title><rect x="282.1" y="485" width="0.2" height="15.0" fill="rgb(210,88,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.08" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (1 samples, 0.01%)</title><rect x="281.7" y="517" width="0.2" height="15.0" fill="rgb(233,144,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.74" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test::test_main (1 samples, 0.01%)</title><rect x="10.3" y="485" width="0.2" height="15.0" fill="rgb(249,102,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.35" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::result::Result<T, E> as core::ops::try::Try>::into_result (1 samples, 0.01%)</title><rect x="281.7" y="421" width="0.2" height="15.0" fill="rgb(206,158,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.74" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::alloc::realloc (4 samples, 0.06%)</title><rect x="282.8" y="373" width="0.7" height="15.0" fill="rgb(222,182,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.77" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::as_ptr (3 samples, 0.04%)</title><rect x="273.1" y="469" width="0.5" height="15.0" fill="rgb(214,26,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="276.09" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>statrs::statistics::slice_statistics::<impl statrs::statistics::order_statistics::OrderStatistics<f64> for [f64]>::percentile (1 samples, 0.01%)</title><rect x="19.9" y="405" width="0.1" height="15.0" fill="rgb(217,209,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.86" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index (14 samples, 0.21%)</title><rect x="639.1" y="453" width="2.4" height="15.0" fill="rgb(254,60,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="642.09" y="463.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