Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
edna
custom_reference_database
Commits
fb3a16b9
Commit
fb3a16b9
authored
Mar 26, 2021
by
peguerin
Browse files
add object TaxNode
parent
cf577dcd
Changes
1
Hide whitespace changes
Inline
Side-by-side
mkbdr/objects.py
View file @
fb3a16b9
...
...
@@ -26,3 +26,12 @@ class DescriptionRecord:
def
__init__
(
self
,
sampleid
,
species_name
):
self
.
sampleid
=
sampleid
self
.
species_name
=
species_name
class
TaxonNode
:
def
__init__
(
self
,
taxid
,
parent_taxid
,
scientific_name
,
rank
):
self
.
taxid
=
taxid
self
.
parent_taxid
=
parent_taxid
self
.
scientific_name
=
scientific_name
self
.
rank
=
rank
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment