Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Using Bowtie2 for to align paired end reads

    Hi all,

    Someone in our lab just got finished with sequencing and assembly of a number of contigs. The question was asked, whether or not she found HiSeq to be useful, or if we could use MiSeq in the future.

    I thought if I could align the reads onto her contigs, then we could assess the coverage, and possibly whether or not HiSeq was necessary.

    I found that Bowtie allows you to align short reads to a reference sequence.

    I concatenated the FASTA files for all the contigs and successfully made a bowtie2 index from the file.

    Now, I'm trying to map the paired-end reads onto the index:

    Code:
    ./bowtie2 -S -p 2 DscP_kaster -1 KM01_GW1_TAAGGCGA_L005_R1_001.fastq -2 KM01_GW1_TAAGGCGA_L005_R2_001.fastq KM01_bowtie.sam
    but keep coming up with the error

    Code:
    bowtie2-align exited with value 1
    What am I doing wrong?

  • #2
    Try change the order of the option -S to the end, immediately before your sam file name, i.e.

    do the following:


    ./bowtie2 -p 2 DscP_kaster -1 KM01_GW1_TAAGGCGA_L005_R1_001.fastq -2 KM01_GW1_TAAGGCGA_L005_R2_001.fastq -S KM01_bowtie.sam

    Comment


    • #3
      Hmm. I'm still getting the same error. Is there anything I can do to troubleshoot?

      Comment


      • #4
        I'm not sure, but do you need to add the "-x" flag indicating an index?

        Gavin

        Comment


        • #5
          As Gavin suggested, you need to tell it what index to use:
          Code:
          bowtie2 -p 2 -x SOMEINDEX -1 KM01_GW1_TAAGGCGA_L005_R1_001.fastq -2 KM01_GW1_TAAGGCGA_L005_R2_001.fastq -S KM01_bowtie.sam
          The index files themselves are built with bowtie2-build.

          Comment


          • #6
            That was the problem! Thank you! The tutorials I found said nothing about having the -x

            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
            18 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 04-10-2024, 10:19 PM
            0 responses
            22 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 04-10-2024, 09:21 AM
            0 responses
            17 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 04-04-2024, 09:00 AM
            0 responses
            49 views
            0 likes
            Last Post seqadmin  
            Working...
            X