-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from bioDS/fix_gt16_error_model_annotations
Fix gt16 error model annotations
- Loading branch information
Showing
10 changed files
with
137 additions
and
35 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
GT16ErrorModel distribution | ||
=========================== | ||
GT16ErrorModel() | ||
---------------- | ||
GT16ErrorModel(Double **epsilon**, Double **delta**, Alignment **alignment**) | ||
----------------------------------------------------------------------------- | ||
|
||
An error model distribution on an phased genotype alignment. | ||
|
||
### Parameters | ||
|
||
- Double **epsilon** - the sequencing and amplification error probability. | ||
- Double **delta** - the allelic drop out probability. | ||
- Alignment **alignment** - the genotype alignment. | ||
|
||
### Return type | ||
|
||
- Alignment | ||
|
||
### Reference | ||
|
||
Alexey Kozlov, Joao Alves, Alexandros Stamatakis, David Posada (2021). CellPhy: accurate and fast probabilistic inference of single-cell phylogenies from scDNA-seq data. bioRxiv 2020.07.31.230292.[https://doi.org/10.1101/2020.07.31.230292](https://doi.org/10.1101/2020.07.31.230292) | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
MetaDataAlignment | ||
================= | ||
Methods | ||
------- | ||
|
||
- **ages** | ||
- gets the ages of these taxa as an array of doubles. | ||
- **canonicalStateCount** | ||
- the number of canonical states excluding ambiguous states in the alignment. | ||
- **canonicalStates** | ||
- the canonical states excluding ambiguous states. | ||
- **charset** | ||
- return a partition alignment. If the string doesn't match charset's syntax, then check if the string matches a defined name in the nexus file. Otherwise it is an error. The string is referred to one partition at a call, but can be multiple blocks, such as d.charset("2-457\3 660-896\3"). | ||
- **dataType** | ||
- get the data type of this alignment. | ||
- **getTaxaNames** | ||
- The names of the taxa. | ||
- **length** | ||
- gets the number of taxa. | ||
- **nchar** | ||
- The number of characters/sites. | ||
- **nodeCount** | ||
- the total number of nodes (left + internal) in a binary tree with these taxa. | ||
- **stateCount** | ||
- the number of possible states including ambiguous states in the alignment. | ||
- **states** | ||
- the possible states including ambiguous states. | ||
- **taxa** | ||
- the taxa of the alignment. | ||
- **taxaNames** | ||
- The names of the taxa. |
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
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
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
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
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