Home
last modified time | relevance | path

Searched refs:numIntervalsForErrorRate (Results 1 – 1 of 1) sorted by relevance

/dports/biology/seqan-apps/seqan-seqan-v2.4.0/apps/rabema/
H A Drabema_evaluate.cpp487 String<unsigned> numIntervalsForErrorRate; in benchmarkReadResult() local
488 resize(numIntervalsForErrorRate, options.maxError + 1, 0); in benchmarkReadResult()
503 if (distance >= (int)length(numIntervalsForErrorRate)) in benchmarkReadResult()
504 resize(numIntervalsForErrorRate, distance + 1, 0); in benchmarkReadResult()
506 numIntervalsForErrorRate[distance] += 1; in benchmarkReadResult()
509 numIntervalsForErrorRate[smallestDistance] += 1; in benchmarkReadResult()
777 bool toFind = (numIntervalsForErrorRate[d] > 0u); in benchmarkReadResult()
792 for (unsigned d = 0; d < length(numIntervalsForErrorRate); ++d) in benchmarkReadResult()
794 intervalsToFind += numIntervalsForErrorRate[d]; in benchmarkReadResult()
796 result.intervalsToFindForErrorRate[d] += numIntervalsForErrorRate[d]; in benchmarkReadResult()
[all …]