Created
February 26, 2019 12:24
-
-
Save dlaehnemann/3a2e731610574147f068506f49676681 to your computer and use it in GitHub Desktop.
libprosic flamegraph of test09 on branch refactor-framework at commit 0b94b7d1dc36c217317d33302e5b38b50abcb839
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="934" onload="init(evt)" viewBox="0 0 1200 934" 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="934.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="917" 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="917" 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>[[kerne.allsyms]] (1 samples, 0.33%)</title><rect x="507.5" y="245" width="3.8" height="15.0" fill="rgb(246,219,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.45" 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>_GI___mremap (2 samples, 0.65%)</title><rect x="592.3" y="261" width="7.7" height="15.0" fill="rgb(239,197,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.29" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::string::String as core::clone::Clone>::clone (1 samples, 0.33%)</title><rect x="488.2" y="229" width="3.8" height="15.0" fill="rgb(252,93,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.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>_ieee754_log_avx (1 samples, 0.33%)</title><rect x="17.7" y="421" width="3.9" height="15.0" fill="rgb(224,78,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" 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><varlociraptor::model::modes::tumor::TumorNormalPosterior as bio::stats::bayesian::model::Posterior>::compute (4 samples, 1.31%)</title><rect x="492.0" y="437" width="15.5" height="15.0" fill="rgb(221,61,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.03" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><varlociraptor::model::modes::tumor::TumorNormalLikelihood as bio::stats::bayesian::model::Likelihood>::compute (1 samples, 0.33%)</title><rect x="503.6" y="341" width="3.9" height="15.0" fill="rgb(216,167,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.59" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.33%)</title><rect x="10.0" y="853" width="3.9" height="15.0" fill="rgb(210,4,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once (1 samples, 0.33%)</title><rect x="484.3" y="677" width="3.9" height="15.0" fill="rgb(253,25,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.31" 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>varlociraptor::estimation::alignment_properties::AlignmentProperties::estimate (22 samples, 7.19%)</title><rect x="1105.2" y="485" width="84.8" height="15.0" fill="rgb(210,65,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1108.16" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >varlocira..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bam_read1 (21 samples, 6.86%)</title><rect x="1109.0" y="453" width="81.0" height="15.0" fill="rgb(224,68,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.02" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bam_read1</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::Prob as core::ops::arith::Add>::add (1 samples, 0.33%)</title><rect x="202.8" y="709" width="3.9" height="15.0" fill="rgb(229,34,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.81" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_log1p (1 samples, 0.33%)</title><rect x="495.9" y="213" width="3.8" height="15.0" fill="rgb(227,130,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="498.88" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___libc_malloc (1 samples, 0.33%)</title><rect x="507.5" y="325" width="3.8" height="15.0" fill="rgb(231,117,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.45" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___libc_malloc (1 samples, 0.33%)</title><rect x="515.2" y="261" width="3.8" height="15.0" fill="rgb(252,207,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.16" 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>>::push (1 samples, 0.33%)</title><rect x="129.5" y="757" width="3.9" height="15.0" fill="rgb(250,51,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="132.54" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (1 samples, 0.33%)</title><rect x="17.7" y="549" width="3.9" height="15.0" fill="rgb(247,217,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" 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::function::FnOnce::call_once (182 samples, 59.48%)</title><rect x="488.2" y="517" width="701.8" height="15.0" fill="rgb(230,207,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::ops::function::FnOnce::call_once</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Cloned<I> as core::iter::iterator::Iterator>::fold (1 samples, 0.33%)</title><rect x="488.2" y="309" width="3.8" height="15.0" fill="rgb(238,152,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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><F as alloc::boxed::FnBox<A>>::call_box (182 samples, 59.48%)</title><rect x="488.2" y="773" width="701.8" height="15.0" fill="rgb(211,176,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><F as alloc::boxed::FnBox<A>>::call_box</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::fold::{{closure}} (16 samples, 5.23%)</title><rect x="306.9" y="629" width="61.7" height="15.0" fill="rgb(251,115,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="309.93" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core:..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ops::function::FnOnce::call_once (1 samples, 0.33%)</title><rect x="17.7" y="741" width="3.9" height="15.0" fill="rgb(253,96,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ptr::<impl *const T>::offset (1 samples, 0.33%)</title><rect x="303.1" y="661" width="3.8" height="15.0" fill="rgb(208,86,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="306.07" 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><f64 as core::ops::arith::Add>::add (1 samples, 0.33%)</title><rect x="202.8" y="693" width="3.9" height="15.0" fill="rgb(224,63,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.81" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::option::Option<T>>::map (1 samples, 0.33%)</title><rect x="484.3" y="693" width="3.9" height="15.0" fill="rgb(246,178,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.31" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (1 samples, 0.33%)</title><rect x="199.0" y="709" width="3.8" height="15.0" fill="rgb(228,151,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="201.95" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln_1p (20 samples, 6.54%)</title><rect x="372.5" y="725" width="77.1" height="15.0" fill="rgb(214,152,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="375.48" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::f64..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><varlociraptor::model::evidence::reads::IndelEvidence as varlociraptor::model::evidence::reads::AbstractReadEvidence>::prob (121 samples, 39.54%)</title><rect x="21.6" y="789" width="466.6" height="15.0" fill="rgb(234,161,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.57" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><varlociraptor::model::evidence::reads::IndelEvidence as varloc..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>varlociraptor::model::sample::Sample::extract_observations (1 samples, 0.33%)</title><rect x="17.7" y="661" width="3.9" height="15.0" fill="rgb(248,207,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::IterMut<'a, T>>::post_inc_start (1 samples, 0.33%)</title><rect x="160.4" y="741" width="3.8" height="15.0" fill="rgb(227,114,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.39" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><varlociraptor::model::evidence::reads::IndelEvidence as varlociraptor::model::evidence::reads::AbstractReadEvidence>::prob::{{closure}} (1 samples, 0.33%)</title><rect x="484.3" y="661" width="3.9" height="15.0" fill="rgb(234,144,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.31" 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>int_malloc (1 samples, 0.33%)</title><rect x="519.0" y="197" width="3.9" height="15.0" fill="rgb(225,185,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" 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::bayesian::model::Model<L, Pr, Po>>::compute (4 samples, 1.31%)</title><rect x="492.0" y="469" width="15.5" height="15.0" fill="rgb(226,203,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.03" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::next (1 samples, 0.33%)</title><rect x="303.1" y="709" width="3.8" height="15.0" fill="rgb(252,179,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="306.07" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Map<I, F> as core::iter::iterator::Iterator>::fold (1 samples, 0.33%)</title><rect x="488.2" y="453" width="3.8" height="15.0" fill="rgb(213,54,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.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>inflate_block (18 samples, 5.88%)</title><rect x="1109.0" y="405" width="69.4" height="15.0" fill="rgb(217,60,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.02" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >inflate..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::alloc::realloc (1 samples, 0.33%)</title><rect x="519.0" y="245" width="3.9" height="15.0" fill="rgb(217,12,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_rust_maybe_catch_panic (1 samples, 0.33%)</title><rect x="17.7" y="773" width="3.9" height="15.0" fill="rgb(224,228,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[libgs....0] (1 samples, 0.33%)</title><rect x="526.7" y="229" width="3.9" height="15.0" fill="rgb(222,219,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.73" 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><varlociraptor::model::likelihood::ContaminatedSampleLikelihoodModel as bio::stats::bayesian::model::Likelihood>::compute (2 samples, 0.65%)</title><rect x="492.0" y="309" width="7.7" height="15.0" fill="rgb(219,139,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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><f64 as core::iter::traits::Sum>::sum::{{closure}} (1 samples, 0.33%)</title><rect x="306.9" y="613" width="3.9" height="15.0" fill="rgb(231,0,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="309.93" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_one_minus_exp (1 samples, 0.33%)</title><rect x="499.7" y="293" width="3.9" height="15.0" fill="rgb(223,173,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.74" 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 for f64>::le (1 samples, 0.33%)</title><rect x="241.4" y="693" width="3.8" height="15.0" fill="rgb(248,221,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.37" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::with_capacity (1 samples, 0.33%)</title><rect x="488.2" y="165" width="3.8" height="15.0" fill="rgb(214,44,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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::ops::function::FnOnce::call_once (1 samples, 0.33%)</title><rect x="17.7" y="709" width="3.9" height="15.0" fill="rgb(244,191,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZN115_<varlociraptor::model::modes::tumor::TumorNormalPosterior as bio::stats::bayesian::model::Posterior>7compute28_{{closure}}28_{{closure}}17h77c68445dbfac792.lv.6564954850388233150 (1 samples, 0.33%)</title><rect x="499.7" y="389" width="3.9" height="15.0" fill="rgb(209,160,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.74" 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 (1 samples, 0.33%)</title><rect x="503.6" y="373" width="3.9" height="15.0" fill="rgb(218,210,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.59" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<&'a T, core::slice::Iter<'a, T>>>::spec_extend (8 samples, 2.61%)</title><rect x="588.4" y="389" width="30.9" height="15.0" fill="rgb(239,47,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.43" y="399.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>elision_init (1 samples, 0.33%)</title><rect x="13.9" y="805" width="3.8" height="15.0" fill="rgb(247,10,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.86" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::try_fold (3 samples, 0.98%)</title><rect x="472.7" y="661" width="11.6" height="15.0" fill="rgb(230,140,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.75" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___libc_malloc (1 samples, 0.33%)</title><rect x="488.2" y="85" width="3.8" height="15.0" fill="rgb(247,174,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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>varlociraptor::model::evidence::fragments::IndelEvidence::prob_sample_alt (3 samples, 0.98%)</title><rect x="519.0" y="437" width="11.6" height="15.0" fill="rgb(226,171,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::le (1 samples, 0.33%)</title><rect x="299.2" y="693" width="3.9" height="15.0" fill="rgb(219,133,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="302.22" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_desugared (1 samples, 0.33%)</title><rect x="17.7" y="517" width="3.9" height="15.0" fill="rgb(239,193,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_from_slice (1 samples, 0.33%)</title><rect x="488.2" y="373" width="3.8" height="15.0" fill="rgb(229,27,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.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>core::cmp::min (3 samples, 0.98%)</title><rect x="457.3" y="757" width="11.6" height="15.0" fill="rgb(224,192,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.32" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (1 samples, 0.33%)</title><rect x="17.7" y="565" width="3.9" height="15.0" fill="rgb(253,109,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" 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<'a> as core::ops::index::Index<usize>>::index (1 samples, 0.33%)</title><rect x="484.3" y="645" width="3.9" height="15.0" fill="rgb(235,60,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.31" 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>::le (2 samples, 0.65%)</title><rect x="461.2" y="725" width="7.7" height="15.0" fill="rgb(227,133,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="464.18" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><varlociraptor::model::likelihood::ContaminatedSampleLikelihoodModel as bio::stats::bayesian::model::Likelihood>::compute::{{closure}} (1 samples, 0.33%)</title><rect x="503.6" y="293" width="3.9" height="15.0" fill="rgb(231,101,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.59" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_simpsons_integrate_exp (4 samples, 1.31%)</title><rect x="492.0" y="421" width="15.5" height="15.0" fill="rgb(241,67,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.03" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::le (1 samples, 0.33%)</title><rect x="299.2" y="677" width="3.9" height="15.0" fill="rgb(243,121,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="302.22" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::iter::traits::Sum>::sum (17 samples, 5.56%)</title><rect x="306.9" y="709" width="65.6" height="15.0" fill="rgb(225,208,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="309.93" y="719.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>core::iter::iterator::select_fold1 (3 samples, 0.98%)</title><rect x="472.7" y="725" width="11.6" height="15.0" fill="rgb(226,102,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.75" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::IndexedReader::fetch (1 samples, 0.33%)</title><rect x="511.3" y="437" width="3.9" height="15.0" fill="rgb(208,65,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.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>_memcpy_sse2_unaligned_erms (68 samples, 22.22%)</title><rect x="785.1" y="405" width="262.2" height="15.0" fill="rgb(240,91,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="788.10" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_memcpy_sse2_unaligned_erms</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>varlociraptor::model::evidence::reads::ReadEmission::prob_match_mismatch (1 samples, 0.33%)</title><rect x="202.8" y="741" width="3.9" height="15.0" fill="rgb(244,218,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.81" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><lazy_static::lazy::Lazy<T>>::get (1 samples, 0.33%)</title><rect x="195.1" y="677" width="3.9" height="15.0" fill="rgb(212,50,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="198.10" 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><varlociraptor::model::likelihood::ContaminatedSampleLikelihoodModel as bio::stats::bayesian::model::Likelihood>::compute (1 samples, 0.33%)</title><rect x="503.6" y="325" width="3.9" height="15.0" fill="rgb(243,162,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.59" 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><f64 as core::ops::arith::Add>::add (3 samples, 0.98%)</title><rect x="148.8" y="741" width="11.6" height="15.0" fill="rgb(235,153,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.82" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::clone::Clone>::clone (1 samples, 0.33%)</title><rect x="488.2" y="213" width="3.8" height="15.0" fill="rgb(244,111,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.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><alloc::alloc::Global as core::alloc::Alloc>::alloc (1 samples, 0.33%)</title><rect x="488.2" y="117" width="3.8" height="15.0" fill="rgb(234,116,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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::iter::iterator::select_fold1::{{closure}} (3 samples, 0.98%)</title><rect x="472.7" y="693" width="11.6" height="15.0" fill="rgb(237,15,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.75" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panic::catch_unwind (182 samples, 59.48%)</title><rect x="488.2" y="613" width="701.8" height="15.0" fill="rgb(236,63,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panic::catch_unwind</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>varlociraptor::model::evidence::reads::EditDistanceCalculation::new (1 samples, 0.33%)</title><rect x="484.3" y="773" width="3.9" height="15.0" fill="rgb(243,194,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.31" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_add_exp (2 samples, 0.65%)</title><rect x="492.0" y="245" width="7.7" height="15.0" fill="rgb(209,82,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>bio::stats::probs::LogProb::ln_one_minus_exp (1 samples, 0.33%)</title><rect x="503.6" y="261" width="3.9" height="15.0" fill="rgb(251,228,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.59" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (1 samples, 0.33%)</title><rect x="488.2" y="469" width="3.8" height="15.0" fill="rgb(253,48,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::slice::hack::to_vec (1 samples, 0.33%)</title><rect x="488.2" y="389" width="3.8" height="15.0" fill="rgb(210,147,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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>varlociraptor::model::evidence::fragments::isize_pmf (1 samples, 0.33%)</title><rect x="526.7" y="261" width="3.9" height="15.0" fill="rgb(232,38,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.73" 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::alloc::alloc (1 samples, 0.33%)</title><rect x="488.2" y="101" width="3.8" height="15.0" fill="rgb(219,117,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::pattern_matching::myers::Myers<T>>::new (1 samples, 0.33%)</title><rect x="484.3" y="757" width="3.9" height="15.0" fill="rgb(214,50,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.31" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve_internal (1 samples, 0.33%)</title><rect x="515.2" y="309" width="3.8" height="15.0" fill="rgb(252,188,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.16" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialOrd>::gt (1 samples, 0.33%)</title><rect x="241.4" y="741" width="3.8" height="15.0" fill="rgb(211,15,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.37" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::alloc::Global as core::alloc::Alloc>::realloc (2 samples, 0.65%)</title><rect x="592.3" y="325" width="7.7" height="15.0" fill="rgb(233,139,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.29" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl [T]>::copy_from_slice (2 samples, 0.65%)</title><rect x="611.6" y="373" width="7.7" height="15.0" fill="rgb(242,71,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="614.57" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::buffered::BufReader<R> as std::io::BufRead>::consume (2 samples, 0.65%)</title><rect x="619.3" y="405" width="7.7" height="15.0" fill="rgb(222,115,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.28" 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>sysmalloc (1 samples, 0.33%)</title><rect x="507.5" y="293" width="3.8" height="15.0" fill="rgb(216,95,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.45" 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 alloc::vec::SpecExtend<T, I>>::from_iter (2 samples, 0.65%)</title><rect x="492.0" y="357" width="7.7" height="15.0" fill="rgb(244,175,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>test::run_test::run_test_inner::{{closure}} (182 samples, 59.48%)</title><rect x="488.2" y="629" width="701.8" height="15.0" fill="rgb(205,215,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >test::run_test::run_test_inner::{{closure}}</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib-6d39b4a9dd5 (2 samples, 0.65%)</title><rect x="10.0" y="869" width="7.7" height="15.0" fill="rgb(242,11,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_libc_read (39 samples, 12.75%)</title><rect x="634.7" y="341" width="150.4" height="15.0" fill="rgb(207,52,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="637.71" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_libc_read</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::checked_add (1 samples, 0.33%)</title><rect x="468.9" y="741" width="3.8" height="15.0" fill="rgb(250,91,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.89" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::itr_next (1 samples, 0.33%)</title><rect x="507.5" y="421" width="3.8" height="15.0" fill="rgb(243,96,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.45" 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><varlociraptor::model::evidence::observation::Evidence as core::clone::Clone>::clone (1 samples, 0.33%)</title><rect x="488.2" y="245" width="3.8" height="15.0" fill="rgb(240,128,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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>varlociraptor::model::sample::Sample::fragment_observation (3 samples, 0.98%)</title><rect x="519.0" y="453" width="11.6" height="15.0" fill="rgb(239,145,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" 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] (122 samples, 39.87%)</title><rect x="17.7" y="853" width="470.5" height="15.0" fill="rgb(229,137,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index_mut (1 samples, 0.33%)</title><rect x="125.7" y="725" width="3.8" height="15.0" fill="rgb(243,106,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="128.69" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys_common::backtrace::_rust_begin_short_backtrace (1 samples, 0.33%)</title><rect x="17.7" y="837" width="3.9" height="15.0" fill="rgb(247,139,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>varlociraptor::model::likelihood::ContaminatedSampleLikelihoodModel::likelihood_observation (1 samples, 0.33%)</title><rect x="503.6" y="277" width="3.9" height="15.0" fill="rgb(222,60,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.59" 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::thread::Builder::spawn_unchecked::{{closure}}::{{closure}} (182 samples, 59.48%)</title><rect x="488.2" y="661" width="701.8" height="15.0" fill="rgb(214,211,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (3 samples, 0.98%)</title><rect x="519.0" y="357" width="11.6" height="15.0" fill="rgb(226,119,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" 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><u128 as core::ops::bit::BitAnd>::bitand (1 samples, 0.33%)</title><rect x="476.6" y="613" width="3.9" height="15.0" fill="rgb(209,120,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="479.60" 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><varlociraptor::model::evidence::observation::Observation as core::clone::Clone>::clone (1 samples, 0.33%)</title><rect x="488.2" y="261" width="3.8" height="15.0" fill="rgb(233,2,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd<&'b B> for &'a A>::ge (1 samples, 0.33%)</title><rect x="264.5" y="709" width="3.9" height="15.0" fill="rgb(242,46,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.51" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::io::buffered::BufReader<R> as std::io::BufRead>::fill_buf (41 samples, 13.40%)</title><rect x="627.0" y="405" width="158.1" height="15.0" fill="rgb(227,113,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="629.99" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><std::io::buffered::..</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.33%)</title><rect x="499.7" y="341" width="3.9" height="15.0" fill="rgb(208,52,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.74" 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>do_realloc_bam_data (1 samples, 0.33%)</title><rect x="507.5" y="341" width="3.8" height="15.0" fill="rgb(238,144,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.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><core::iter::Enumerate<I> as core::iter::iterator::Iterator>::fold (17 samples, 5.56%)</title><rect x="306.9" y="677" width="65.6" height="15.0" fill="rgb(248,221,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="309.93" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::ops::function::FnOnce::call_once (182 samples, 59.48%)</title><rect x="488.2" y="549" width="701.8" height="15.0" fill="rgb(246,125,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::ops::function::FnOnce::call_once</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Cloned<I> as core::iter::iterator::Iterator>::fold::{{closure}} (1 samples, 0.33%)</title><rect x="488.2" y="277" width="3.8" height="15.0" fill="rgb(238,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (1 samples, 0.33%)</title><rect x="17.7" y="533" width="3.9" height="15.0" fill="rgb(218,204,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" 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 (1 samples, 0.33%)</title><rect x="133.4" y="693" width="3.9" height="15.0" fill="rgb(246,135,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="136.40" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::Rev<I> as core::iter::iterator::Iterator>::next (1 samples, 0.33%)</title><rect x="484.3" y="725" width="3.9" height="15.0" fill="rgb(220,217,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.31" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dl_lookup_symbol_x (1 samples, 0.33%)</title><rect x="13.9" y="757" width="3.8" height="15.0" fill="rgb(220,141,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.86" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::reserve (1 samples, 0.33%)</title><rect x="515.2" y="341" width="3.8" height="15.0" fill="rgb(238,171,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.16" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialOrd>::gt (1 samples, 0.33%)</title><rect x="449.6" y="741" width="3.9" height="15.0" fill="rgb(216,187,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.61" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve (1 samples, 0.33%)</title><rect x="515.2" y="325" width="3.8" height="15.0" fill="rgb(217,160,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.16" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::Deref>::deref (1 samples, 0.33%)</title><rect x="114.1" y="741" width="3.9" height="15.0" fill="rgb(223,173,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="117.12" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::Prob as core::ops::arith::Add>::add (6 samples, 1.96%)</title><rect x="137.3" y="757" width="23.1" height="15.0" fill="rgb(205,31,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="140.25" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><u128 as core::ops::bit::BitOr>::bitor (1 samples, 0.33%)</title><rect x="480.5" y="613" width="3.8" height="15.0" fill="rgb(240,34,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.46" 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>do_lookup_x (1 samples, 0.33%)</title><rect x="13.9" y="741" width="3.8" height="15.0" fill="rgb(205,213,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.86" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>varlociraptor::model::evidence::fragments::IndelEvidence::prob_sample_alt::{{closure}} (1 samples, 0.33%)</title><rect x="17.7" y="613" width="3.9" height="15.0" fill="rgb(216,128,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" 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::cmp::impls::<impl core::cmp::PartialOrd for u64>::le (4 samples, 1.31%)</title><rect x="1047.3" y="373" width="15.4" height="15.0" fill="rgb(223,198,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1050.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>core::iter::iterator::Iterator::collect (1 samples, 0.33%)</title><rect x="17.7" y="581" width="3.9" height="15.0" fill="rgb(246,150,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panic::catch_unwind (1 samples, 0.33%)</title><rect x="17.7" y="805" width="3.9" height="15.0" fill="rgb(205,136,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.33%)</title><rect x="488.2" y="37" width="3.8" height="15.0" fill="rgb(217,38,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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::iter::iterator::Iterator::sum (17 samples, 5.56%)</title><rect x="306.9" y="725" width="65.6" height="15.0" fill="rgb(243,62,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="309.93" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::i..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys::unix::fs::File::read (39 samples, 12.75%)</title><rect x="634.7" y="373" width="150.4" height="15.0" fill="rgb(244,160,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="637.71" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys::unix::fs:..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (182 samples, 59.48%)</title><rect x="488.2" y="677" width="701.8" height="15.0" fill="rgb(245,183,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><varlociraptor::model::likelihood::ContaminatedSampleLikelihoodModel as bio::stats::bayesian::model::Likelihood>::compute::{{closure}} (2 samples, 0.65%)</title><rect x="492.0" y="277" width="7.7" height="15.0" fill="rgb(250,221,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>lib::call_tumor_normal (1 samples, 0.33%)</title><rect x="17.7" y="693" width="3.9" height="15.0" fill="rgb(246,90,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_rust_maybe_catch_panic (182 samples, 59.48%)</title><rect x="488.2" y="709" width="701.8" height="15.0" fill="rgb(226,120,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_rust_maybe_catch_panic</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve_internal (1 samples, 0.33%)</title><rect x="519.0" y="277" width="3.9" height="15.0" fill="rgb(225,76,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI_munmap (11 samples, 3.59%)</title><rect x="1062.7" y="437" width="42.5" height="15.0" fill="rgb(233,63,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.75" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_GI..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::collections::btree::map::BTreeMap<K, V> as core::iter::traits::FromIterator<(K, V)>>::from_iter (4 samples, 1.31%)</title><rect x="492.0" y="453" width="15.5" height="15.0" fill="rgb(235,204,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>varlociraptor::model::sample::Sample::fragment_observation (1 samples, 0.33%)</title><rect x="17.7" y="645" width="3.9" height="15.0" fill="rgb(230,168,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::pattern_matching::myers::Myers<T>>::step (3 samples, 0.98%)</title><rect x="472.7" y="629" width="11.6" height="15.0" fill="rgb(248,204,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.75" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::min_by_key (3 samples, 0.98%)</title><rect x="472.7" y="741" width="11.6" height="15.0" fill="rgb(210,115,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.75" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (2 samples, 0.65%)</title><rect x="492.0" y="293" width="7.7" height="15.0" fill="rgb(221,219,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>_GI___libc_realloc (1 samples, 0.33%)</title><rect x="519.0" y="229" width="3.9" height="15.0" fill="rgb(232,6,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>varlociraptor::model::evidence::fragments::IndelEvidence::prob_sample_alt (1 samples, 0.33%)</title><rect x="17.7" y="629" width="3.9" height="15.0" fill="rgb(252,39,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" 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>int_malloc (1 samples, 0.33%)</title><rect x="488.2" y="69" width="3.8" height="15.0" fill="rgb(231,207,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (1 samples, 0.33%)</title><rect x="488.2" y="341" width="3.8" height="15.0" fill="rgb(242,145,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::deref::DerefMut>::deref_mut (1 samples, 0.33%)</title><rect x="121.8" y="741" width="3.9" height="15.0" fill="rgb(248,218,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="124.83" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sysmalloc (1 samples, 0.33%)</title><rect x="519.0" y="181" width="3.9" height="15.0" fill="rgb(227,72,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" 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::<impl *mut T>::offset (1 samples, 0.33%)</title><rect x="160.4" y="725" width="3.8" height="15.0" fill="rgb(236,99,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.39" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panicking::try (182 samples, 59.48%)</title><rect x="488.2" y="597" width="701.8" height="15.0" fill="rgb(207,90,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panicking::try</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_simpsons_integrate_exp (2 samples, 0.65%)</title><rect x="492.0" y="373" width="7.7" height="15.0" fill="rgb(234,130,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>rust_htslib::bam::record::Record::cache_cigar (1 samples, 0.33%)</title><rect x="515.2" y="437" width="3.8" height="15.0" fill="rgb(240,39,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.16" 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>test::run_test::{{closure}} (182 samples, 59.48%)</title><rect x="488.2" y="533" width="701.8" height="15.0" fill="rgb(235,63,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >test::run_test::{{closure}}</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib::call_tumor_normal (182 samples, 59.48%)</title><rect x="488.2" y="501" width="701.8" height="15.0" fill="rgb(249,144,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="511.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><F as alloc::boxed::FnBox<A>>::call_box (1 samples, 0.33%)</title><rect x="17.7" y="757" width="3.9" height="15.0" fill="rgb(249,63,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><rust_htslib::bam::Reader as rust_htslib::bam::Read>::read (21 samples, 6.86%)</title><rect x="1109.0" y="469" width="81.0" height="15.0" fill="rgb(240,139,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.02" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><rust_hts..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___mprotect (1 samples, 0.33%)</title><rect x="507.5" y="261" width="3.8" height="15.0" fill="rgb(218,1,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.45" 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>dl_start_user (1 samples, 0.33%)</title><rect x="13.9" y="853" width="3.8" height="15.0" fill="rgb(246,133,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.86" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::IndexMut<I>>::index_mut (2 samples, 0.65%)</title><rect x="121.8" y="757" width="7.7" height="15.0" fill="rgb(225,71,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="124.83" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><varlociraptor::model::likelihood::ContaminatedSampleLikelihoodModel as bio::stats::bayesian::model::Likelihood>::compute::{{closure}} (1 samples, 0.33%)</title><rect x="499.7" y="325" width="3.9" height="15.0" fill="rgb(240,31,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.74" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dl_init (1 samples, 0.33%)</title><rect x="13.9" y="837" width="3.8" height="15.0" fill="rgb(241,189,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.86" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as core::ops::arith::Sub>::sub (1 samples, 0.33%)</title><rect x="314.6" y="581" width="3.9" height="15.0" fill="rgb(249,223,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="317.64" 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>_pthread_enable_asynccancel (1 samples, 0.33%)</title><rect x="781.2" y="325" width="3.9" height="15.0" fill="rgb(222,126,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="784.24" 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>>::resize (1 samples, 0.33%)</title><rect x="133.4" y="757" width="3.9" height="15.0" fill="rgb(232,54,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="136.40" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (1 samples, 0.33%)</title><rect x="519.0" y="165" width="3.9" height="15.0" fill="rgb(254,215,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::pairhmm::XYEmission::is_match (1 samples, 0.33%)</title><rect x="206.7" y="757" width="3.8" height="15.0" fill="rgb(230,201,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="209.67" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><varlociraptor::model::evidence::reads::DeletionEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_y (1 samples, 0.33%)</title><rect x="199.0" y="757" width="3.8" height="15.0" fill="rgb(231,99,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="201.95" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><varlociraptor::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref>::deref (1 samples, 0.33%)</title><rect x="195.1" y="709" width="3.9" height="15.0" fill="rgb(208,74,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="198.10" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve (1 samples, 0.33%)</title><rect x="133.4" y="709" width="3.9" height="15.0" fill="rgb(205,32,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="136.40" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::cmp::Ordering as core::cmp::PartialEq>::eq (1 samples, 0.33%)</title><rect x="249.1" y="725" width="3.8" height="15.0" fill="rgb(253,105,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.08" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as bio::utils::fastexp::FastExp<f64>>::fastexp (1 samples, 0.33%)</title><rect x="453.5" y="741" width="3.8" height="15.0" fill="rgb(211,3,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="456.46" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::Ord::min (3 samples, 0.98%)</title><rect x="457.3" y="741" width="11.6" height="15.0" fill="rgb(248,207,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.32" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>int_malloc (1 samples, 0.33%)</title><rect x="507.5" y="309" width="3.8" height="15.0" fill="rgb(236,92,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.45" 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>hts_itr_query (1 samples, 0.33%)</title><rect x="511.3" y="405" width="3.9" height="15.0" fill="rgb(244,112,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.31" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::ge (1 samples, 0.33%)</title><rect x="264.5" y="693" width="3.9" height="15.0" fill="rgb(234,79,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.51" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::for_each (1 samples, 0.33%)</title><rect x="488.2" y="325" width="3.8" height="15.0" fill="rgb(252,183,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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::ln_sum_exp (46 samples, 15.03%)</title><rect x="272.2" y="741" width="177.4" height="15.0" fill="rgb(252,79,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.22" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::probs::LogP..</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.33%)</title><rect x="199.0" y="725" width="3.8" height="15.0" fill="rgb(209,84,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="201.95" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rust_htslib::bam::record::Record::unpack_cigar (1 samples, 0.33%)</title><rect x="515.2" y="421" width="3.8" height="15.0" fill="rgb(234,65,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.16" 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><varlociraptor::model::modes::tumor::TumorNormalLikelihood as bio::stats::bayesian::model::Likelihood>::compute (1 samples, 0.33%)</title><rect x="499.7" y="373" width="3.9" height="15.0" fill="rgb(207,16,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.74" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panicking::try::do_call (182 samples, 59.48%)</title><rect x="488.2" y="693" width="701.8" height="15.0" fill="rgb(227,73,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panicking::try::do_call</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>int_malloc (1 samples, 0.33%)</title><rect x="515.2" y="245" width="3.8" height="15.0" fill="rgb(254,21,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.16" 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>sysmalloc (1 samples, 0.33%)</title><rect x="488.2" y="53" width="3.8" height="15.0" fill="rgb(254,113,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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>varlociraptor::model::likelihood::ContaminatedSampleLikelihoodModel::likelihood_observation (2 samples, 0.65%)</title><rect x="492.0" y="261" width="7.7" height="15.0" fill="rgb(219,192,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>_rust_maybe_catch_panic (182 samples, 59.48%)</title><rect x="488.2" y="581" width="701.8" height="15.0" fill="rgb(228,40,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_rust_maybe_catch_panic</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (1 samples, 0.33%)</title><rect x="515.2" y="357" width="3.8" height="15.0" fill="rgb(222,146,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.16" 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<&'b B> for &'a A>::le (1 samples, 0.33%)</title><rect x="241.4" y="709" width="3.8" height="15.0" fill="rgb(231,22,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.37" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>varlociraptor::utils::ReferenceBuffer::seq (138 samples, 45.10%)</title><rect x="530.6" y="469" width="532.1" height="15.0" fill="rgb(236,141,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="533.59" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >varlociraptor::utils::ReferenceBuffer::seq</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gsl_cdf_ugaussian_P (1 samples, 0.33%)</title><rect x="526.7" y="245" width="3.9" height="15.0" fill="rgb(217,195,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.73" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::boxed::Box<(dyn alloc::boxed::FnBox<A, Output$u3d$R> $u2b$ 'a)> as core::ops::function::FnOnce<A>>::call_once (182 samples, 59.48%)</title><rect x="488.2" y="789" width="701.8" height="15.0" fill="rgb(222,68,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><alloc::boxed::Box<(dyn alloc::boxed::FnBox<A, Output$u3d$R> $u2b$ 'a)> as core::ops::function::F..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::collect (1 samples, 0.33%)</title><rect x="515.2" y="405" width="3.8" height="15.0" fill="rgb(232,72,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.16" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><varlociraptor::model::likelihood::ContaminatedSampleLikelihoodModel as bio::stats::bayesian::model::Likelihood>::compute (1 samples, 0.33%)</title><rect x="499.7" y="357" width="3.9" height="15.0" fill="rgb(221,178,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.74" 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::iter::Skip<I> as core::iter::iterator::Iterator>::next (1 samples, 0.33%)</title><rect x="303.1" y="725" width="3.8" height="15.0" fill="rgb(235,80,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="306.07" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (1 samples, 0.33%)</title><rect x="503.6" y="309" width="3.9" height="15.0" fill="rgb(212,73,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.59" 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::Enumerate<I> as core::iter::iterator::Iterator>::fold::{{closure}} (16 samples, 5.23%)</title><rect x="306.9" y="645" width="61.7" height="15.0" fill="rgb(231,126,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="309.93" y="655.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>[lib....1] (16 samples, 5.23%)</title><rect x="1109.0" y="357" width="61.7" height="15.0" fill="rgb(227,108,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.02" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[lib....</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::IndexMut<I> for [T]>::index_mut (1 samples, 0.33%)</title><rect x="125.7" y="741" width="3.8" height="15.0" fill="rgb(252,109,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="128.69" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><std::fs::File as std::io::Read>::read (39 samples, 12.75%)</title><rect x="634.7" y="389" width="150.4" height="15.0" fill="rgb(251,137,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="637.71" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><std::fs::File as s..</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 (1 samples, 0.33%)</title><rect x="179.7" y="725" width="3.8" height="15.0" fill="rgb(250,90,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="182.67" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::io::fasta::IndexedReader<R>>::read_into_buffer (138 samples, 45.10%)</title><rect x="530.6" y="437" width="532.1" height="15.0" fill="rgb(241,102,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="533.59" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><bio::io::fasta::IndexedReader<R>>::read_into_buffer</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___clone (182 samples, 59.48%)</title><rect x="488.2" y="853" width="701.8" height="15.0" fill="rgb(226,219,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_GI___clone</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (37 samples, 12.09%)</title><rect x="638.6" y="325" width="142.6" height="15.0" fill="rgb(208,163,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="641.56" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne.allsyms]]</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T>>::post_inc_start (1 samples, 0.33%)</title><rect x="303.1" y="677" width="3.8" height="15.0" fill="rgb(242,133,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="306.07" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (2 samples, 0.65%)</title><rect x="172.0" y="709" width="7.7" height="15.0" fill="rgb(219,216,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.96" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_from_slice (14 samples, 4.58%)</title><rect x="565.3" y="405" width="54.0" height="15.0" fill="rgb(230,101,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.29" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><allo..</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.33%)</title><rect x="484.3" y="741" width="3.9" height="15.0" fill="rgb(250,164,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.31" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>varlociraptor::model::sample::Sample::extract_observations (121 samples, 39.54%)</title><rect x="21.6" y="837" width="466.6" height="15.0" fill="rgb(229,138,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.57" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >varlociraptor::model::sample::Sample::extract_observations</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::io::fasta::IndexedReader<R>>::read_line (137 samples, 44.77%)</title><rect x="534.4" y="421" width="528.3" height="15.0" fill="rgb(215,214,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="537.44" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><bio::io::fasta::IndexedReader<R>>::read_line</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sam_itr_queryi (1 samples, 0.33%)</title><rect x="511.3" y="421" width="3.9" height="15.0" fill="rgb(230,29,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.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>std::panicking::try (1 samples, 0.33%)</title><rect x="17.7" y="789" width="3.9" height="15.0" fill="rgb(247,220,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::alloc::alloc (1 samples, 0.33%)</title><rect x="515.2" y="277" width="3.8" height="15.0" fill="rgb(238,185,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.16" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (17 samples, 5.56%)</title><rect x="306.9" y="661" width="65.6" height="15.0" fill="rgb(244,186,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="309.93" y="671.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>ZN115_<varlociraptor::model::modes::tumor::TumorNormalPosterior as bio::stats::bayesian::model::Posterior>7compute28_{{closure}}28_{{closure}}17h77c68445dbfac792.lv.6564954850388233150 (2 samples, 0.65%)</title><rect x="492.0" y="341" width="7.7" height="15.0" fill="rgb(249,227,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>alloc::slice::<impl [T]>::to_vec (1 samples, 0.33%)</title><rect x="488.2" y="405" width="3.8" height="15.0" fill="rgb(234,20,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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::thread::Builder::spawn_unchecked::{{closure}} (182 samples, 59.48%)</title><rect x="488.2" y="757" width="701.8" height="15.0" fill="rgb(238,47,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::thread::Builder::spawn_unchecked::{{closure}}</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>varlociraptor::model::evidence::fragments::IndelEvidence::prob_sample_alt::{{closure}} (3 samples, 0.98%)</title><rect x="519.0" y="421" width="11.6" height="15.0" fill="rgb(235,126,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" 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>mremap_chunk (2 samples, 0.65%)</title><rect x="592.3" y="277" width="7.7" height="15.0" fill="rgb(235,148,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.29" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>varlociraptor::model::likelihood::ContaminatedSampleLikelihoodModel::likelihood_observation (1 samples, 0.33%)</title><rect x="499.7" y="309" width="3.9" height="15.0" fill="rgb(210,108,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.74" 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___libc_realloc (2 samples, 0.65%)</title><rect x="592.3" y="293" width="7.7" height="15.0" fill="rgb(252,84,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.29" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hts_itr_next (1 samples, 0.33%)</title><rect x="507.5" y="405" width="3.8" height="15.0" fill="rgb(250,138,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.45" 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::Ord::min (1 samples, 0.33%)</title><rect x="623.1" y="373" width="3.9" height="15.0" fill="rgb(237,61,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="626.14" 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>varlociraptor::call::SampleInfoBuilder::build (1 samples, 0.33%)</title><rect x="488.2" y="437" width="3.8" height="15.0" fill="rgb(231,125,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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::f64::<impl f64>::log_wrapper (1 samples, 0.33%)</title><rect x="17.7" y="453" width="3.9" height="15.0" fill="rgb(224,42,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" 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 (1 samples, 0.33%)</title><rect x="160.4" y="757" width="3.8" height="15.0" fill="rgb(235,211,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.39" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::slice::hack::to_vec (1 samples, 0.33%)</title><rect x="488.2" y="181" width="3.8" height="15.0" fill="rgb(205,164,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index (1 samples, 0.33%)</title><rect x="199.0" y="693" width="3.8" height="15.0" fill="rgb(223,176,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="201.95" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_read (21 samples, 6.86%)</title><rect x="1109.0" y="437" width="81.0" height="15.0" fill="rgb(235,128,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.02" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bgzf_read</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><F as alloc::boxed::FnBox<A>>::call_box (182 samples, 59.48%)</title><rect x="488.2" y="565" width="701.8" height="15.0" fill="rgb(241,84,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><F as alloc::boxed::FnBox<A>>::call_box</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panicking::try (182 samples, 59.48%)</title><rect x="488.2" y="725" width="701.8" height="15.0" fill="rgb(245,192,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panicking::try</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as bio::utils::fastexp::FastExp<f64>>::fastexp (1 samples, 0.33%)</title><rect x="499.7" y="261" width="3.9" height="15.0" fill="rgb(245,225,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.74" 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 (3 samples, 0.98%)</title><rect x="472.7" y="709" width="11.6" height="15.0" fill="rgb(214,15,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.75" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index (1 samples, 0.33%)</title><rect x="118.0" y="725" width="3.8" height="15.0" fill="rgb(214,138,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="120.97" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>call_init (1 samples, 0.33%)</title><rect x="13.9" y="821" width="3.8" height="15.0" fill="rgb(217,189,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.86" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test::run_test::{{closure}} (1 samples, 0.33%)</title><rect x="17.7" y="725" width="3.9" height="15.0" fill="rgb(209,205,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_read_block (18 samples, 5.88%)</title><rect x="1109.0" y="421" width="69.4" height="15.0" fill="rgb(235,69,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.02" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bgzf_re..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (11 samples, 3.59%)</title><rect x="1062.7" y="421" width="42.5" height="15.0" fill="rgb(252,173,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.75" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[k..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><rust_htslib::bam::IndexedReader as rust_htslib::bam::Read>::read (1 samples, 0.33%)</title><rect x="507.5" y="437" width="3.8" height="15.0" fill="rgb(239,35,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.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>varlociraptor::model::evidence::reads::ReadEmission::prob_match_mismatch (8 samples, 2.61%)</title><rect x="168.1" y="741" width="30.9" height="15.0" fill="rgb(228,16,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="171.10" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >va..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::LogProb as core::cmp::PartialOrd>::lt (6 samples, 1.96%)</title><rect x="245.2" y="741" width="23.2" height="15.0" fill="rgb(236,102,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="248.23" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (3 samples, 0.98%)</title><rect x="519.0" y="373" width="11.6" height="15.0" fill="rgb(220,66,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::reserve (1 samples, 0.33%)</title><rect x="133.4" y="725" width="3.9" height="15.0" fill="rgb(243,87,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="136.40" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grow_heap (1 samples, 0.33%)</title><rect x="507.5" y="277" width="3.8" height="15.0" fill="rgb(225,155,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.45" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>memcpy (3 samples, 0.98%)</title><rect x="1178.4" y="421" width="11.6" height="15.0" fill="rgb(249,40,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.43" 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>test09 (304 samples, 99.35%)</title><rect x="17.7" y="869" width="1172.3" height="15.0" fill="rgb(206,199,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="879.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><varlociraptor::model::modes::tumor::TumorNormalLikelihood as bio::stats::bayesian::model::Likelihood>::compute (2 samples, 0.65%)</title><rect x="492.0" y="325" width="7.7" height="15.0" fill="rgb(245,187,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>varlociraptor::model::sample::Sample::fragment_observation::{{closure}} (121 samples, 39.54%)</title><rect x="21.6" y="805" width="466.6" height="15.0" fill="rgb(247,184,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.57" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >varlociraptor::model::sample::Sample::fragment_observation::{{c..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>varlociraptor::model::sample::Sample::fragment_observation (121 samples, 39.54%)</title><rect x="21.6" y="821" width="466.6" height="15.0" fill="rgb(249,27,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.57" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >varlociraptor::model::sample::Sample::fragment_observation</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.33%)</title><rect x="515.2" y="293" width="3.8" height="15.0" fill="rgb(235,101,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.16" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T>>::with_capacity (1 samples, 0.33%)</title><rect x="488.2" y="149" width="3.8" height="15.0" fill="rgb(240,137,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bam_readrec (1 samples, 0.33%)</title><rect x="507.5" y="389" width="3.8" height="15.0" fill="rgb(233,157,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.45" 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>dl_fixup (1 samples, 0.33%)</title><rect x="13.9" y="773" width="3.8" height="15.0" fill="rgb(208,197,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.86" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::allocate_in (1 samples, 0.33%)</title><rect x="488.2" y="133" width="3.8" height="15.0" fill="rgb(214,22,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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>itertools::Itertools::collect_vec (3 samples, 0.98%)</title><rect x="519.0" y="405" width="11.6" height="15.0" fill="rgb(210,185,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (2 samples, 0.65%)</title><rect x="592.3" y="245" width="7.7" height="15.0" fill="rgb(208,146,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.29" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<&'a T, I>>::spec_extend (1 samples, 0.33%)</title><rect x="488.2" y="357" width="3.8" height="15.0" fill="rgb(228,73,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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::raw_vec::RawVec<T, A>>::reserve (5 samples, 1.63%)</title><rect x="592.3" y="357" width="19.3" height="15.0" fill="rgb(220,58,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.29" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::iter::iterator::Iterator::fold (3 samples, 0.98%)</title><rect x="472.7" y="677" width="11.6" height="15.0" fill="rgb(220,30,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.75" 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>varlociraptor::model::evidence::reads::ReadEmission::particular_miscall (1 samples, 0.33%)</title><rect x="202.8" y="725" width="3.9" height="15.0" fill="rgb(214,164,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.81" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::alloc::Global as core::alloc::Alloc>::realloc (1 samples, 0.33%)</title><rect x="519.0" y="261" width="3.9" height="15.0" fill="rgb(234,22,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" 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><f64 as bio::utils::fastexp::FastExp<f64>>::fastexp (1 samples, 0.33%)</title><rect x="492.0" y="229" width="3.9" height="15.0" fill="rgb(209,60,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>core::ptr::real_drop_in_place (11 samples, 3.59%)</title><rect x="1062.7" y="485" width="42.5" height="15.0" fill="rgb(215,165,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.75" 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><alloc::raw_vec::RawVec<T, A>>::reserve_internal (5 samples, 1.63%)</title><rect x="592.3" y="341" width="19.3" height="15.0" fill="rgb(216,227,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dl_runtime_resolve_xsave (1 samples, 0.33%)</title><rect x="13.9" y="789" width="3.8" height="15.0" fill="rgb(206,220,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.86" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>itertools::Itertools::collect_vec (1 samples, 0.33%)</title><rect x="17.7" y="597" width="3.9" height="15.0" fill="rgb(221,70,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::pairhmm::PairHMM::prob_related (117 samples, 38.24%)</title><rect x="21.6" y="773" width="451.1" height="15.0" fill="rgb(226,3,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.57" y="783.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>varlociraptor::model::evidence::reads::ReadEmission::prob_insertion (1 samples, 0.33%)</title><rect x="199.0" y="741" width="3.8" height="15.0" fill="rgb(247,37,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="201.95" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::io::fasta::IndexedReader<R>>::read (138 samples, 45.10%)</title><rect x="530.6" y="453" width="532.1" height="15.0" fill="rgb(224,23,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="533.59" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><bio::io::fasta::IndexedReader<R>>::read</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln (1 samples, 0.33%)</title><rect x="17.7" y="469" width="3.9" height="15.0" fill="rgb(226,147,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.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>int_realloc (1 samples, 0.33%)</title><rect x="519.0" y="213" width="3.9" height="15.0" fill="rgb(242,128,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::min (1 samples, 0.33%)</title><rect x="623.1" y="389" width="3.9" height="15.0" fill="rgb(229,123,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="626.14" 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><varlociraptor::call::Caller<A, L, Pr, Po>>::call (1 samples, 0.33%)</title><rect x="17.7" y="677" width="3.9" height="15.0" fill="rgb(243,21,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::partial_cmp (1 samples, 0.33%)</title><rect x="241.4" y="725" width="3.8" height="15.0" fill="rgb(208,103,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.37" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_sum_exp::{{closure}} (15 samples, 4.90%)</title><rect x="310.8" y="613" width="57.8" height="15.0" fill="rgb(207,93,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="313.78" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::s..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln_1p (1 samples, 0.33%)</title><rect x="495.9" y="229" width="3.8" height="15.0" fill="rgb(233,148,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="498.88" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>munmap_chunk (11 samples, 3.59%)</title><rect x="1062.7" y="453" width="42.5" height="15.0" fill="rgb(222,73,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.75" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mun..</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.33%)</title><rect x="295.4" y="677" width="3.8" height="15.0" fill="rgb(247,215,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.36" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[[kerne.allsyms]] (49 samples, 16.01%)</title><rect x="858.4" y="389" width="188.9" height="15.0" fill="rgb(207,113,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="861.37" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[[kerne.allsyms]]</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_with (1 samples, 0.33%)</title><rect x="133.4" y="741" width="3.9" height="15.0" fill="rgb(227,162,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="136.40" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::slice::Iter<'a, T> as core::iter::iterator::Iterator>::fold (1 samples, 0.33%)</title><rect x="488.2" y="293" width="3.8" height="15.0" fill="rgb(246,204,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.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>std::sys_common::thread::start_thread (182 samples, 59.48%)</title><rect x="488.2" y="805" width="701.8" height="15.0" fill="rgb(240,127,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys_common::thread::start_thread</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><varlociraptor::call::Caller<A, L, Pr, Po>>::call (149 samples, 48.69%)</title><rect x="488.2" y="485" width="574.5" height="15.0" fill="rgb(224,39,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><varlociraptor::call::Caller<A, L, Pr, Po>>::call</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_add_exp (2 samples, 0.65%)</title><rect x="449.6" y="757" width="7.7" height="15.0" fill="rgb(243,121,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.61" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::slice::<impl [T]>::to_vec (1 samples, 0.33%)</title><rect x="488.2" y="197" width="3.8" height="15.0" fill="rgb(254,213,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::ln_1m_exp (1 samples, 0.33%)</title><rect x="499.7" y="277" width="3.9" height="15.0" fill="rgb(212,223,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.74" 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_add (1 samples, 0.33%)</title><rect x="468.9" y="757" width="3.8" height="15.0" fill="rgb(251,9,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.89" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc::alloc::realloc (2 samples, 0.65%)</title><rect x="592.3" y="309" width="7.7" height="15.0" fill="rgb(244,122,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.29" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>crc32_z (2 samples, 0.65%)</title><rect x="1170.7" y="389" width="7.7" height="15.0" fill="rgb(248,74,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1173.72" 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><&'a bio::stats::probs::LogProb as core::ops::arith::Sub<bio::stats::probs::LogProb>>::sub (1 samples, 0.33%)</title><rect x="314.6" y="597" width="3.9" height="15.0" fill="rgb(224,87,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="317.64" 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::impls::<impl core::cmp::PartialOrd for f64>::partial_cmp (4 samples, 1.31%)</title><rect x="252.9" y="725" width="15.5" height="15.0" fill="rgb(240,89,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.94" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>realloc_bam_data (1 samples, 0.33%)</title><rect x="507.5" y="357" width="3.8" height="15.0" fill="rgb(242,40,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.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>varlociraptor::model::evidence::reads::EditDistanceCalculation::calc_edit_dist (3 samples, 0.98%)</title><rect x="472.7" y="773" width="11.6" height="15.0" fill="rgb(216,38,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.75" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_memcpy_sse2_unaligned_erms (3 samples, 0.98%)</title><rect x="1178.4" y="405" width="11.6" height="15.0" fill="rgb(248,183,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.43" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bam_read1 (1 samples, 0.33%)</title><rect x="507.5" y="373" width="3.8" height="15.0" fill="rgb(240,184,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.45" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::reserve (5 samples, 1.63%)</title><rect x="592.3" y="373" width="19.3" height="15.0" fill="rgb(207,165,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.29" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><varlociraptor::model::evidence::reads::ReferenceEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_xy (1 samples, 0.33%)</title><rect x="202.8" y="757" width="3.9" height="15.0" fill="rgb(228,164,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.81" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys_common::backtrace::_rust_begin_short_backtrace (182 samples, 59.48%)</title><rect x="488.2" y="645" width="701.8" height="15.0" fill="rgb(252,58,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys_common::backtrace::_rust_begin_short_backtrace</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::ln_1m_exp (1 samples, 0.33%)</title><rect x="503.6" y="245" width="3.9" height="15.0" fill="rgb(209,94,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.59" 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>bio::stats::pairhmm::XYEmission::prob (1 samples, 0.33%)</title><rect x="210.5" y="757" width="3.9" height="15.0" fill="rgb(207,174,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="213.52" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::clone::Clone>::clone (1 samples, 0.33%)</title><rect x="488.2" y="421" width="3.8" height="15.0" fill="rgb(218,163,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" 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>varlociraptor::model::sample::Sample::extract_observations (6 samples, 1.96%)</title><rect x="507.5" y="469" width="23.1" height="15.0" fill="rgb(254,16,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.45" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >v..</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.33%)</title><rect x="303.1" y="693" width="3.8" height="15.0" fill="rgb(237,86,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="306.07" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bio::stats::probs::LogProb::ln_simpsons_integrate_exp (1 samples, 0.33%)</title><rect x="503.6" y="389" width="3.9" height="15.0" fill="rgb(233,145,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.59" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::f64::<impl f64>::ln::{{closure}} (1 samples, 0.33%)</title><rect x="17.7" y="437" width="3.9" height="15.0" fill="rgb(222,161,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>start_thread (182 samples, 59.48%)</title><rect x="488.2" y="837" width="701.8" height="15.0" fill="rgb(237,79,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><usize as core::slice::SliceIndex<[T]>>::index (2 samples, 0.65%)</title><rect x="172.0" y="693" width="7.7" height="15.0" fill="rgb(216,142,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.96" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::stats::probs::Prob as core::ops::arith::Sub>::sub (1 samples, 0.33%)</title><rect x="268.4" y="741" width="3.8" height="15.0" fill="rgb(221,158,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.37" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::partial_cmp (3 samples, 0.98%)</title><rect x="291.5" y="709" width="11.6" height="15.0" fill="rgb(248,158,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="294.50" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::min (4 samples, 1.31%)</title><rect x="1047.3" y="405" width="15.4" height="15.0" fill="rgb(254,211,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1050.32" 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>ZN115_<varlociraptor::model::modes::tumor::TumorNormalPosterior as bio::stats::bayesian::model::Posterior>7compute28_{{closure}}17hcff6f8f594524235.lv.6564954850388233150 (2 samples, 0.65%)</title><rect x="492.0" y="389" width="7.7" height="15.0" fill="rgb(213,188,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>std::sys::unix::fd::FileDesc::read (39 samples, 12.75%)</title><rect x="634.7" y="357" width="150.4" height="15.0" fill="rgb(231,115,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="637.71" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys::unix::fd:..</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 (17 samples, 5.56%)</title><rect x="306.9" y="693" width="65.6" height="15.0" fill="rgb(242,209,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="309.93" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><core::..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::raw_vec::RawVec<T, A>>::reserve (1 samples, 0.33%)</title><rect x="519.0" y="293" width="3.9" height="15.0" fill="rgb(254,55,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" 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::iter::Map<I, F> as core::iter::traits::DoubleEndedIterator>::next_back (1 samples, 0.33%)</title><rect x="484.3" y="709" width="3.9" height="15.0" fill="rgb(254,123,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.31" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::pattern_matching::myers::Matches<'a, T, C, I> as core::iter::iterator::Iterator>::next (3 samples, 0.98%)</title><rect x="472.7" y="645" width="11.6" height="15.0" fill="rgb(252,161,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.75" 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::iter::iterator::Iterator::collect (3 samples, 0.98%)</title><rect x="519.0" y="389" width="11.6" height="15.0" fill="rgb(251,194,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" 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::pairhmm::ln_sum3_exp_approx (61 samples, 19.93%)</title><rect x="214.4" y="757" width="235.2" height="15.0" fill="rgb(241,7,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="217.38" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bio::stats::pairhmm::ln_sum3_ex..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (2 samples, 0.65%)</title><rect x="114.1" y="757" width="7.7" height="15.0" fill="rgb(226,173,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="117.12" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><varlociraptor::model::evidence::reads::DeletionEmissionParams<'a> as bio::stats::pairhmm::EmissionParameters>::prob_emit_xy (9 samples, 2.94%)</title><rect x="164.2" y="757" width="34.8" height="15.0" fill="rgb(211,206,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.25" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><v..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bgzf_uncompress (16 samples, 5.23%)</title><rect x="1109.0" y="389" width="61.7" height="15.0" fill="rgb(210,180,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.02" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bgzf_u..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>inflate (16 samples, 5.23%)</title><rect x="1109.0" y="373" width="61.7" height="15.0" fill="rgb(252,3,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.02" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >inflate</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.33%)</title><rect x="368.6" y="645" width="3.9" height="15.0" fill="rgb(229,182,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="371.63" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::impls::<impl core::cmp::PartialOrd for f64>::partial_cmp (1 samples, 0.33%)</title><rect x="449.6" y="725" width="3.9" height="15.0" fill="rgb(238,148,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.61" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::extend_desugared (3 samples, 0.98%)</title><rect x="519.0" y="325" width="11.6" height="15.0" fill="rgb(253,66,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" 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 (3 samples, 0.98%)</title><rect x="291.5" y="725" width="11.6" height="15.0" fill="rgb(246,155,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="294.50" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>varlociraptor::model::evidence::reads::ReadEmission::particular_miscall (1 samples, 0.33%)</title><rect x="195.1" y="725" width="3.9" height="15.0" fill="rgb(224,29,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="198.10" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::cmp::Ord::min (4 samples, 1.31%)</title><rect x="1047.3" y="389" width="15.4" height="15.0" fill="rgb(247,14,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1050.32" 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>test::run_test::run_test_inner::{{closure}} (1 samples, 0.33%)</title><rect x="17.7" y="821" width="3.9" height="15.0" fill="rgb(215,58,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::overflowing_add (1 samples, 0.33%)</title><rect x="468.9" y="725" width="3.8" height="15.0" fill="rgb(213,73,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.89" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::spec_extend (3 samples, 0.98%)</title><rect x="519.0" y="341" width="11.6" height="15.0" fill="rgb(215,5,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" 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 (1 samples, 0.33%)</title><rect x="295.4" y="693" width="3.8" height="15.0" fill="rgb(240,32,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.36" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><bio::pattern_matching::myers::Myers<T>>::find_best_end (3 samples, 0.98%)</title><rect x="472.7" y="757" width="11.6" height="15.0" fill="rgb(209,212,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.75" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZN115_<varlociraptor::model::modes::tumor::TumorNormalPosterior as bio::stats::bayesian::model::Posterior>7compute28_{{closure}}17hcff6f8f594524235.lv.6564954850388233150 (1 samples, 0.33%)</title><rect x="503.6" y="405" width="3.9" height="15.0" fill="rgb(211,31,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.59" 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 usize>::le (1 samples, 0.33%)</title><rect x="623.1" y="357" width="3.9" height="15.0" fill="rgb(210,119,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="626.14" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_log1p (19 samples, 6.21%)</title><rect x="376.3" y="709" width="73.3" height="15.0" fill="rgb(236,101,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="379.34" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_log1p</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::next (2 samples, 0.65%)</title><rect x="522.9" y="309" width="7.7" height="15.0" fill="rgb(213,217,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.88" 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>varlociraptor::model::sample::RecordBuffer::fill (3 samples, 0.98%)</title><rect x="507.5" y="453" width="11.5" height="15.0" fill="rgb(216,6,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.45" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>all (306 samples, 100%)</title><rect x="10.0" y="885" width="1180.0" height="15.0" fill="rgb(241,216,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>varlociraptor::model::evidence::fragments::IndelEvidence::pmf (1 samples, 0.33%)</title><rect x="526.7" y="277" width="3.9" height="15.0" fill="rgb(245,9,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.73" 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>varlociraptor::model::evidence::fragments::IndelEvidence::prob_sample_alt::{{closure}}::{{closure}} (2 samples, 0.65%)</title><rect x="522.9" y="293" width="7.7" height="15.0" fill="rgb(243,87,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.88" 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 alloc::vec::SpecExtend<T, I>>::from_iter (1 samples, 0.33%)</title><rect x="515.2" y="373" width="3.8" height="15.0" fill="rgb(223,122,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.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>varlociraptor::model::evidence::fragments::IndelEvidence::prob_sample_alt::{{closure}}::{{closure}} (1 samples, 0.33%)</title><rect x="17.7" y="485" width="3.9" height="15.0" fill="rgb(216,15,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" 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>ZN115_<varlociraptor::model::modes::tumor::TumorNormalPosterior as bio::stats::bayesian::model::Posterior>7compute28_{{closure}}28_{{closure}}17h77c68445dbfac792.lv.6564954850388233150 (1 samples, 0.33%)</title><rect x="503.6" y="357" width="3.9" height="15.0" fill="rgb(243,37,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.59" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::sys::unix::thread::Thread::new::thread_start (182 samples, 59.48%)</title><rect x="488.2" y="821" width="701.8" height="15.0" fill="rgb(247,104,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys::unix::thread::Thread::new::thread_start</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::panic::catch_unwind (182 samples, 59.48%)</title><rect x="488.2" y="741" width="701.8" height="15.0" fill="rgb(246,149,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.17" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panic::catch_unwind</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><varlociraptor::model::evidence::reads::PROB_CONFUSION as core::ops::deref::Deref>::deref::_stability (1 samples, 0.33%)</title><rect x="195.1" y="693" width="3.9" height="15.0" fill="rgb(217,115,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="198.10" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_GI___libc_free (11 samples, 3.59%)</title><rect x="1062.7" y="469" width="42.5" height="15.0" fill="rgb(238,186,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.75" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_GI..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T>>::reserve (1 samples, 0.33%)</title><rect x="519.0" y="309" width="3.9" height="15.0" fill="rgb(207,88,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.02" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::ops::index::Index<I>>::index (2 samples, 0.65%)</title><rect x="172.0" y="725" width="7.7" height="15.0" fill="rgb(246,53,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.96" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><f64 as bio::utils::fastexp::FastExp<f64>>::fastexp (13 samples, 4.25%)</title><rect x="318.5" y="597" width="50.1" height="15.0" fill="rgb(240,21,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="321.50" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><f64 ..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as alloc::vec::SpecExtend<T, I>>::from_iter (3 samples, 0.98%)</title><rect x="492.0" y="405" width="11.6" height="15.0" fill="rgb(207,208,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.03" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl u8>::to_ascii_uppercase (3 samples, 0.98%)</title><rect x="183.5" y="725" width="11.6" height="15.0" fill="rgb(252,0,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="186.53" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><core::iter::FilterMap<I, F> as core::iter::iterator::Iterator>::next (1 samples, 0.33%)</title><rect x="17.7" y="501" width="3.9" height="15.0" fill="rgb(230,48,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.71" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title><alloc::vec::Vec<T> as core::iter::traits::FromIterator<T>>::from_iter (1 samples, 0.33%)</title><rect x="515.2" y="389" width="3.8" height="15.0" fill="rgb(216,89,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.16" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::num::<impl usize>::wrapping_sub (3 samples, 0.98%)</title><rect x="600.0" y="325" width="11.6" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="603.00" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>kh_get_bin (1 samples, 0.33%)</title><rect x="511.3" y="389" width="3.9" height="15.0" fill="rgb(215,31,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.31" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core::slice::<impl core::ops::index::Index<I> for [T]>::index (1 samples, 0.33%)</title><rect x="118.0" y="741" width="3.8" height="15.0" fill="rgb(211,220,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="120.97" y="751.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