diff --git a/Release-notes.md b/Release-notes.md new file mode 100644 index 0000000..6291fa6 --- /dev/null +++ b/Release-notes.md @@ -0,0 +1,29 @@ +# OBITools release notes + +## February $18^th$, 2023. Release 4.0.0 + +It is the first version of the *OBITools* version 4. I decided to tag then following two weeks +of intensive data analysis with them allowing to discover many small bugs present in the previous +non-official version. Obviously other bugs are certainly persent in the code, and you are welcome +to use the git ticket system to mention them. But they seems to produce now reliable results. + +### Corrected bugs + +- On some computers the end of the output file was lost, leading to the loose of sequences and + to the production of incorrect file because of the last sequence record, sometime truncated in + its middle. This was only occurring when more than a single CPU was used. It was affecting every obitools. +- The `obiparing` software had a bug in the right aligment procedure. This led to the non alignment + of very sort barcode during the paring of the forward and reverse reads. +- The `obipairing` tools had a non deterministic comportment when aligning a paor very low quality reads. + This induced that the result of the same low quality read pair was not the same from run to run. + +### New functionality + +- Adding of a `--compress|-Z` option to every obitools allowing to produce `gz` compressed output. OBITools + were already able to deal with gziped input files transparently. They can now produce their résults in the same format. +- Adding of a `--append|-A` option to the `obidistribute` tool. It allows to append the result of an + `obidistribute` execution to preexisting files. +- Adding of a `--directory|-d` option to the `obidistribute` tool. It allows to declare a secondary + classification key over the one defined by the '--category|-c` option. This extra key leads to produce + directories in which files produced according to the primary criterion are stored. +- Adding of the functions `subspc`, `printf`, `int`, `numeric`, and `bool` to the expression language. \ No newline at end of file diff --git a/cmd/obitools/obidistribute/main.go b/cmd/obitools/obidistribute/main.go index 29c6ef8..80e47ae 100644 --- a/cmd/obitools/obidistribute/main.go +++ b/cmd/obitools/obidistribute/main.go @@ -16,6 +16,7 @@ func main() { _, args, _ := optionParser(os.Args) fs, _ := obiconvert.ReadBioSequences(args...) + obidistribute.DistributeSequence(fs) obiiter.WaitForLastPipe() diff --git a/doc/_book/commands.html b/doc/_book/commands.html index 2d0eaa3..0e8d7f0 100644 --- a/doc/_book/commands.html +++ b/doc/_book/commands.html @@ -20,6 +20,69 @@ ul.task-list li input[type="checkbox"] { margin: 0 0.8em 0.2em -1.6em; vertical-align: middle; } +pre > code.sourceCode { white-space: pre; position: relative; } +pre > code.sourceCode > span { display: inline-block; line-height: 1.25; } +pre > code.sourceCode > span:empty { height: 1.2em; } +.sourceCode { overflow: visible; } +code.sourceCode > span { color: inherit; text-decoration: inherit; } +div.sourceCode { margin: 1em 0; } +pre.sourceCode { margin: 0; } +@media screen { +div.sourceCode { overflow: auto; } +} +@media print { +pre > code.sourceCode { white-space: pre-wrap; } +pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; } +} +pre.numberSource code + { counter-reset: source-line 0; } +pre.numberSource code > span + { position: relative; left: -4em; counter-increment: source-line; } +pre.numberSource code > span > a:first-child::before + { content: counter(source-line); + position: relative; left: -1em; text-align: right; vertical-align: baseline; + border: none; display: inline-block; + -webkit-touch-callout: none; -webkit-user-select: none; + -khtml-user-select: none; -moz-user-select: none; + -ms-user-select: none; user-select: none; + padding: 0 4px; width: 4em; + color: #aaaaaa; + } +pre.numberSource { margin-left: 3em; border-left: 1px solid #aaaaaa; padding-left: 4px; } +div.sourceCode + { } +@media screen { +pre > code.sourceCode > span > a:first-child::before { text-decoration: underline; } +} +code span.al { color: #ff0000; font-weight: bold; } /* Alert */ +code span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */ +code span.at { color: #7d9029; } /* Attribute */ +code span.bn { color: #40a070; } /* BaseN */ +code span.bu { color: #008000; } /* BuiltIn */ +code span.cf { color: #007020; font-weight: bold; } /* ControlFlow */ +code span.ch { color: #4070a0; } /* Char */ +code span.cn { color: #880000; } /* Constant */ +code span.co { color: #60a0b0; font-style: italic; } /* Comment */ +code span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */ +code span.do { color: #ba2121; font-style: italic; } /* Documentation */ +code span.dt { color: #902000; } /* DataType */ +code span.dv { color: #40a070; } /* DecVal */ +code span.er { color: #ff0000; font-weight: bold; } /* Error */ +code span.ex { } /* Extension */ +code span.fl { color: #40a070; } /* Float */ +code span.fu { color: #06287e; } /* Function */ +code span.im { color: #008000; font-weight: bold; } /* Import */ +code span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ +code span.kw { color: #007020; font-weight: bold; } /* Keyword */ +code span.op { color: #666666; } /* Operator */ +code span.ot { color: #007020; } /* Other */ +code span.pp { color: #bc7a00; } /* Preprocessor */ +code span.sc { color: #4070a0; } /* SpecialChar */ +code span.ss { color: #bb6688; } /* SpecialString */ +code span.st { color: #4070a0; } /* String */ +code span.va { color: #19177c; } /* Variable */ +code span.vs { color: #4070a0; } /* VerbatimString */ +code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */ div.csl-bib-body { } div.csl-entry { clear: both; @@ -175,16 +238,36 @@ div.csl-indent {
  • 4.3.2 Function defined in the language
  • 4.3.3 Accessing to the sequence annotations
  • -
  • 4.4 Metabarcode design and quality assessment
  • -
  • 4.5 File format conversions
  • -
  • 4.6 Sequence annotations
  • +
  • 4.4 Metabarcode design and quality assessment +
  • +
  • 4.5 File format conversions +
  • +
  • 4.6 Sequence annotations +
  • 4.7 Computations on sequences
  • 4.8 Sequence sampling and filtering
  • +
  • 4.9 Utilities +
  • @@ -268,40 +351,52 @@ div.csl-indent {

    Several OBITools (e.g. obigrep, obiannotate) allow the user to specify some simple expressions to compute values or define predicates. This expressions are parsed and evaluated using the gval go package, which allows for evaluating go-Like expression.

    4.3.1 Variables usable in the expression

    -
    -

    4.3.1.1 sequence

    -

    sequence is the sequence object on which the expression is evaluated

    -
    -
    -

    4.3.1.2 annotation

    -
    +

    4.3.2 Function defined in the language

    -
    -

    4.3.2.1 len

    +
    +

    Instrospection functions

    +
      +
    • len(x)is a generic function allowing to retreive the size of a object. It returns the length of a sequences, the number of element in a map like annotations, the number of elements in an array. The reurned value is an int.
    • +
    -
    -

    4.3.2.2 ismap

    +
    +

    Cast functions

    +
      +
    • int(x) converts if possible the x value to an integer value. The function returns an int.
    • +
    • numeric(x) converts if possible the x value to a float value. The function returns a float.
    • +
    • bool(x) converts if possible the x value to a boolean value. The function returns a bool.
    • +
    -
    -

    4.3.2.3 hasattribute

    -
    -
    -

    4.3.2.4 min

    -
    -
    -

    4.3.2.5 max

    +

    4.3.3 Accessing to the sequence annotations

    +

    The annotations variable is a map object containing all the annotations associated to the currently processed sequence. Index of the map are the attribute names. It exists to possibillities to retreive an annotation. It is possible to use the classical [] indexing operator, putting the attribute name quoted by double quotes between them.

    +
    annotations["direction"]
    +

    The above code retreives the direction annotation. A second notation using the dot (.) is often more convenient.

    +
    annotations.direction
    +

    Special attributes of the sequence are accessible only by dedicated methods of the sequence object.

    +
      +
    • The sequence identifier : Id()
    • +
    • THe sequence definition : Definition()
    • +

    4.4 Metabarcode design and quality assessment

    -
    -

    4.4.0.1 obipcr

    +
    +

    4.4.1 obipcr

    Replace the ecoPCR original OBITools

    @@ -309,14 +404,17 @@ div.csl-indent {

    4.5 File format conversions

    -
    -

    4.5.0.1 obiconvert

    +
    +

    4.5.1 obiconvert

    4.6 Sequence annotations

    -
    -

    4.6.0.1 obitag

    +
    +

    4.6.1 obiannotate

    +
    +
    +

    4.6.2 obitag

    @@ -326,15 +424,15 @@ div.csl-indent {

    Replace the illuminapairedends original OBITools

    -
    -

    4.7.1.1 Alignment procedure

    +
    +

    Alignment procedure

    obipairing is introducing a new alignment algorithm compared to the illuminapairedend command of the OBITools V2. Nethertheless this new algorithm has been design to produce the same results than the previous, except in very few cases.

    The new algorithm is a two-step procedure. First, a FASTN-type algorithm (Lipman and Pearson 1985) identifies the best offset between the two matched readings. This identifies the region of overlap.

    In the second step, the matching regions of the two reads are extracted along with a flanking sequence of \(\Delta\) base pairs. The two subsequences are then aligned using a “one side free end-gap” dynamic programming algorithm. This latter step is only called if at least one mismatch is detected by the FASTP step.

    Unless the similarity between the two reads at their overlap region is very low, the addition of the flanking regions in the second step of the alignment ensures the same alignment as if the dynamic programming alignment was performed on the full reads.

    -
    -

    4.7.1.2 The scoring system

    +
    +

    The scoring system

    In the dynamic programming step, the match and mismatch scores take into account the quality scores of the two aligned nucleotides. By taking these into account, the probability of a true match can be calculated for each aligned base pair.

    If we consider a nucleotide read with a quality score \(Q\), the probability of misreading this base (\(P_E\)) is : \[ P_E = 10^{-\frac{Q}{10}} @@ -388,6 +486,12 @@ P(MATCH | X_1 \neq X_2) = (1-P_{E1})\frac{P_{E2}}{3} + (1-P_{E2})\frac{P_{E1}} \end{aligned} \]

    Probability of a match under the random model

    +

    The second considered model is a pure random model where every base is equiprobable, hence having a probability of occurrence of a nucleotide equals \(0.25\). Under that hypothesis

    +

    \[ +P(MATCH | \text{Random model}) = 0.25 +\]

    +

    The score is a log ration of likelyhood

    +

    Score is define as the logarithm of the ratio between the likelyhood of the observations considering the sequencer error model over tha likelyhood u

    @@ -399,38 +503,49 @@ P(MATCH | X_1 \neq X_2) = (1-P_{E1})\frac{P_{E2}}{3} + (1-P_{E2})\frac{P_{E1}}
    -
    -

    4.7.1.3 obimultiplex

    +
    +
    +

    4.7.2 obimultiplex

    Replace the ngsfilter original OBITools

    -
    -

    4.7.1.4 obicomplement

    +
    +

    4.7.3 obicomplement

    -
    -

    4.7.1.5 obiclean

    -
    -
    -

    4.7.1.6 obiuniq

    +
    +

    4.7.4 obiclean

    +
    +

    4.7.5 obiuniq

    4.8 Sequence sampling and filtering

    -
    -

    4.8.0.1 obigrep

    +
    +

    4.8.1 obigrep

    -
    -

    4.8.1 Utilities

    -
    -

    4.8.1.1 obicount

    -
    -

    4.8.1.2 obidistribute

    +
    +

    4.9 Utilities

    +
    +

    4.9.1 obicount

    +

    obicount counts the number of sequence records, the sum of the count attributes, and the sum of the length of all the sequences.

    +

    Example:

    +
    obicount seq.fasta  
    +

    Prints the number of sequence records contained in the seq.fasta file and the sum of their count attributes.

    +

    Options specific to the command

    +
      +
    • --reads|-r Prints read counts.
    • +
    • --symbols|-s Prints symbol counts.
    • +
    • --variants|-v Prints variant counts.
    • +
    -
    -

    4.8.1.3 obifind

    +
    +

    4.9.2 obidistribute

    +
    +
    +

    4.9.3 obifind

    Replace the ecofind original OBITools.

    @@ -443,7 +558,6 @@ Lipman, D J, and W R Pearson. 1985. Rapid and sens
    -
    + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    + +
    + + + + + +
    + +
    +
    +

    5  Utilities

    +
    + + + +
    + + + + +
    + + +
    + +
    +

    5.0.0.1 obicount

    +
    +
    +

    5.0.0.2 obidistribute

    +
    +
    +

    5.0.0.3 obifind

    +
    +

    Replace the ecofind original OBITools.

    +
    + + +
    + +
    + + +
    + + + + \ No newline at end of file diff --git a/doc/_obipairing.qmd b/doc/_obipairing.qmd new file mode 100644 index 0000000..1b3e3a4 --- /dev/null +++ b/doc/_obipairing.qmd @@ -0,0 +1,139 @@ +### `obipairing` + +> Replace the `illuminapairedends` original *OBITools* + +#### Alignment procedure {.unnumbered} + +`obipairing` is introducing a new alignment algorithm compared to the `illuminapairedend` command of the `OBITools V2`. +Nethertheless this new algorithm has been design to produce the same results than the previous, except in very few cases. + +The new algorithm is a two-step procedure. First, a FASTN-type algorithm [@Lipman1985-hw] identifies the best offset between the two matched readings. This identifies the region of overlap. + +In the second step, the matching regions of the two reads are extracted along with a flanking sequence of $\Delta$ base pairs. The two subsequences are then aligned using a "one side free end-gap" dynamic programming algorithm. This latter step is only called if at least one mismatch is detected by the FASTP step. + +Unless the similarity between the two reads at their overlap region is very low, the addition of the flanking regions in the second step of the alignment ensures the same alignment as if the dynamic programming alignment was performed on the full reads. + +#### The scoring system {.unnumbered} + +In the dynamic programming step, the match and mismatch scores take into account the quality scores of the two aligned nucleotides. By taking these into account, the probability of a true match can be calculated for each aligned base pair. + +If we consider a nucleotide read with a quality score $Q$, the probability of misreading this base ($P_E$) is : +$$ +P_E = 10^{-\frac{Q}{10}} +$$ + +Thus, when a given nucleotide $X$ is observed with the quality score $Q$. The probability that $X$ is really an $X$ is : + +$$ +P(X=X) = 1 - P_E +$$ + +Otherwise, $X$ is actually one of the three other possible nucleotides ($X_{E1}$, $X_{E2}$ or $X_{E3}$). If we suppose that the three reading error have the same probability : + +$$ +P(X=X_{E1}) = P(X=X_{E3}) = P(X=X_{E3}) = \frac{P_E}{3} +$$ + +At each position in an alignment where the two nucleotides $X_1$ and $X_2$ face each other (not a gapped position), the probability of a true match varies depending on whether $X_1=X_2$, an observed match, or $X_1 \neq X_2$, an observed mismatch. + +**Probability of a true match when $X_1=X_2$** + +That probability can be divided in two parts. First $X_1$ and $X_2$ have been correctly read. The corresponding probability is : + +$$ +\begin{aligned} +P_{TM} &= (1- PE_1)(1-PE_2)\\ + &=(1 - 10^{-\frac{Q_1}{10} } )(1 - 10^{-\frac{Q_2}{10}} ) +\end{aligned} +$$ + +Secondly, a match can occure if the true nucleotides read as $X_1$ and $X_2$ are not $X_1$ and $X_2$ but identical. + +$$ +\begin{aligned} +P(X_1==X_{E1}) \cap P(X_2==X_{E1}) &= \frac{P_{E1} P_{E2}}{9} \\ +P(X_1==X_{Ex}) \cap P(X_2==X_{Ex}) & = \frac{P_{E1} P_{E2}}{3} +\end{aligned} +$$ + +The probability of a true match between $X_1$ and $X_2$ when $X_1 = X_2$ an observed match : + +$$ +\begin{aligned} +P(MATCH | X_1 = X_2) = (1- PE_1)(1-PE_2) + \frac{P_{E1} P_{E2}}{3} +\end{aligned} +$$ + +**Probability of a true match when $X_1 \neq X_2$** + +That probability can be divided in three parts. + +a. $X_1$ has been correctly read and $X_2$ is a sequencing error and is actually equal to $X_1$. +$$ +P_a = (1-P_{E1})\frac{P_{E2}}{3} +$$ +a. $X_2$ has been correctly read and $X_1$ is a sequencing error and is actually equal to $X_2$. +$$ +P_b = (1-P_{E2})\frac{P_{E1}}{3} +$$ +a. $X_1$ and $X_2$ corresponds to sequencing error but are actually the same base $X_{Ex}$ +$$ +P_c = 2\frac{P_{E1} P_{E2}}{9} +$$ + +Consequently : +$$ +\begin{aligned} +P(MATCH | X_1 \neq X_2) = (1-P_{E1})\frac{P_{E2}}{3} + (1-P_{E2})\frac{P_{E1}}{3} + 2\frac{P_{E1} P_{E2}}{9} +\end{aligned} +$$ + +**Probability of a match under the random model** + +The second considered model is a pure random model where every base is equiprobable, hence having a probability of occurrence of a nucleotide equals $0.25$. Under that hypothesis + +$$ +P(MATCH | \text{Random model}) = 0.25 +$$ + +**The score is a log ration of likelyhood** + +Score is define as the logarithm of the ratio between the likelyhood of the observations considering the sequencer error model over tha likelyhood u + + +```{r} +#| echo: false +#| warning: false +#| fig-cap: "Evolution of the match and mismatch scores when the quality of base is 20 while the second range from 10 to 40." +require(ggplot2) +require(tidyverse) + +Smatch <- function(Q1,Q2) { + PE1 <- 10^(-Q1/10) + PE2 <- 10^(-Q2/10) + PT1 <- 1 - PE1 + PT2 <- 1 - PE2 + + PM <- PT1*PT2 + PE1 * PE2 / 3 + round((log(PM)+log(4))*10) +} + +Smismatch <- function(Q1,Q2) { + + PE1 <- 10^(-Q1/10) + PE2 <- 10^(-Q2/10) + PT1 <- 1 - PE1 + PT2 <- 1 - PE2 + + PM <- PE1*PT2/3 + PT1 * PE2 / 3 + 2/3 * PE1 * PE2 + round((log(PM)+log(4))*10) +} + +tibble(Q = 10:40) %>% + mutate(Match = mapply(Smatch,Q,20), + Mismatch = mapply(Smismatch,Q,20), + ) %>% pivot_longer(cols = -Q, names_to = "Class", values_to = "Score") %>% + ggplot(aes(x=Q,y=Score,col=Class)) + + geom_line() + + xlab("Q1 (Q2=20)") +``` diff --git a/doc/_utilities.qmd b/doc/_utilities.qmd new file mode 100644 index 0000000..8f44295 --- /dev/null +++ b/doc/_utilities.qmd @@ -0,0 +1,26 @@ +## Utilities + +### `obicount` + +`obicount` counts the number of sequence records, the sum of the ``count`` attributes, and the sum +of the length of all the sequences. + +*Example:* + +``` bash +obicount seq.fasta +``` +Prints the number of sequence records contained in the ``seq.fasta`` +file and the sum of their ``count`` attributes. + +*Options specific to the command* + +- `--reads|-r ` Prints read counts. +- `--symbols|-s` Prints symbol counts. +- `--variants|-v` Prints variant counts. + +### `obidistribute` + +### `obifind` + +> Replace the `ecofind` original *OBITools.* diff --git a/doc/commands.qmd b/doc/commands.qmd index 08f95bd..be5b4e0 100644 --- a/doc/commands.qmd +++ b/doc/commands.qmd @@ -57,191 +57,89 @@ Several OBITools (*e.g.* obigrep, obiannotate) allow the user to specify some si ### Variables usable in the expression -#### sequence +- `sequence` is the sequence object on which the expression is evaluated. +- `annotations`is a map object containing every annotations associated to the currently processed sequence. -sequence is the sequence object on which the expression is evaluated +### Function defined in the language -#### annotation +#### Instrospection functions {.unnumbered} -### Function defined in the language +- `len(x)`is a generic function allowing to retreive the size of a object. It returns + the length of a sequences, the number of element in a map like `annotations`, the number + of elements in an array. The reurned value is an `int`. -#### len +#### Cast functions {.unnumbered} -#### ismap +- `int(x)` converts if possible the `x` value to an integer value. The function + returns an `int`. +- `numeric(x)` converts if possible the `x` value to a float value. The function + returns a `float`. +- `bool(x)` converts if possible the `x` value to a boolean value. The function + returns a `bool`. -#### hasattribute +#### String related functions {.unnumbered} -#### min - -#### max +- `printf(format,...)` allows to combine several values to build a string. `format` follows the + classical C `printf` syntax. The function returns a `string`. +- `subspc(x)` substitutes every space in the `x` string by the underscore (`_`) character. The function + returns a `string`. ### Accessing to the sequence annotations +The `annotations` variable is a map object containing all the annotations associated to the currently processed sequence. Index of the map are the attribute names. It exists to possibillities to retreive +an annotation. It is possible to use the classical `[]` indexing operator, putting the attribute name +quoted by double quotes between them. + +```go +annotations["direction"] +``` + +The above code retreives the `direction` annotation. A second notation using the dot (`.`) is often +more convenient. + +```go +annotations.direction +``` + +Special attributes of the sequence are accessible only by dedicated methods of the `sequence` object. + +- The sequence identifier : `Id()` +- THe sequence definition : `Definition()` + + ## Metabarcode design and quality assessment -#### `obipcr` +### `obipcr` > Replace the `ecoPCR` original *OBITools* ## File format conversions -#### `obiconvert` +### `obiconvert` ## Sequence annotations -#### `obitag` +### `obiannotate` + +### `obitag` ## Computations on sequences -### `obipairing` +{{< include _obipairing.qmd >}} -> Replace the `illuminapairedends` original *OBITools* - -#### Alignment procedure - -`obipairing` is introducing a new alignment algorithm compared to the `illuminapairedend` command of the `OBITools V2`. -Nethertheless this new algorithm has been design to produce the same results than the previous, except in very few cases. - -The new algorithm is a two-step procedure. First, a FASTN-type algorithm [@Lipman1985-hw] identifies the best offset between the two matched readings. This identifies the region of overlap. - -In the second step, the matching regions of the two reads are extracted along with a flanking sequence of $\Delta$ base pairs. The two subsequences are then aligned using a "one side free end-gap" dynamic programming algorithm. This latter step is only called if at least one mismatch is detected by the FASTP step. - -Unless the similarity between the two reads at their overlap region is very low, the addition of the flanking regions in the second step of the alignment ensures the same alignment as if the dynamic programming alignment was performed on the full reads. - -#### The scoring system - -In the dynamic programming step, the match and mismatch scores take into account the quality scores of the two aligned nucleotides. By taking these into account, the probability of a true match can be calculated for each aligned base pair. - -If we consider a nucleotide read with a quality score $Q$, the probability of misreading this base ($P_E$) is : -$$ -P_E = 10^{-\frac{Q}{10}} -$$ - -Thus, when a given nucleotide $X$ is observed with the quality score $Q$. The probability that $X$ is really an $X$ is : - -$$ -P(X=X) = 1 - P_E -$$ - -Otherwise, $X$ is actually one of the three other possible nucleotides ($X_{E1}$, $X_{E2}$ or $X_{E3}$). If we suppose that the three reading error have the same probability : - -$$ -P(X=X_{E1}) = P(X=X_{E3}) = P(X=X_{E3}) = \frac{P_E}{3} -$$ - -At each position in an alignment where the two nucleotides $X_1$ and $X_2$ face each other (not a gapped position), the probability of a true match varies depending on whether $X_1=X_2$, an observed match, or $X_1 \neq X_2$, an observed mismatch. - -**Probability of a true match when $X_1=X_2$** - -That probability can be divided in two parts. First $X_1$ and $X_2$ have been correctly read. The corresponding probability is : - -$$ -\begin{aligned} -P_{TM} &= (1- PE_1)(1-PE_2)\\ - &=(1 - 10^{-\frac{Q_1}{10} } )(1 - 10^{-\frac{Q_2}{10}} ) -\end{aligned} -$$ - -Secondly, a match can occure if the true nucleotides read as $X_1$ and $X_2$ are not $X_1$ and $X_2$ but identical. - -$$ -\begin{aligned} -P(X_1==X_{E1}) \cap P(X_2==X_{E1}) &= \frac{P_{E1} P_{E2}}{9} \\ -P(X_1==X_{Ex}) \cap P(X_2==X_{Ex}) & = \frac{P_{E1} P_{E2}}{3} -\end{aligned} -$$ - -The probability of a true match between $X_1$ and $X_2$ when $X_1 = X_2$ an observed match : - -$$ -\begin{aligned} -P(MATCH | X_1 = X_2) = (1- PE_1)(1-PE_2) + \frac{P_{E1} P_{E2}}{3} -\end{aligned} -$$ - -**Probability of a true match when $X_1 \neq X_2$** - -That probability can be divided in three parts. - -a. $X_1$ has been correctly read and $X_2$ is a sequencing error and is actually equal to $X_1$. -$$ -P_a = (1-P_{E1})\frac{P_{E2}}{3} -$$ -a. $X_2$ has been correctly read and $X_1$ is a sequencing error and is actually equal to $X_2$. -$$ -P_b = (1-P_{E2})\frac{P_{E1}}{3} -$$ -a. $X_1$ and $X_2$ corresponds to sequencing error but are actually the same base $X_{Ex}$ -$$ -P_c = 2\frac{P_{E1} P_{E2}}{9} -$$ - -Consequently : -$$ -\begin{aligned} -P(MATCH | X_1 \neq X_2) = (1-P_{E1})\frac{P_{E2}}{3} + (1-P_{E2})\frac{P_{E1}}{3} + 2\frac{P_{E1} P_{E2}}{9} -\end{aligned} -$$ - -**Probability of a match under the random model** - - -```{r} -#| echo: false -#| warning: false -#| fig-cap: "Evolution of the match and mismatch scores when the quality of base is 20 while the second range from 10 to 40." -require(ggplot2) -require(tidyverse) - -Smatch <- function(Q1,Q2) { - PE1 <- 10^(-Q1/10) - PE2 <- 10^(-Q2/10) - PT1 <- 1 - PE1 - PT2 <- 1 - PE2 - - PM <- PT1*PT2 + PE1 * PE2 / 3 - round((log(PM)+log(4))*10) -} - -Smismatch <- function(Q1,Q2) { - - PE1 <- 10^(-Q1/10) - PE2 <- 10^(-Q2/10) - PT1 <- 1 - PE1 - PT2 <- 1 - PE2 - - PM <- PE1*PT2/3 + PT1 * PE2 / 3 + 2/3 * PE1 * PE2 - round((log(PM)+log(4))*10) -} - -tibble(Q = 10:40) %>% - mutate(Match = mapply(Smatch,Q,20), - Mismatch = mapply(Smismatch,Q,20), - ) %>% pivot_longer(cols = -Q, names_to = "Class", values_to = "Score") %>% - ggplot(aes(x=Q,y=Score,col=Class)) + - geom_line() + - xlab("Q1 (Q2=20)") -``` -#### `obimultiplex` +### `obimultiplex` > Replace the `ngsfilter` original *OBITools* -#### `obicomplement` +### `obicomplement` -#### `obiclean` +### `obiclean` -#### `obiuniq` +### `obiuniq` -## Sequence sampling and filtering +## Sequence sampling and filtering -#### `obigrep` +### `obigrep` -### Utilities +{{< include _utilities.qmd >}} -#### `obicount` - -#### `obidistribute` - -#### `obifind` - -> Replace the `ecofind` original *OBITools.* diff --git a/doc/commands_files/figure-epub/unnamed-chunk-1-1.png b/doc/commands_files/figure-epub/unnamed-chunk-1-1.png new file mode 100644 index 0000000..ca3b8b3 Binary files /dev/null and b/doc/commands_files/figure-epub/unnamed-chunk-1-1.png differ diff --git a/doc/commands_files/figure-pdf/unnamed-chunk-1-1.pdf b/doc/commands_files/figure-pdf/unnamed-chunk-1-1.pdf new file mode 100644 index 0000000..305e715 Binary files /dev/null and b/doc/commands_files/figure-pdf/unnamed-chunk-1-1.pdf differ