Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • doxologist
    Member
    • Jan 2009
    • 96

    Eland for different sizes

    We are working with sequences that have different lengths... 32, 31, 30 etc in one run. Does anyone know how to run Eland to allow for different lengths or do I have to run multiple times for each specified length?
  • seq_GA
    Senior Member
    • Feb 2009
    • 124

    #2
    I think the basic criteria for eland is the query sequences should be of same length in the first place.

    Comment

    • doxologist
      Member
      • Jan 2009
      • 96

      #3
      thanks... that's what I thought... just wanted to know if someone had a better hackish way of doing different lengths... than what I have now of running it multiple times.

      Comment

      • apfejes
        Senior Member
        • Feb 2008
        • 236

        #4
        We used to do that - run multiple times. Back when we ran eland, it used to require a separate compiled version for each sequence length, although that has probably changed in the meantime, so at that point there was no way it could be done.
        The more you know, the more you know you don't know. —Aristotle

        Comment

        • doxologist
          Member
          • Jan 2009
          • 96

          #5
          so from your answer, you no longer do that?

          how do you deal with different lengths now?

          currently, we do a combination of multiple Eland runs and Bowtie... but for some things, Eland output is more suited for our needs.

          Comment

          • apfejes
            Senior Member
            • Feb 2008
            • 236

            #6
            You're right - we don't do that anymore. We used to do it because the tail end of eland reads was more error prone, so we'd sequentially strip each fragment down by 2 bases at a time, and then take the longest that would align. Now, we use aligners that take the quality into account, and can do more mismatches, so it's really unnecessary.

            From my own personal experience with bowtie, I found it to be unreliable - it missed a lot of alignments, and Eland just wasn't flexible enough, so we've mainly moved to maq. (with a few other aligners fitting in to particular roles that they do well.) I understand that the author of maq is now moving to a new aligner (bwa), which uses the same burrows-wheeler algorithm as bowtie, but should be a better implementation. I haven't tried it yet, but you might want to check that out.

            As for sequences of different lengths, I think maq should be able to handle those without any fancy tricks. However, if you want to do Eland, my best guess would be to write a parser that separates the reads (and the supporting files, if you use them) into independent files, which each have their own read-length, and then align each one individually. Personally, that sounds like a rather painful way to do it...

            Good luck.
            The more you know, the more you know you don't know. —Aristotle

            Comment

            • doxologist
              Member
              • Jan 2009
              • 96

              #7
              thanks... that's lot of good info.

              about the Eland with different lengths... yeah... the parser painful method is what we do now.

              the new bwa sounds exciting...
              in terms of bowtie missing A LOT of alignments... what do you mean by that?

              Comment

              • apfejes
                Senior Member
                • Feb 2008
                • 236

                #8
                Originally posted by doxologist View Post
                in terms of bowtie missing A LOT of alignments... what do you mean by that?
                I ran the same input files over the same scaffolds with bowtie and with maq, and got MANY fewer hits with bowtie. It may have had to do with the organism only having a draft reference or something, or the sheer number of scaffolds it had, but whatever it was, the number of hits dropped dramatically.

                Anecdotally, I've heard the same thing from other people who've used it as well. I don't want to suggest it's a bad application - it's a giant leap forward in many respects, but I suspect the implementation needs some fine tuning.
                The more you know, the more you know you don't know. —Aristotle

                Comment

                • doxologist
                  Member
                  • Jan 2009
                  • 96

                  #9
                  hmm... interesting. I've asked the question at the Bowtie thread... we'll see if other people have similar experiences.

                  about Bowtie being a huge leap.. no doubt. if imitation is the best compliment... it's getting a large number of compliments... SOAP2, bwa, etc.

                  Comment

                  • apfejes
                    Senior Member
                    • Feb 2008
                    • 236

                    #10
                    I'll be very interested to hear what people have to say on the issue. I'm a big fan of bowtie, so if it turns out I was just doing something wrong, I'd love to know.

                    Anthony
                    The more you know, the more you know you don't know. —Aristotle

                    Comment

                    • doxologist
                      Member
                      • Jan 2009
                      • 96

                      #11
                      This is what Ben responded:
                      The circumstances under which Bowtie might miss alignments that are "valid" according to its alignment policy are outlined in the manual (see last paragraph of section "Maq-like Policy"). These misses only occur in -n 2 and -n 3 modes, and they can be avoided by increasing the --maxbts parameter (at the cost of some speed). Unless your read data is very low quality, the fraction of reads missed due to the backtracking limit in -n 2 mode is generally very small (<1%).

                      Note that when you run 'maq' with -n 2 option (the default), it will find some alignments that actually have 3 mismatches in the seed. Bowtie will *not* report alignments with 3 mismatches in the seed unless -n 3 is specified. It's likely that this is the source of the difference that the anecdotal reports are referring to.

                      Comment

                      • apfejes
                        Senior Member
                        • Feb 2008
                        • 236

                        #12
                        Thanks - that doesn't seem to describe what I saw, or what was reported to me, but, as I said, it's quite possible that I did something wrong when I used it.

                        Edit: I should also add that I have been doing a lot of Paired End Tag sequencing lately, which is not yet supported by Bowtie - so there were other reasons for staying with Maq. I don't want to make it sound like this was the only reason we didn't stick with Bowtie.
                        Last edited by apfejes; 02-13-2009, 01:35 PM. Reason: For clarity.
                        The more you know, the more you know you don't know. —Aristotle

                        Comment

                        • doxologist
                          Member
                          • Jan 2009
                          • 96

                          #13
                          I agree... I think the added functionality and versatility are the main reasons that people are sticking with MAQ. I remember reading Heng's comment somewhere that he wanted to emphasize that. I'm excited about how the SAM format would hopefully makes programs more able to talk to each other and more functional.

                          Comment

                          • apfejes
                            Senior Member
                            • Feb 2008
                            • 236

                            #14
                            I'm also excited about the SAM format, as well, although the prospect of implementing it in Java is quite terrifying - particularly with the claim in the SAMTools manual that explicitly states that Java doesn't support multipart gzip files...

                            I'm sure it'll be a challenge!
                            The more you know, the more you know you don't know. —Aristotle

                            Comment

                            • lh3
                              Senior Member
                              • Feb 2008
                              • 686

                              #15
                              Broad will upload SAMtools Java APIs in a few days.

                              Comment

                              Latest Articles

                              Collapse

                              • SEQadmin2
                                From Collection to Sequencing: Why Sample Preparation and Preservation Define Sequencing Data
                                by SEQadmin2


                                Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.


                                The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
                                ...
                                06-02-2026, 10:05 AM
                              • SEQadmin2
                                Single-Cell Sequencing at an Inflection Point: Early Impacts of New Platforms and Emerging Trends
                                by SEQadmin2


                                With the launch of new single-cell sequencing platforms in 2026, the field stands at an exciting inflection point. This article surveys the most impactful advances in the field and discusses how they’re reshaping research in cancer, immunology, and beyond.


                                Introduction

                                Single-cell sequencing technologies have undergone remarkable advances over the past decade, transitioning from low-throughput experimental approaches to highly scalable platforms capable of...
                                05-22-2026, 06:42 AM
                              • SEQadmin2
                                Environmental Genomics in the Age of NGS: From Microbes to Conservation Strategies
                                by SEQadmin2

                                Studying ecosystems means dealing with complex, multi-species communities that are hard to observe at scale. This complexity, however, hides many important questions to be answered, from how biogeochemical cycles work and how climate change can affect species distribution to how conservation strategies can work best.


                                Genomics, particularly since the expansion of NGS, has transformed ecosystem ecology. By sequencing environmental DNA, we can now assess biodiversity without direct...
                                05-06-2026, 09:04 AM

                              ad_right_rmr

                              Collapse

                              News

                              Collapse

                              Topics Statistics Last Post
                              Started by SEQadmin2, Today, 08:59 AM
                              0 responses
                              11 views
                              0 reactions
                              Last Post SEQadmin2  
                              Started by SEQadmin2, 06-02-2026, 12:03 PM
                              0 responses
                              21 views
                              0 reactions
                              Last Post SEQadmin2  
                              Started by SEQadmin2, 06-02-2026, 11:40 AM
                              0 responses
                              17 views
                              0 reactions
                              Last Post SEQadmin2  
                              Started by SEQadmin2, 05-28-2026, 11:40 AM
                              0 responses
                              31 views
                              0 reactions
                              Last Post SEQadmin2  
                              Working...