TaxRec-class | R Documentation |
Taxonomic dictionary contains a taxonomic tree and NCBI taxonomy data for all taxonomic IDs.
## S4 method for signature 'TaxRec'
as.character(x)
## S4 method for signature 'TaxRec'
show(object)
## S4 method for signature 'TaxRec'
print(x)
## S4 method for signature 'TaxRec'
str(object, max.level = 2L, ...)
## S4 method for signature 'TaxRec'
summary(object)
x |
|
object |
|
max.level |
Maximum level of nesting for str() |
... |
Further arguments for str() |
id
Taxonomic ID
scnm
Scientific name
cmnm
Common name
rnk
Rank
lng
Lineage
prnt
Parent
Other run-public:
ClstrArc-class
,
ClstrRec-class
,
Phylota-class
,
SeqArc-class
,
SeqRec-class
,
TaxDict-class
,
clusters2_run()
,
clusters_run()
,
parameters_reset()
,
reset()
,
restart()
,
run()
,
setup()
,
taxise_run()
data('aotus')
taxrec <- aotus@txdct@recs[[aotus@txdct@txids[[1]]]]
# this is a TaxRec object
# it contains NCBI's taxonomic information for a single node
show(taxrec)
# you can access its different data slots with @
taxrec@id # taxonomic ID
taxrec@scnm # scientific name
taxrec@cmnm # common name, '' if none
taxrec@rnk # rank
taxrec@lng # lineage information: list of IDs and ranks
taxrec@prnt # parent ID
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.