biotree.asn
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:1k
- --$Revision: 1000.0 $
- --*********************************************************************
- --
- -- biotree.asn
- --
- -- BioTree ASN
- -- Anatoliy Kuznetsov
- --
- --*********************************************************************
- NCBI-BioTree DEFINITIONS ::=
- BEGIN
- EXPORTS BioTreeContainer;
- BioTreeContainer ::= SEQUENCE {
- treetype VisibleString OPTIONAL, -- hint on what kind of tree is that
- fdict FeatureDictSet, -- features dictionary
- nodes NodeSet -- set of nodes with encoded topology
- }
- NodeSet ::= SET OF Node
- Node ::= SEQUENCE {
- id INTEGER, -- node uid
- parent INTEGER OPTIONAL, -- parent node id
- features NodeFeatureSet OPTIONAL
- }
- NodeFeatureSet ::= SET OF NodeFeature
- NodeFeature ::= SEQUENCE {
- featureid INTEGER,
- value VisibleString
- }
- FeatureDictSet ::= SET OF FeatureDescr
- FeatureDescr ::= SEQUENCE {
- id INTEGER, -- feature id
- name VisibleString -- feature name
- }
- END