Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Sharmi
    Junior Member
    • Apr 2014
    • 7

    bowtie command giving error

    Hi,
    I am new to bioinformatics and linux and I have downloaded bowtie linux86 and the source files. I get the following error
    cbil@cbil-desktop:~/bowtie-linux/bowtie-1.0.1$ reads/e_coli_1000.fq
    bash: reads/e_coli_1000.fq: Permission denied

    Can someone please help me?

    Thanks,
    Sharmi
  • dpryan
    Devon Ryan
    • Jul 2011
    • 3478

    #2
    You'd do well to get a book on basic Linux usage (even if you're using OSX, most of that would apply).

    Code:
    cbil@cbil-desktop:~/bowtie-linux/bowtie-1.0.1$
    This is equivalent to opening the "~/bowtie-linux/bowtie-1.0.1" directory in Windows Explorer (under Windows) or Finder (on a Mac) in that it just says where on the system you are.

    Code:
    reads/e_coli_1000.fq
    You're now telling the system to execute the fastq file, which doesn't really make any sense. The actual error originates because the fastq file isn't set as being executable. Even if it were, however, that still wouldn't work since fastq files aren't programs. You want something of the form:

    Code:
    cbil@cbil-desktop:~/bowtie-linux/bowtie-1.0.1$ ./bowtie e_coli reads/e_coli_1000.fq

    Comment

    Latest Articles

    Collapse

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by SEQadmin2, 06-05-2026, 10:09 AM
    0 responses
    14 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 06-04-2026, 08:59 AM
    0 responses
    24 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 06-02-2026, 12:03 PM
    0 responses
    29 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 06-02-2026, 11:40 AM
    0 responses
    23 views
    0 reactions
    Last Post SEQadmin2  
    Working...