Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Why is this blast script giving me empty tabular output?

    Instead of using an ncbi database, I ran the makeblastdb command on a fasta file I downloaded from ncbi.

    The following script will produce output for me:
    Code:
    #!/bin/bash
    /homes/bioinfo/ncbi-blast-2.2.29+/bin/blastn -db ~/databases/tbd -query ~/databases/even_tribolium.fasta -out output.txt

    However, when I modify the script as follows, I get absolutely no output.
    Code:
    #!/bin/bash
    /homes/bioinfo/ncbi-blast-2.2.29+/bin/blastn -db ~/databases/tbd -query ~/databases/even_tribolium.fasta -out output.txt -evalue 10E-30 -outfmt "6 qseqid sgi sseqid pident length mismatch qstart qend sstart send evalue bitscore staxids"
    Why? I'm really at a loss. I tried removing my -evalue 10E-30 (thinking maybe I was being too stringent), but still blank. I would be extremely grateful for any assistance on this problem.

  • #2
    Were there any hits reported in the output of the first command? If there were no hits at all, I guess the tabular output format will not produce a file.

    Comment


    • #3
      Were there any errors reported when you made the database (DB files are non-zero bytes)? Are query/db composed of nucleotides?

      Comment


      • #4
        Here are the answer to your questions:
        • The first script works with no errors. It produces output.
        • The makedb did produce some errors, but I don't believe this is causing the problem. I have tried this problem on a protein database I made as well and experience the exact same behaviour. The first script gives me output, then the tabular output is blank.



        Code:
        Building a new DB, current time: 06/12/2015 13:25:46
        New DB name:   tbd
        New DB title:  /databases/tribolium-est-transcripts.fasta
        Sequence type: Nucleotide
        Keep Linkouts: T
        Keep MBits: T
        Maximum file size: 1000000000B
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 42% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 42% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 46% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 44% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 48% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 42% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 48% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 44% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 48% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 42% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 44% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 42% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 42% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 42% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 42% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 44% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 42% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 42% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 54% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 44% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 48% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 46% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 42% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 48% ambiguous nucleotides (shouldn't be over 40%)
        Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is a                                                                                                 bout 46% ambiguous nucleotides (shouldn't be over 40%)
        Adding sequences from FASTA; added 18611 sequences in 2.75514 seconds.
        In summary, the first script will work. It will produce the default output. The second script produces the output.txt file, but it is blank. Weird. No error messages is produced when I run the second script.

        Comment


        • #5
          Originally posted by GenoMax View Post
          Were there any errors reported when you made the database (DB files are non-zero bytes)? Are query/db composed of nucleotides?
          The first script would work and produce output. The second script would produce no errors, but a file called output.txt that is empty. There were errors reported when I made the database. The query is a fasta and the db is nucleotide.

          The output is given below:
          Code:
          Building a new DB, current time: 06/12/2015 22:10:13
          New DB name:   tbd
          New DB title:  /databases/tribolium-est-transcripts.fasta
          Sequence type: Nucleotide
          Deleted existing BLAST database with identical name.
          Keep Linkouts: T
          Keep MBits: T
          Maximum file size: 1000000000B
          Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is about 42% ambiguous nucleotides (shouldn't be over 40%)
          Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is about 42% ambiguous nucleotides (shouldn't be over 40%)
          Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is about 46% ambiguous nucleotides (shouldn't be over 40%)
          Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is about 44% ambiguous nucleotides (shouldn't be over 40%)
          Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is about 48% ambiguous nucleotides (shouldn't be over 40%)
          Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is about 42% ambiguous nucleotides (shouldn't be over 40%)
          Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is about 48% ambiguous nucleotides (shouldn't be over 40%)
          Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is about 44% ambiguous nucleotides (shouldn't be over 40%)
          Error: (1431.1) FASTA-Reader: Warning: FASTA-Reader: First data line in seq is about 48% ambiguous nucleotides (shouldn't be over 40%)
          I also tested the same script on a protein db, and I have the exact same problem.

          Comment


          • #6
            Originally posted by hlyates View Post
            Here are the answer to your questions:
            • The first script works with no errors. It produces output.
            I understood that it produces output. But I would like to know if you have any hits at all. If you don't have hits, you won't get any output in the second case.

            How often can you find the phrase "producing significant alignments" in first, default output file?

            Comment


            • #7
              You need to enclose the outfmt options in single quotes (') and not double quotes like you have in your script. Give this a try.

              Code:
              -outfmt '6 qseqid sgi sseqid pident length mismatch qstart qend sstart send evalue bitscore staxids'

              Comment


              • #8
                Hi GenoMax, are you sure about the quote? Because, I'm using the double quote and it works... My blast version is quite old (2.2.25+) but it works with double quotes...

                Actually, do you get an output if you remove the staxids? Because, I do not have this option in my blast version (don't know if it exist in blast 2.2.29)...
                Last edited by SylvainL; 06-15-2015, 02:20 AM.

                Comment


                • #9
                  Originally posted by dschika View Post
                  I understood that it produces output. But I would like to know if you have any hits at all. If you don't have hits, you won't get any output in the second case.

                  How often can you find the phrase "producing significant alignments" in first, default output file?

                  I'm sorry I misunderstood your question earlier. Thank you for the elaboration. Since I used an extremely small fasta file, then it follows that I would also not expect many alignments. In other words, the results were also small. I only had 1 producing significant alignments.

                  Now that being said, I would at least expect to see that output for tabular. I'm still not clear why the second script fails. I hope however, that I helped answer questions you had about my approach. If not, please feel free to ask followup questions.

                  Comment


                  • #10
                    Originally posted by GenoMax View Post
                    You need to enclose the outfmt options in single quotes (') and not double quotes like you have in your script. Give this a try.

                    Code:
                    -outfmt '6 qseqid sgi sseqid pident length mismatch qstart qend sstart send evalue bitscore staxids'
                    Code:
                    $ head lab8output_tabular.txt
                    gi|645685058:1370684-1379063    0       CL3111Contig1   97.78   45      1       5808    5852    1       45      2e-13   78.7    N/A
                    gi|645685058:1370684-1379063    0       CL3747Contig1   89.66   58      5       7069    7126    859     803     1e-11   73.1    N/A
                    gi|645685058:1370684-1379063    0       gi|75720587|gb|DT788599.1|DT788599      94.29   35      2       7069    7103    47      81      4e-06   54.7       N/A
                    This worked. My question is simple. Why? I thought " and ' were equivalent in ncbi blast? Thanks sir.

                    Comment


                    • #11
                      Funny it worked. Good news at least... Maybe it depends on the version?

                      Comment

                      Latest Articles

                      Collapse

                      • seqadmin
                        Current Approaches to Protein Sequencing
                        by seqadmin


                        Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
                        04-04-2024, 04:25 PM
                      • seqadmin
                        Strategies for Sequencing Challenging Samples
                        by seqadmin


                        Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
                        03-22-2024, 06:39 AM

                      ad_right_rmr

                      Collapse

                      News

                      Collapse

                      Topics Statistics Last Post
                      Started by seqadmin, 04-11-2024, 12:08 PM
                      0 responses
                      25 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 04-10-2024, 10:19 PM
                      0 responses
                      28 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 04-10-2024, 09:21 AM
                      0 responses
                      24 views
                      0 likes
                      Last Post seqadmin  
                      Started by seqadmin, 04-04-2024, 09:00 AM
                      0 responses
                      52 views
                      0 likes
                      Last Post seqadmin  
                      Working...
                      X