Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Confusion about the use of Bowtie software

    I am a new user of the Bowtie software.
    For this software, there are so many option parameter settings, so which options should we usually consider or choose?
    Thanks.

  • #2
    Let's try a simple case first: a single-ended alignment using mostly default parameters.

    First you need to convert your reference genome to a bowtie index -- for example:

    cd ~/references
    bowtie-build B-pertussis.fa B-pertussis

    ... starting with the .fa in your ~/references directory.

    Then tell bowtie the directory where references reside:

    export BOWTIE_INDEXES=~/references

    Then run the alignment. You need to decide how many bases you want bowtie to consider. If you want it to use all the bases in the read, just do:

    bowtie -v 3 --best B-pertussis reads.fastq

    That will ask bowtie to give you the single best (fewest mismatches) alignment with <= 3 mismatches.

    Alternatively, if you want to ignore some of the less-reliable bases towards the end of the read, you could do:

    bowtie -l 32 -n 3 --best B-pertussis reads.fastq

    (-l = first character of 'lemon'). That will cause bowtie to align using only the first (5'-end) 32 bases. Errors in the other bases will be reported, but they don't count towards the <= 3 mismatches.

    The output produced by bowtie is documented in the 'bowtie --help' output. There is some confusion over forward/reverse strand reporting and numbering. What I found best there was just to stare at enough examples until I could make sense of what I was looking at.

    Good luck.

    --TS

    Comment

    Latest Articles

    Collapse

    • seqadmin
      Essential Discoveries and Tools in Epitranscriptomics
      by seqadmin


      The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist on Modified Bases...
      Today, 07:01 AM
    • 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

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, 04-11-2024, 12:08 PM
    0 responses
    37 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 10:19 PM
    0 responses
    41 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 09:21 AM
    0 responses
    35 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-04-2024, 09:00 AM
    0 responses
    54 views
    0 likes
    Last Post seqadmin  
    Working...
    X