Home
last modified time | relevance | path

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

/dports/biology/seqan-apps/seqan-seqan-v2.4.0/apps/razers3/
H A DcompPHSens.cpp65 appendValue(options.errorProb, prob); in main()
68 if (empty(options.errorProb)) in main()
77 resize(options.readLengths, length(options.errorProb), 0); in main()
H A Dsimulate_reads.cpp86 String<double> errorProb; in main() local
113 appendValue(errorProb, error); in main()
131 simulateReads(reads, errorProb, store); in main()
H A Dquality2prob.cpp54 double errorProb = 1.0 - (1.0 - sequencingError) * (1.0 - options.mutationRate); in main() local
57 std::cout << i << '\t' << errorProb << std::endl; in main()
H A Drazers.h232 String<TProb> errorProb; // error probability per base member
2439 resize(options.errorProb, length(options.avrgQuality));
2523 p_prefix[0] = (TFloat)1.0 - options.errorProb[0]; // 0 error
2524 p_prefix[1] = options.errorProb[0]; // 1 error
2532 …idx - maxErrors1] * ((TFloat)1.0 - options.errorProb[i]) + p_prefix[idx - maxErrors1 - 1] * option…
2589 p[idx++] = (TFloat)1.0 - options.errorProb[i]; // 0 error
2590 p[idx++] = options.errorProb[i]; // 1 error
2603 …= p[idx - maxErrors1] * ((TFloat)1.0 - options.errorProb[i]) + p[idx - maxErrors1 - 1] * options.e…
2615 p_last[idx++] = (TFloat)1.0 - options.errorProb[i]; // 0 error
2616 p_last[idx++] = options.errorProb[i]; // 1 error
[all …]