|
1 | 1 | # Identity |
2 | 2 |
|
3 | | -Identity 1.0 is developed by Hani Z. Girgis, PhD. |
| 3 | +Identity 1.1 is developed by Hani Z. Girgis, PhD. |
4 | 4 |
|
5 | 5 | This program calculates DNA sequence identity scores rapidly without alignment. |
6 | 6 |
|
@@ -48,6 +48,11 @@ List of parameters: |
48 | 48 |
|
49 | 49 | -t: Required. Identity score threshold (between 0 & 0.99), below which pairs are not reported. |
50 | 50 |
|
| 51 | + -a: Optional. Report identity scores for all pairs including those below the threshold -- y |
| 52 | + (yes) or n (no). If yes, it may take long time on large datasets due to writing to a file. |
| 53 | + This option should be used if you desire constructing a phylogenetic tree. You may use the |
| 54 | + accompanying Python program to covert Identity's output to a Phylip distance matrix. |
| 55 | + |
51 | 56 | -q: Optional. Query file in FASTA format. If no query(s) is provided, all versus all is |
52 | 57 | performed on the database file. |
53 | 58 | |
@@ -78,11 +83,15 @@ Examples: |
78 | 83 | 4. To perform all versus all with a minimum identity score of 0.8 with strict threshold |
79 | 84 | identity -d databas.fasta -o output.txt -t 0.8 -r n |
80 | 85 |
|
81 | | - 5. To print the academic lincense |
| 86 | + 5. To perform all versus all with a minimum identity score of 0.8 and report all pairs |
| 87 | + identity -d databas.fasta -o output.txt -t 0.8 -a y |
| 88 | + |
| 89 | + 6. To print the academic lincense |
82 | 90 | identity -l y |
83 | 91 | |
84 | | -Hierarchical clustering: |
| 92 | +Phylogenetic trees: |
| 93 | + |
| 94 | + To produce an all-versus-all distance matrix in Phylip format use makePhylipMatrix.py under the |
| 95 | + py directory. |
85 | 96 |
|
86 | | - To utilize the all-versus-all identity scores in hierarchical clustering see the README file |
87 | | - under the py directory. |
88 | 97 |
|
0 commit comments