Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • seq_GA
    Senior Member
    • Feb 2009
    • 124

    BWA error

    I am trying to map solexa pair end reads using BWA.
    1. As the first step, I converted solexa fastq format into sanger fastq using maq.
    Code:
    maq-0.7.1/maq sol2sanger s_5_2_sequence.txt s_5_2_fastq.txt
    2. I build the indices for BWA for human genome
    Code:
    BWA/bwa-0.5.6/bwa index -a bwtsw -p hg18 hg18.fa
    3. Next step is to generate suffice array coordiantes for read1 as below:
    Code:
     BWA/bwa-0.5.6/bwa aln /BWA/Genomes/hg18/hg18.fa s_5_1_fastq.txt > s_5_1.sai
    I am getting error as below.
    Code:
    [bwa_aln] 17bp reads: max_diff = 2
    [bwa_aln] 38bp reads: max_diff = 3
    [bwa_aln] 64bp reads: max_diff = 4
    [bwa_aln] 93bp reads: max_diff = 5
    [bwa_aln] 124bp reads: max_diff = 6
    [bwa_aln] 157bp reads: max_diff = 7
    [bwa_aln] 190bp reads: max_diff = 8
    [bwa_aln] 225bp reads: max_diff = 9
    [bwt_restore_bwt] fail to open file '/BWA/Genomes/hg18/hg18.fa.bwt'. Abort!
    Aborted
    I have all the fasta as well as built indices under the same directory as below:
    hg18.fa
    hg18.pac
    hg18.ann
    hg18.amb
    hg18.rpac
    hg18.bwt
    hg18.rbwt
    hg18.sa
    hg18.rsa

    Anything wrong with this or do I have to move hg18.fa out of this directory? Thanks.
  • nilshomer
    Nils Homer
    • Nov 2008
    • 1283

    #2
    If you used "hg18" as your prefix in your "bwa index" step, you should use the same prefix in your "bwa aln" step:
    Code:
     BWA/bwa-0.5.6/bwa aln /BWA/Genomes/hg18/hg18 s_5_1_fastq.txt > s_5_1.sai
    Ideally, you would not specify "-p" (unless of course you use both Illumina and ABI SOLiD data).

    Comment

    • seq_GA
      Senior Member
      • Feb 2009
      • 124

      #3
      Thanks and it works.

      Comment

      • seq_GA
        Senior Member
        • Feb 2009
        • 124

        #4
        For a pair end read, I tried as below:
        Code:
        BWA/bwa-0.5.6/bwa aln /BWA/Genomes/hg18/hg18 s_5_1_fastq.txt > s_5_1.sai
        BWA/bwa-0.5.6/bwa aln /BWA/Genomes/hg18/hg18 s_5_2_fastq.txt > s_5_2.sai
        
        BWA/bwa-0.5.6/bwa sampe BWA/Genomes/hg18/hg18 s_5_1.sai s_5_2.sai s_5_1_fastq.txt s_5_2_fastq.txt > out.sam
        I get the following error:
        Code:
        [bwa_read_seq] 0.0% bases are trimmed.
        [bwa_read_seq] 0.0% bases are trimmed.
        [bwa_sai2sam_pe_core] convert to sequence coordinate... 
         Segmentation fault
        How to resolve the issue? Thanks.
        Last edited by seq_GA; 05-24-2010, 09:26 PM.

        Comment

        • nilshomer
          Nils Homer
          • Nov 2008
          • 1283

          #5
          Originally posted by seq_GA View Post
          For a pair end read, I tried as below:
          Code:
          BWA/bwa-0.5.6/bwa aln /BWA/Genomes/hg18/hg18 s_5_1_fastq.txt > s_5_1.sai
          BWA/bwa-0.5.6/bwa aln /BWA/Genomes/hg18/hg18 s_5_2_fastq.txt > s_5_2.sai
          
          BWA/bwa-0.5.6/bwa sampe BWA/Genomes/hg18/hg18 s_5_1.sai s_5_2.sai s_5_1_fastq.txt s_5_2_fastq.txt > out.sam
          I get the following error:
          Code:
          [bwa_read_seq] 0.0% bases are trimmed.
          [bwa_read_seq] 0.0% bases are trimmed.
          [bwa_sai2sam_pe_core] convert to sequence coordinate...
          How to resolve the issue? Thanks.
          What's the error (the above is a status message)? Did it not finish?

          Comment

          • seq_GA
            Senior Member
            • Feb 2009
            • 124

            #6
            I was trying to edit my post.. You are too fast.. Anyway I get segmentation fault. Thanks.

            Comment

            • nilshomer
              Nils Homer
              • Nov 2008
              • 1283

              #7
              Originally posted by seq_GA View Post
              I was trying to edit my post.. You are too fast.. Anyway I get segmentation fault. Thanks.
              Sounds like a bug. Did you try sending an email to the BWA mailing list or author (lh3 is his handle on seqanswers)?

              Comment

              • seq_GA
                Senior Member
                • Feb 2009
                • 124

                #8
                I am not able to join the mailing list and post because of some error.
                I am trying to contenate all fasta of hg18 as hg18.fa and then build index. Anything wrong in that approach?

                Comment

                • drio
                  Senior Member
                  • Oct 2008
                  • 323

                  #9
                  Originally posted by seq_GA View Post
                  I am not able to join the mailing list and post because of some error.
                  I am trying to contenate all fasta of hg18 as hg18.fa and then build index. Anything wrong in that approach?
                  You are using an old version of bwa. Please update to -svn or get the latest release.
                  -drd

                  Comment

                  • seq_GA
                    Senior Member
                    • Feb 2009
                    • 124

                    #10
                    Hi,
                    Thx for the response. I am using bwa-0.5.6 and I am upgrading to latest version available bwa-0.5.7. How to check out the version from svn? Can you please provide me the link? Thanks.

                    Comment

                    • nilshomer
                      Nils Homer
                      • Nov 2008
                      • 1283

                      #11
                      Originally posted by seq_GA View Post
                      Hi,
                      Thx for the response. I am using bwa-0.5.6 and I am upgrading to latest version available bwa-0.5.7. How to check out the version from svn? Can you please provide me the link? Thanks.
                      Here's the command. Make sure you have subversion installed:
                      Code:
                      svn co http://bio-bwa.svn.sourceforge.net/svnroot/bio-bwa bio-bwa

                      Comment

                      • seq_GA
                        Senior Member
                        • Feb 2009
                        • 124

                        #12
                        Thx for the info.

                        Comment

                        • drio
                          Senior Member
                          • Oct 2008
                          • 323

                          #13
                          Originally posted by seq_GA View Post
                          Hi,
                          Thx for the response. I am using bwa-0.5.6 and I am upgrading to latest version available bwa-0.5.7. How to check out the version from svn? Can you please provide me the link? Thanks.
                          If you want to avoid svn (I'd suggest you don't), from here:



                          click in SF download page. That will take you to the latest release (already binary).

                          ALso, perhaps you can tell Heng how you got to the older version. I think there are some links there that still point to old versions.
                          -drd

                          Comment

                          • seq_GA
                            Senior Member
                            • Feb 2009
                            • 124

                            #14
                            Hi,
                            i get the same error even if I use the build from svn..

                            Comment

                            • drio
                              Senior Member
                              • Oct 2008
                              • 323

                              #15
                              Run your binary via gdb:

                              Code:
                              $ gdb your_bwa_binary
                              .... gdb output ... 
                              > run sampe BWA/Genomes/hg18/hg18 s_5_1.sai s_5_2.sai s_5_1_fastq.txt s_5_2_fastq.txt > out.sam
                              .... gdb output ....
                              > bt
                              And show us the output.
                              -drd

                              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
                              29 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
                              211 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...