This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Why Is There A Prefix Of 'E' In Most Terms Of The Xml File Downloaded Form Ncbi Bioproject

{ 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

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).

1 answer

'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>

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

Log in to answer this question.