Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Bowtie: ?'s about h_sapiens_37_asm index/outputs

    Hello,

    1)
    I have a questions about bowtie's "h_sapiens_37_asm" index.
    For the human genome, the concise reference sequences are numbered 0 to 24. I
    assume these numbers represent chromosomes. Is 0 chromosome 1? What about X,
    Y, and the M?

    bowtie -z -f h_sapiens_37asm --concise reads/seq_human.fa human_map

    2)
    I am also confused about the localization of the 5' end of the read.

    According to the dafault output description, the fourth column shows the
    "0-based offset into the forward reference strand where leftmost character of
    the alignment occurs."

    If you don't use the concise option ...

    if a read is mapped 5' to 3' from position 1000 to 1035,
    the fourth column should be 1000, right?

    If a read is mapped 5' to 3' from position 1035 to 1000,
    will the fourth column be 1035 or 1000?
    I think this means the fourth column will be 1000.
    If this is the case, is there an "option" so that I can make it 1035 instead of 1000?

    Thanks,
    Clayton

  • #2
    Hi Clayton,

    Sorry - I saw your email and meant to reply immediately but it's probably better to reply here anyway...

    Originally posted by cutcopy11 View Post
    1)
    I have a questions about bowtie's "h_sapiens_37_asm" index.
    For the human genome, the concise reference sequences are numbered 0 to 24. I
    assume these numbers represent chromosomes. Is 0 chromosome 1? What about X,
    Y, and the M?

    bowtie -z -f h_sapiens_37asm --concise reads/seq_human.fa human_map
    It's 0=chr1, 1=chr2, ..., 21=chr22, 22=X, 23=Y, 24=MT. Not wanting anyone to have to contend with these numbers is one of the reasons I'm likely to deprecate --concise soon (I've already deprecated -b/--bin).

    Originally posted by cutcopy11 View Post
    2)
    I am also confused about the localization of the 5' end of the read.

    According to the dafault output description, the fourth column shows the
    "0-based offset into the forward reference strand where leftmost character of
    the alignment occurs."

    If you don't use the concise option ...

    if a read is mapped 5' to 3' from position 1000 to 1035,
    the fourth column should be 1000, right?

    If a read is mapped 5' to 3' from position 1035 to 1000,
    will the fourth column be 1035 or 1000?
    I think this means the fourth column will be 1000.
    If this is the case, is there an "option" so that I can make it 1035 instead of 1000?

    Thanks,
    Clayton
    You're right that it will be 1000 in both cases. There's no option to invert that for reads on the reverse strand, but it's easy to convert Bowtie's output to your desired output with a little postprocessing. An example:

    $ ./bowtie --quiet -c e_coli GGTGCGTTACTGTGGCACTTCGNCCTGATGTGGAT,GCATTTTTTTCGCCAGCCAGGCTTTCGCTTTGGGT
    0 - gi|110640213|ref|NC_008253.1| 4769855 ATCCACATCAGGNCGAAGTGCCACAGTAACGCACC IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII 0 22:G>N
    1 + gi|110640213|ref|NC_008253.1| 2365447 GCATTTTTTTCGCCAGCCAGGCTTTCGCTTTGGGT IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII 0
    $ ./bowtie --quiet -c e_coli GGTGCGTTACTGTGGCACTTCGNCCTGATGTGGAT,GCATTTTTTTCGCCAGCCAGGCTTTCGCTTTGGGT | awk -v OFS='\t' '{if($2 == "-") {$4 += (length($5)-1)} ; print $0}'
    0 - gi|110640213|ref|NC_008253.1| 4769889 ATCCACATCAGGNCGAAGTGCCACAGTAACGCACC IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII 0 22:G>N
    1 + gi|110640213|ref|NC_008253.1| 2365447 GCATTTTTTTCGCCAGCCAGGCTTTCGCTTTGGGT IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII 0
    Ben

    Comment


    • #3
      Thanks Ben

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Recent Advances in Sequencing Analysis Tools
        by seqadmin


        The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
        Today, 07:48 AM
      • 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...
        04-22-2024, 07:01 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, Today, 07:17 AM
      0 responses
      11 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 05-02-2024, 08:06 AM
      0 responses
      19 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-30-2024, 12:17 PM
      0 responses
      20 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-29-2024, 10:49 AM
      0 responses
      28 views
      0 likes
      Last Post seqadmin  
      Working...
      X