Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • seqan
    replied
    Hi all,

    Sorry to resurrect this topic, but my workflow depends on Bowtie (not Bowtie2) so I'd like to ask for an advice on the following issue:

    In a couple of published paired-end datasets, I encountered a problem that long reads are being mapped OK, but reads shorter than 100 bp in one dataset (or shorter than 150 bp in another dataset) don't get mapped. I am using Bowtie with the following parameters:

    -t -v 2 -m 1 --solexa-quals hg19 -1 [reads file 1] -2 [reads file 2]

    Could you please suggest what's going wrong?

    Thanks!

    Leave a comment:


  • Arpitha
    replied
    Nice work Ben. Happy to that im here!

    Leave a comment:


  • dpryan
    replied
    I'm obviously not Ben, but "--un unmapped.fastq" or "--un sample.unmapped.fastq" or something along those lines would be common. Pick a name that makes sense to you, it doesn't matter what it is.

    Leave a comment:


  • fereshteh
    replied
    Hi Ben,
    really happy that i can talk with you here because at first when i was working with bowtie2 i asked myself how much you can be clever that created bowtie and how much i am not who cant run bowtie properly...
    anyway i have a question about --un option:
    if i want to separate mapped and unmapped reads when aligning, which code i should type???
    bowtie2 -x [name of the bowtie2-build indicized file containing the rRNA sequence] --un [name of the fastq file which will contain the UNMAPPED reads] -U [name of the fastq file containing the reads] -S [name of the .sam file that will contain the MAPPED and UNMAPPED reads]
    I could not understand about --un option because i don't know which i should type instead of [name of the fastq file which will contain the UNMAPPED reads]

    Leave a comment:


  • TiborNagy
    replied
    This means something is wrong with you csfasta or quality file.

    Leave a comment:


  • Guest
    Guest replied
    Hi everybody!

    I starting using bowtie today, i wanted to align csfasta + qual file width the bowtie.
    I build the reference fasta file width the bowtie-build, after that i try to align the csfasta+qual file to the reference file(s), but i have error massege.
    The bowtie-build command:
    bowtie-build -C reference_genom.fa ref/reference_genom
    The bowtie command:
    bowtie -C ref/reference_genom -f read.csfasta -Q quality.qual -S align.sam
    And the error command with my bowtie commnad:
    bowtie -C ref/reference_genom -f read.csfasta -Q quality.qual -S align.sam
    /usr/include/seqan/sequence/string_base.h:237 Assertion failed : static_cast<TStringPos>(pos) < static_cast<TStringPos>(length(me)) was: 48 >= 48 (Trying to access an element behind the last one!)
    Aborted
    The csfasta file contains only short reads, every sequances are 50 bp long.

    My question is that what is the error mean? I try to search this error message but don't found anything.
    I installed the bowtie width the following way:
    sudo apt-get install bowtie
    I really appreciate any help/answer.
    Thank you!
    Last edited by Guest; 04-03-2014, 08:34 AM.

    Leave a comment:


  • dpryan
    replied
    Originally posted by sparks View Post
    Agree you can merge Bowtie and calculate a vague alignment quality. Perhaps you can give Angie the formulae for it.
    Inputs are the AS and XS score of the resulting best hit (the XS score may be the AS score of the second best hit, that is the alignment to the other chunk of the reference). scMin is the minimum score for a given read (this is derived from the --score-min option given as input). I have a function to calculate this, but it depends on previously parsing user input and storing things in a struct that's specific to bison (so that function wouldn't be very useful), so I won't paste it below. This is basically a C version of what bowtie2 uses (complete with casting single-precision floats to double precision).

    Oh, the config.mode just denotes --end-to-end or --local. You'd need to change that to be a function input rather than relying on a global struct I think the remainder should work, though!

    Code:
    /******************************************************************************
    *
    *   Calculate a MAPQ, given AS, XS, and the minimum score (ala bowtie2)
    *
    *******************************************************************************/
    int calc_MAPQ_BT2(int AS, int XS, int scMin) {
        int diff, bestOver, bestdiff;
        diff = abs(scMin); //Range of possible alignment scores
        bestOver = AS-scMin; //Shift alignment score range, so worst score is 0
    
        //The method depends on config.mode
        bestdiff = (int) abs(abs((float) AS)-abs((float) XS)); //Absolute distance between alignment scores
        if(config.mode == 0) { //--end-to-end (default)
            if(XS < scMin) {
                if(bestOver >= diff * (double) 0.8f) return 42;
                else if(bestOver >= diff * (double) 0.7f) return 40;
                else if(bestOver >= diff * (double) 0.6f) return 24;
                else if(bestOver >= diff * (double) 0.5f) return 23;
                else if(bestOver >= diff * (double) 0.4f) return 8;
                else if(bestOver >= diff * (double) 0.3f) return 3;
                else return 0;
            } else {
                if(bestdiff >= diff * (double) 0.9f) {
                    if(bestOver == diff) {
                        return 39;
                    } else {
                        return 33;
                    }
                } else if(bestdiff >= diff * (double) 0.8f) {
                    if(bestOver == diff) {
                        return 38;
                    } else {
                        return 27;
                    }
                } else if(bestdiff >= diff * (double) 0.7f) {
                    if(bestOver == diff) {
                        return 37;
                    } else {
                        return 26;
                    }
                } else if(bestdiff >= diff * (double) 0.6f) {
                    if(bestOver == diff) {
                        return 36;
                    } else {
                        return 22;
                    }
                } else if(bestdiff >= diff * (double) 0.5f) {
                    if(bestOver == diff) {
                        return 35;
                    } else if(bestOver >= diff * (double) 0.84f) {
                        return 25;
                    } else if(bestOver >= diff * (double) 0.68f) {
                        return 16;
                    } else {
                        return 5;
                    }
                } else if(bestdiff >= diff * (double) 0.4f) {
                   if(bestOver == diff) {
                        return 34;
                    } else if(bestOver >= diff * (double) 0.84f) {
                        return 21;
                    } else if(bestOver >= diff * (double) 0.68f) {
                        return 14;
                    } else {
                        return 4;
                    }
                } else if(bestdiff >= diff * (double) 0.3f) {
                    if(bestOver == diff) {
                        return 32;
                    } else if(bestOver >= diff * (double) 0.88f) {
                        return 18;
                    } else if(bestOver >= diff * (double) 0.67f) {
                        return 15;
                    } else {
                        return 3;
                    }
                } else if(bestdiff >= diff * (double) 0.2f) {
                    if(bestOver == diff) {
                        return 31;
                    } else if(bestOver >= diff * (double) 0.88f) {
                        return 17;
                    } else if(bestOver >= diff * (double) 0.67f) {
                        return 11;
                    } else {
                        return 0;
                    }
                } else if(bestdiff >= diff * (double) 0.1f) {
                    if(bestOver == diff) {
                        return 30;
                    } else if(bestOver >= diff * (double) 0.88f) {
                        return 12;
                    } else if(bestOver >= diff * (double) 0.67f) {
                        return 7;
                    } else {
                        return 0;
                    }
                } else if(bestdiff > 0) {
                    if(bestOver >= diff * (double) 0.67f) {
                        return 6;
                    } else {
                        return 2;
                    }
                } else {
                    if(bestOver >= diff * (double) 0.67f) {
                        return 1;
                    } else {
                        return 0;
                    }
                }
            }
        } else { //--local
            if(XS < scMin) {
                if(bestOver >= diff * (double) 0.8f) return 44;
                else if(bestOver >= diff * (double) 0.7f) return 42;
                else if(bestOver >= diff * (double) 0.6f) return 41;
                else if(bestOver >= diff * (double) 0.5f) return 36;
                else if(bestOver >= diff * (double) 0.4f) return 28;
                else if(bestOver >= diff * (double) 0.3f) return 24;
                else return 22;
            } else {
                if(bestdiff >= diff * (double) 0.9f) return 40;
                else if(bestdiff >= diff * (double) 0.8f) return 39;
                else if(bestdiff >= diff * (double) 0.7f) return 38;
                else if(bestdiff >= diff * (double) 0.6f) return 37;
                else if(bestdiff >= diff * (double) 0.5f) {
                    if     (bestOver == diff)       return 35;
                    else if(bestOver >= diff * (double) 0.5f) return 25;
                    else                            return 20;
                } else if(bestdiff >= diff * (double) 0.4f) {
                    if     (bestOver == diff)       return 34;
                    else if(bestOver >= diff * (double) 0.5f) return 21;
                    else                            return 19;
                } else if(bestdiff >= diff * (double) 0.3f) {
                    if     (bestOver == diff)       return 33;
                    else if(bestOver >= diff * (double) 0.5f) return 18;
                    else                            return 16;
                } else if(bestdiff >= diff * (double) 0.2f) {
                    if     (bestOver == diff)       return 32;
                    else if(bestOver >= diff * (double) 0.5f) return 17;
                    else                            return 12;
                } else if(bestdiff >= diff * (double) 0.1f) {
                    if     (bestOver == diff)       return 31;
                    else if(bestOver >= diff * (double) 0.5f) return 14;
                    else                            return 9;
                } else if(bestdiff > 0) {
                    if(bestOver >= diff * (double) 0.5f)      return 11;
                    else                            return 2;
                } else {
                    if(bestOver >= diff * (double) 0.5f)      return 1;
                    else                            return 0;
                }
            }
        }
    }
    Last edited by dpryan; 02-11-2014, 08:31 AM. Reason: Slightly incorrect code

    Leave a comment:


  • sparks
    replied
    Agree you can merge Bowtie and calculate a vague alignment quality. Perhaps you can give Angie the formulae for it.

    Originally posted by dpryan View Post
    While using BWA or Novoalign are certainly the better solutions, one can relatively simply recalculate MAPQs from multiple alignment files to different references with bowtie. The bowtie MAPQ score is dependent primarily on the AS:i: and XS:i: score of each read, so you can just rerun the algorithm on that (bowtie MAPQs are more of a vague approximation than you may think). This is the approach I took in bison, where there are multiple parallel alignments of each read to different bisulfite converted genomes.

    Leave a comment:


  • dpryan
    replied
    Originally posted by sparks View Post
    Hi Angie,

    I think if you use split reference you'll have issues calculating the alignment quality of the best alignment during the merge, it's a bit more complicated than just selecting the best alignment.
    You will likely get more accurate alignment qualities if you don't split the reference and instead use an aligner like BWA or Novoalign that can handle genomes >4Gbp.

    KR, Colin
    While using BWA or Novoalign are certainly the better solutions, one can relatively simply recalculate MAPQs from multiple alignment files to different references with bowtie. The bowtie MAPQ score is dependent primarily on the AS:i: and XS:i: score of each read, so you can just rerun the algorithm on that (bowtie MAPQs are more of a vague approximation than you may think). This is the approach I took in bison, where there are multiple parallel alignments of each read to different bisulfite converted genomes.

    Leave a comment:


  • angie_red
    replied
    Thanks for the reply Colin and rshina. As suggested I have indexed the reference without splitting it with BWA so I will proceed with this approach
    Cheers
    Angela

    Leave a comment:


  • sparks
    replied
    Reply to thread 'Bowtie, an ultrafast, memory-efficient, open source short read align

    Hi Angie,

    I think if you use split reference you'll have issues calculating the alignment quality of the best alignment during the merge, it's a bit more complicated than just selecting the best alignment.
    You will likely get more accurate alignment qualities if you don't split the reference and instead use an aligner like BWA or Novoalign that can handle genomes >4Gbp.

    KR, Colin

    Originally posted by angie_red View Post
    Hi Ben,
    Sorry to resurrect an old post. I am getting the error Error: Reference sequence has more than 2^32-1 characters!. I know this means I need to split my reference in order to use bowtie2-build but I am wondering about mapping my reads to this reference which has been split. Is it possible to concatenate the split-indexed files and map the reads to this concatenated file or will I have to map the reads to each indexed files separately and write scripts to find which has the best hit.
    Thank you
    Angela

    Leave a comment:


  • rsinha
    replied
    Bowtie2

    I think you need to map your reads to divided indexes and then write script to bring them together.

    Leave a comment:


  • angie_red
    replied
    Hi Ben,
    Sorry to resurrect an old post. I am getting the error Error: Reference sequence has more than 2^32-1 characters!. I know this means I need to split my reference in order to use bowtie2-build but I am wondering about mapping my reads to this reference which has been split. Is it possible to concatenate the split-indexed files and map the reads to this concatenated file or will I have to map the reads to each indexed files separately and write scripts to find which has the best hit.
    Thank you
    Angela

    Leave a comment:


  • subkhankul
    replied
    Dear Ben,
    Why is the last version of Bowtie using the mm9 rather than mm10?
    What is better Bowtie or Bowtie2 for alighment of 50 nt HiSeq Illumina ChIP-Seq redas?
    I have read that Bowtie is good for short reads up to 100 nt, but Bowtie2 from 50 nt and higher. Still 50 nt reads are on the border for the programms.
    If Bowtie2 is used, how to get rid of ununique reads?
    Many thanks in advance

    Leave a comment:


  • GenoMax
    replied
    Originally posted by sahiilseth View Post
    From Bowtie website:
    They also say:
    'If your computer has more than 3-4 GB of memory and you would like to exploit that fact to make index building faster, use a 64-bit version of the bowtie2-build binary. The 32-bit version of the binary is restricted to using less than 4 GB of memory. If a 64-bit pre-built binary does not yet exist for your platform on the sourceforge download site, you will need to build one from source.'

    I thought 64 bit binary, should be able to handle more characters as well; not true?
    That reference is only for being able to use more memory during the index building stage to speed that process up.

    Leave a 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...
    05-06-2024, 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, Yesterday, 06:35 AM
0 responses
15 views
0 likes
Last Post seqadmin  
Started by seqadmin, 05-09-2024, 02:46 PM
0 responses
21 views
0 likes
Last Post seqadmin  
Started by seqadmin, 05-07-2024, 06:57 AM
0 responses
18 views
0 likes
Last Post seqadmin  
Started by seqadmin, 05-06-2024, 07:17 AM
0 responses
19 views
0 likes
Last Post seqadmin  
Working...
X