https://github.com/biocore/taxster
taxster: assigning taxonomy to organisms you've never even heard of
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (6.9%) to scientific vocabulary
Repository
taxster: assigning taxonomy to organisms you've never even heard of
Basic Info
Statistics
- Stars: 2
- Watchers: 9
- Forks: 4
- Open Issues: 3
- Releases: 0
Metadata Files
README.md
taxster: assigning taxonomy to organisms you've never even heard of

This library contains tools for working with taxonomic assignment data. This should be considered pre-alpha software. Public APIs can and will change!
Install
pip install https://github.com/biocore/taxster/archive/master.zip
Consensus taxonomy assignments from .uc files
This example illustrates how to apply the consensus taxonomy processing described in Bokulich et al (in preparation). It assumes that you have the test data files included in this repository in ./test-data.
```python import taxster
taxonomymap = {} for line in open('./test-data/uc/tax-map.tsv', 'U'): line = line.strip() if line.startswith('#') or not line: continue fields = line.split('\t') id = fields[0] tax = fields[1].split('; ') taxonomymap[id] = tax
uc = open('./test-data/uc/1.uc', 'U') consensusassignments = taxster.ucconsensusassignments(uc, taxonomymap) ```
If you'd then like to write these out to file, you can do the following. This will write the consensus taxonomy assignments to a file that can be used with biom add-metadata (compatible with biom-format >= 2.1.5, < 2.2.0).
python
f = open('uc-consensus-tax.tsv', 'w')
for id_, (tax, fraction, hits) in consensus_assignments.items():
tax = '; '.join(tax)
f.write('\t'.join(map(str, [id_, tax, fraction, hits])))
f.write('\n')
f.close()
To get help with taxster.uc_consensus_assignments, call:
python
help(taxster.uc_consensus_assignments)
Owner
- Name: biocore
- Login: biocore
- Kind: organization
- Location: Cyberspace
- Website: http://biocore.github.io/
- Repositories: 76
- Profile: https://github.com/biocore
Collaboratively developed bioinformatics software.
GitHub Events
Total
Last Year
Issues and Pull Requests
Last synced: over 1 year ago
All Time
- Total issues: 6
- Total pull requests: 6
- Average time to close issues: 12 months
- Average time to close pull requests: about 4 hours
- Total issue authors: 3
- Total pull request authors: 3
- Average comments per issue: 3.83
- Average comments per pull request: 6.0
- Merged pull requests: 4
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- audy (2)
- wasade (2)
- teravest (1)
Pull Request Authors
- audy (1)
- gregcaporaso (1)
- wasade (1)