-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
89d1e6c
commit 9e5f985
Showing
6 changed files
with
98 additions
and
19 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
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 |
---|---|---|
|
@@ -42,7 +42,7 @@ All-in-one command: | |
```text | ||
TaxonKit - A Practical and Efficient NCBI Taxonomy Toolkit | ||
Version: 0.14.2 | ||
Version: 0.15.1 | ||
Author: Wei Shen <[email protected]> | ||
|
@@ -75,7 +75,7 @@ Available Commands: | |
lca Compute lowest common ancestor (LCA) for TaxIds | ||
lineage Query taxonomic lineage of given TaxIds | ||
list List taxonomic subtrees of given TaxIds | ||
name2taxid Convert scientific names to TaxIds | ||
name2taxid Convert taxon names to TaxIds | ||
profile2cami Convert metagenomic profile table to CAMI format | ||
reformat Reformat lineage in canonical ranks | ||
taxid-changelog Create TaxId changelog from dump archives | ||
|
@@ -90,6 +90,8 @@ Flags: | |
-j, --threads int number of CPUs. 4 is enough (default 4) | ||
--verbose print verbose information | ||
Use "taxonkit [command] --help" for more information about a command. | ||
``` | ||
|
||
## list | ||
|
@@ -999,11 +1001,11 @@ Examples: | |
Usage | ||
|
||
```text | ||
Convert scientific names to TaxIds | ||
Convert taxon names to TaxIds | ||
Attention: | ||
1. Some TaxIds share the same scientific names, e.g, Drosophila. | ||
1. Some TaxIds share the same names, e.g, Drosophila. | ||
These input lines are duplicated with multiple TaxIds. | ||
$ echo Drosophila | taxonkit name2taxid | taxonkit lineage -i 2 -r -L | ||
|
@@ -1069,6 +1071,12 @@ Example data | |
uncultured murine large bowel bacterium BAC 54B 314101 cellular organisms;Bacteria;environmental samples;uncultured murine large bowel bacterium BAC 54B | ||
Croceibacter phage P2559Y 1327037 Viruses;Caudovirales;Siphoviridae;unclassified Siphoviridae;Croceibacter phage P2559Y | ||
|
||
1. Convert old names to new names. | ||
|
||
$ echo Lactobacillus fermentum | taxonkit name2taxid | taxonkit lineage -i 2 -n | cut -f 1,2,4 | ||
Lactobacillus fermentum 1613 Limosilactobacillus fermentum | ||
|
||
|
||
1. **Some TaxIds share the same scientific names**, e.g, Drosophila. | ||
|
||
$ echo Drosophila \ | ||
|
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,2 @@ | ||
Lactobacillus fermentum | ||
Mycoplasma gallinaceum |
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