Skip to content

Commit

Permalink
prepare release v1.3.1 and update lphy doc #223
Browse files Browse the repository at this point in the history
  • Loading branch information
walterxie committed Aug 9, 2022
1 parent 419db61 commit c533300
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ allprojects {
// Configures the sub-projects of this project.
subprojects {
group = "io.github.linguaphylo"
version = "1.3.1-SNAPSHOT"
version = "1.3.1"//-SNAPSHOT
val webSteam = "github.com/LinguaPhylo/linguaPhylo"
val web = "https://${webSteam}"
val homepage = "https://linguaphylo.github.io/"
Expand Down
2 changes: 1 addition & 1 deletion lphy/doc/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
LPhy Language Reference (version 1.3.0)
LPhy Language Reference (version 1.3.1)
=======================================
This an automatically generated language reference of the LinguaPhylo (LPhy) statistical phylogenetic modeling language.

Expand Down
8 changes: 7 additions & 1 deletion lphy/doc/types/Alignment.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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.
- **dataType**
- get the data type of this alignment.
- **length**
Expand All @@ -14,7 +18,9 @@ Methods
- **nodeCount**
- the total number of nodes (left + internal) in a binary tree with these taxa.
- **stateCount**
- the number of possible states in the alignment.
- 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**
Expand Down
8 changes: 7 additions & 1 deletion lphy/doc/types/MetaDataAlignment.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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**
Expand All @@ -18,7 +22,9 @@ Methods
- **nodeCount**
- the total number of nodes (left + internal) in a binary tree with these taxa.
- **stateCount**
- the number of possible states in the alignment.
- 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**
Expand Down
2 changes: 2 additions & 0 deletions lphy/doc/types/TimeTree.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ TimeTree
Methods
-------

- **branchCount**
- the total number of branches in the tree (returns nodeCount() - 1)
- **directAncestorCount**
- the total number of nodes in the tree that are direct ancestors (i.e. have a single parent and a single child, or have one child that is a zero-branch-length leaf).
- **extantCount**
Expand Down

0 comments on commit c533300

Please sign in to comment.