Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • emanlee
    Member
    • Apr 2013
    • 15

    format uniref90.xml to database for BLAST

    we want to get a formated database for BLAST from Uniref90.
    we referred an article which used an early release Uniref90, say version 10.0
    ftp.uniprot.org only provide the XML format of this version.

    How can we convert XML uniref90.xml to uniref90.fasta ? or, can formatdb take XML file as input file?
    Thanks!

    XML file:
    ftp://ftp.uniprot.org/pub/databases/...ref10.0.tar.gz
  • maubp
    Peter (Biopython etc)
    • Jul 2009
    • 1544

    #2
    You should be able to convert the UniProt XML to FASTA using Biopython,

    Code:
    from Bio import SeqIO
    count = SeqIO.convert("uniref90.xml", "uniprot-xml", "converted.fasta", "fasta")
    print("Converted %i records" % count)

    Comment

    • emanlee
      Member
      • Apr 2013
      • 15

      #3
      Thank you for your quick reply. I'll try it out.

      Comment

      • emanlee
        Member
        • Apr 2013
        • 15

        #4
        Code:
        >>> from Bio import SeqIO
        >>> count = SeqIO.convert("uniref90.xml", "uniprot-xml", "uniref90converted.fasta", "fasta")
        >>> print("Converted %i records" % count)
        Converted 0 records

        We checked uniref90.xml:
        more uniref90.xml
        Code:
        <?xml version="1.0" encoding="ISO-8859-1" ?>
        <UniRef90 xmlns="http://uniprot.org/uniref" 
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xsi:schemaLocation="http://uniprot.org/uniref http://www.uniprot.org/support/docs/uniref.xsd" 
         releaseDate="2007-03-06" version="10.0"> 
        <entry id="UniRef90_Q3ASY8" updated="2007-03-06">
        <name>Cluster: Parallel beta-helix repeat</name>
        <property type="member count" value="1"/>
        <property type="common taxon" value="Chlorobium chlorochromatii CaD3"/>
        <property type="common taxon ID" value="340177"/>
        <representativeMember>
        <dbReference type="UniProtKB ID" id="Q3ASY8_CHLCH">
        <property type="UniProtKB accession" value="Q3ASY8"/>
        <property type="UniParc ID" value="UPI00005D5563"/>
        <property type="UniRef100 ID" value="UniRef100_Q3ASY8"/>
        <property type="UniRef50 ID" value="UniRef50_Q3ASY8"/>
        <property type="protein name" value="Parallel beta-helix repeat"/>
        <property type="source organism" value="Chlorobium chlorochromatii (strain CaD3)"/>
        <property type="NCBI taxonomy" value="340177"/>
        <property type="length" value="36805"/>
        <property type="isSeed" value="true"/>
        </dbReference>
        <sequence length="36805" checksum="A7A8EA21B9345FF9">
        MKPRFYIEQLEPRILLSGDILSELVPLLSSREASQMQSDYLLEHPEARRVAPLSAVEAAR
        ....
        Could you help us, thanks.
        Last edited by emanlee; 09-22-2013, 04:55 PM.

        Comment

        • kmcarr
          Senior Member
          • May 2008
          • 1181

          #5
          Originally posted by emanlee View Post
          Could you help us, thanks.
          Wouldn't it just be much easier to download the UniRef90 FASTA file directly?

          Comment

          • maubp
            Peter (Biopython etc)
            • Jul 2009
            • 1544

            #6
            Originally posted by kmcarr View Post
            Wouldn't it just be much easier to download the UniRef90 FASTA file directly?
            Indeed, I should have doubled checked that really didn't exist.

            As to the Biopython conversion failing, that is probably a bug - I'd have replied earlier but missed the thread reply alert - sorry.

            Comment

            • GenoMax
              Senior Member
              • Feb 2008
              • 7142

              #7
              The file linked by kmcarr does not refer to a "version 10.0" that emanlee was asking for. Perhaps that is not important.

              Comment

              • maubp
                Peter (Biopython etc)
                • Jul 2009
                • 1544

                #8
                OK then... first this is how I just extracted the uniref90.xml file from the FTP site (multiple levels of bundling!):
                Code:
                $ wget ftp://ftp.uniprot.org/pub/databases/uniprot/previous_releases/release10.0/uniref/uniref10.0.tar.gz
                ...
                $ tar -zxvf uniref10.0.tar.gz 
                uniref100.tar
                uniref50.tar
                $ tar -xvf uniref90.tar 
                README
                uniref90.dtd
                uniref90.xml.gz
                $ gunzip uniref90.xml.gz
                And here is what the start of the file looks like for me too (same as emanlee reported):
                Code:
                $ head -n 25 uniref90.xml 
                <?xml version="1.0" encoding="ISO-8859-1" ?>
                <UniRef90 xmlns="http://uniprot.org/uniref" 
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
                xsi:schemaLocation="http://uniprot.org/uniref http://www.uniprot.org/support/docs/uniref.xsd" 
                 releaseDate="2007-03-06" version="10.0"> 
                <entry id="UniRef90_Q3ASY8" updated="2007-03-06">
                <name>Cluster: Parallel beta-helix repeat</name>
                <property type="member count" value="1"/>
                <property type="common taxon" value="Chlorobium chlorochromatii CaD3"/>
                <property type="common taxon ID" value="340177"/>
                <representativeMember>
                <dbReference type="UniProtKB ID" id="Q3ASY8_CHLCH">
                <property type="UniProtKB accession" value="Q3ASY8"/>
                <property type="UniParc ID" value="UPI00005D5563"/>
                <property type="UniRef100 ID" value="UniRef100_Q3ASY8"/>
                <property type="UniRef50 ID" value="UniRef50_Q3ASY8"/>
                <property type="protein name" value="Parallel beta-helix repeat"/>
                <property type="source organism" value="Chlorobium chlorochromatii (strain CaD3)"/>
                <property type="NCBI taxonomy" value="340177"/>
                <property type="length" value="36805"/>
                <property type="isSeed" value="true"/>
                </dbReference>
                <sequence length="36805" checksum="A7A8EA21B9345FF9">
                MKPRFYIEQLEPRILLSGDILSELVPLLSSREASQMQSDYLLEHPEARRVAPLSAVEAAR
                ACMVVVQSEAPSLLTEDGLMYPFEVGVGEERSSEANAEPTLAADFSADYTFSKSEWDALE
                And here's how many records there seem to be according to grep:
                Code:
                $ grep -c "^<entry id" uniref90.xml 
                2781437
                Biopython 1.61 and 1.62 do appear to have a problem parsing this - I suspect the XML is different in some way to what we expect.

                Update: Raised here: http://lists.open-bio.org/pipermail/...er/010909.html
                Last edited by maubp; 09-27-2013, 07:52 AM.

                Comment

                Latest Articles

                Collapse

                • SEQadmin2
                  Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
                  by SEQadmin2


                  Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

                  The systematic characterization of the human proteome has
                  ...
                  07-20-2026, 11:48 AM
                • SEQadmin2
                  Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
                  by SEQadmin2



                  Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
                  ...
                  07-09-2026, 11:10 AM
                • SEQadmin2
                  Cancer Drug Resistance: The Lingering Barrier to Rising Survival
                  by SEQadmin2



                  Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

                  There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
                  07-08-2026, 05:17 AM

                ad_right_rmr

                Collapse

                News

                Collapse

                Topics Statistics Last Post
                Started by SEQadmin2, 07-24-2026, 12:17 PM
                0 responses
                26 views
                0 reactions
                Last Post SEQadmin2  
                Started by SEQadmin2, 07-23-2026, 11:41 AM
                0 responses
                21 views
                0 reactions
                Last Post SEQadmin2  
                Started by SEQadmin2, 07-20-2026, 11:10 AM
                0 responses
                210 views
                0 reactions
                Last Post SEQadmin2  
                Started by SEQadmin2, 07-13-2026, 10:26 AM
                0 responses
                78 views
                0 reactions
                Last Post SEQadmin2  
                Working...