Why Is There A Prefix Of 'E' In Most Terms Of The Xml File Downloaded Form Ncbi Bioproject
1
1
Entering edit mode
12.0 years ago
Ligaopeng ▴ 20

{ BiologicalProperties => { Environment => { Habitat => "eAquatic", OxygenReq => "eAerobic", Salinity => "eModerateHalophilic", }, Phenotype => { BioticRelationship => "eParasite", Disease => "Sealice" }, }, GenomeSize => { content => 600, units => "Mb" }, Label => "Sidney, BC", OrganismName => "Lepeophtheirus salmonis", Organization => "eMulticellular", Reproduction => "eSexual", species => 72036, Strain => "Pacific", Supergroup => "eEukaryotes", taxID => 72036, },

above is part of my dump file.

e.g.

Supergroup           => "eEukaryotes"

that prefix 'e' should make some sense, but what's the sense?

I'll appreciate it very much for solving my confusion.

ncbi • 1.9k views
ADD COMMENT
0
Entering edit mode

Strange. Almost looks like a bug...but I'm sure there's some reason. Probably best to ask the NCBI help desk; users here are unlikely to know (unless they have also asked).

ADD REPLY
4
Entering edit mode
12.0 years ago

'Enumeration': It's part of a XML enumeration. See the associated xsd schema: ftp://ftp.ncbi.nlm.nih.gov/bioproject/Schema/Core.xsd

                               <xs:element name="OxygenReq" minOccurs="0">
                                    <xs:simpleType>
                                        <xs:restriction base="xs:token">
                                            <xs:enumeration value="eUnknown"/>
                                            <xs:enumeration value="eAerobic"/>
                                            <xs:enumeration value="eMicroaerophilic"/>
                                            <xs:enumeration value="eFacultative"/>
                                            <xs:enumeration value="eAnaerobic"/>
                                        </xs:restriction>
                                    </xs:simpleType>
                                </xs:element>
ADD COMMENT
0
Entering edit mode

Got it, and thanks a lot for your pretty answer.

ADD REPLY

Login before adding your answer.

Traffic: 1034 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6