Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • gene_x
    Senior Member
    • May 2010
    • 108

    How to install Bowtie

    Hi, all,
    I'm new to informatics and I'm trying to install Bowtie in our cluster. I've downloaded the zip file and don't know how to proceed from there. Can anyone help me on that? I'm using a Mac.
    Thanks a lot!
  • dp05yk
    Member
    • Dec 2010
    • 66

    #2
    Unzip it, navigate to the folder using your Terminal program (if you can't find terminal, press command + spacebar to bring up spotlight and type "Terminal").

    If you've never used a bash terminal before, make sure you unzip your folder somewhere easy to find, like your desktop. Then from terminal type "cd desktop", and then "ls", to view all files on your desktop. Then "cd folder_name" where folder_name = bowtie folder.

    Once inside this folder, just type "make". It should compile as long as you have Developer Tools installed on your mac (or the applicable compiler).

    Comment

    • gene_x
      Senior Member
      • May 2010
      • 108

      #3
      thanks for your reply! I actually know how to navigate the terminal.. I downloaded the zip file onto our server and tried to unzip the file by commend: unzip bowtie-0.12.7-macos-10.5-x86_64.zip

      Then this message pops up:

      Archive: bowtie-0.12.7-macos-10.5-x86_64.zip
      End-of-central-directory signature not found. Either this file is not
      a zipfile, or it constitutes one disk of a multi-part archive. In the
      latter case the central directory and zipfile comment will be found on
      the last disk(s) of this archive.
      unzip: cannot find zipfile directory in one of bowtie-0.12.7-macos-10.5-x86_64.zip or
      bowtie-0.12.7-macos-10.5-x86_64.zip.zip, and cannot find bowtie-0.12.7-macos-10.5-x86_64.zip.ZIP, period.

      What should I do with this?

      Comment

      • dp05yk
        Member
        • Dec 2010
        • 66

        #4
        Strange... how do you enter the filename... do you hit "tab" after typing, say, "bowtie" and let the terminal autocomplete the filename?

        Try renaming the zip file to something really simple like "bowtie.zip" and try again.

        What you can always do is just unzip the file on your mac via. the GUI and then upload the unzipped folder to your server!

        Comment

        • gene_x
          Senior Member
          • May 2010
          • 108

          #5
          I did hit "tab" and the filename is what appears on the bowtie website. I tried to use simple names as "bowtie.zip" but it had the same problem...
          I know just unzip the file on my computer and then upload them.. this is not the best way to do it apparently..

          Comment

          • gene_x
            Senior Member
            • May 2010
            • 108

            #6
            OK. I've done that and tried the Bowtie tutorial and got an error message:
            -bash: ./bowtie: cannot execute binary file

            I think the reason is when I tried the commend "make" in the bowtie directory, an error messages pops up:
            make: *** No targets specified and no makefile found. Stop.
            when I tried "make all", another error message:
            make: *** No rule to make target `all'. Stop.
            or "make clean"
            make: *** No rule to make target `clean'. Stop.

            What's the problem here??

            Comment

            • dp05yk
              Member
              • Dec 2010
              • 66

              #7
              Ok. Looks like Bowtie comes precompiled so there's no makefile. The problem for you is that ./bowtie doesn't work.

              Even though you're using a mac, you _do not_ want to download the mac version of bowtie since you're putting it on your cluster. Your cluster is likely linux-based so you'll want to get the linux version of Bowtie. I'm assuming this is what is causing the unzip error as well.

              Comment

              • gene_x
                Senior Member
                • May 2010
                • 108

                #8
                I tried to download an linux version and it indeed solved the problem!
                But the unzip commend still doesn't work...

                Thanks a lot!

                Comment

                • gene_x
                  Senior Member
                  • May 2010
                  • 108

                  #9
                  Originally posted by dp05yk View Post
                  Ok. Looks like Bowtie comes precompiled so there's no makefile. The problem for you is that ./bowtie doesn't work.

                  Even though you're using a mac, you _do not_ want to download the mac version of bowtie since you're putting it on your cluster. Your cluster is likely linux-based so you'll want to get the linux version of Bowtie. I'm assuming this is what is causing the unzip error as well.
                  I solved the problem.. so the reason I couldn't unzip the zip file is that it's incomplete.. I tried to re-download the file and now the unzip commend works!

                  Comment

                  • maize
                    Junior Member
                    • Apr 2011
                    • 9

                    #10
                    bowtie installation

                    Originally posted by gene_x View Post
                    I solved the problem.. so the reason I couldn't unzip the zip file is that it's incomplete.. I tried to re-download the file and now the unzip commend works!
                    Hi buddy,

                    I noticed that you installed the bowtie successfully. Now i also downloaded the bowtie_zip file and unzip it. but i cannot install it smoothly. Could you share your experience with me ? thanks in advance!

                    Comment

                    • gene_x
                      Senior Member
                      • May 2010
                      • 108

                      #11
                      Originally posted by maize View Post
                      Hi buddy,

                      I noticed that you installed the bowtie successfully. Now i also downloaded the bowtie_zip file and unzip it. but i cannot install it smoothly. Could you share your experience with me ? thanks in advance!
                      My problem was that the files were incomplete.. Once I got the right file, unzip it and then follow the instructions mentioned above was fine.

                      Comment

                      • geneW
                        Junior Member
                        • Nov 2013
                        • 2

                        #12
                        I'm also trying to install bowtie. What I did:

                        download bowtie2-2.1.0-linux-x86_64.zip
                        unzip successfully

                        the above just talked to "make". It did not work for me as no make file in the unzip folder.

                        I need instructions on what's next after unzip.

                        Thanks!

                        Comment

                        • dpryan
                          Devon Ryan
                          • Jul 2011
                          • 3478

                          #13
                          Ther's nothing to make when you download the precompiled version. Just move the executables somewhere convenient.

                          Comment

                          • GenoMax
                            Senior Member
                            • Feb 2008
                            • 7142

                            #14
                            Originally posted by geneW View Post
                            I'm also trying to install bowtie. What I did:

                            download bowtie2-2.1.0-linux-x86_64.zip
                            unzip successfully

                            the above just talked to "make". It did not work for me as no make file in the unzip folder.

                            I need instructions on what's next after unzip.

                            Thanks!
                            What OS are you using?

                            Edit: As Devon pointed out above there is nothing to "make" when you download a pre-compiled ready to use copy.

                            Comment

                            • geneW
                              Junior Member
                              • Nov 2013
                              • 2

                              #15
                              I'm installing it in Linux on cluster. Below are the files in the unziped folder, which is under desktop folder. Which are the executables to be used?



                              AUTHORS bowtie2-align-debug bowtie2-inspect example MANUAL.markdown TUTORIAL
                              bowtie2 bowtie2-build bowtie2-inspect-debug LICENSE NEWS VERSION
                              bowtie2-align bowtie2-build-debug doc MANUAL scripts

                              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, 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
                              14 views
                              0 reactions
                              Last Post SEQadmin2  
                              Started by SEQadmin2, 05-28-2026, 11:40 AM
                              0 responses
                              29 views
                              0 reactions
                              Last Post SEQadmin2  
                              Started by SEQadmin2, 05-26-2026, 10:12 AM
                              0 responses
                              31 views
                              0 reactions
                              Last Post SEQadmin2  
                              Working...